summaryrefslogtreecommitdiff
path: root/xfa/fwl/cfwl_combobox.h
diff options
context:
space:
mode:
authorHenrique Nakashima <hnakashima@chromium.org>2018-05-11 21:02:46 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-05-11 21:02:46 +0000
commit69594dd17edac7fbd2ac57f9eec24d54f676b8bc (patch)
tree656e16fc0a0b0b3ed67dd13bb651c39f39e1c954 /xfa/fwl/cfwl_combobox.h
parentd6cdd0dd2e61ecbdc652f72f84658b8502d83703 (diff)
downloadpdfium-69594dd17edac7fbd2ac57f9eec24d54f676b8bc.tar.xz
Remove more dead code from CFWL_ComboBox.
The methods removed are not called anymore, and the members removed then become unused too. Change-Id: I5832f801a678f6907faf623ac678f9b3818c2af7 Reviewed-on: https://pdfium-review.googlesource.com/32394 Commit-Queue: Henrique Nakashima <hnakashima@chromium.org> Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'xfa/fwl/cfwl_combobox.h')
-rw-r--r--xfa/fwl/cfwl_combobox.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/xfa/fwl/cfwl_combobox.h b/xfa/fwl/cfwl_combobox.h
index a1666f49b1..500c166cc3 100644
--- a/xfa/fwl/cfwl_combobox.h
+++ b/xfa/fwl/cfwl_combobox.h
@@ -113,14 +113,7 @@ class CFWL_ComboBox : public CFWL_Widget {
float fMaxHeight,
const CFX_RectF& rtAnchor,
CFX_RectF* pPopupRect);
-
- void OnFocusChanged(CFWL_Message* pMsg, bool bSet);
- void OnLButtonDown(CFWL_MessageMouse* pMsg);
void OnLButtonUp(CFWL_MessageMouse* pMsg);
- void OnMouseMove(CFWL_MessageMouse* pMsg);
- void OnMouseLeave(CFWL_MessageMouse* pMsg);
- void OnKey(CFWL_MessageKey* pMsg);
- void DoSubCtrlKey(CFWL_MessageKey* pMsg);
void InitComboList();
void InitComboEdit();
@@ -134,12 +127,8 @@ class CFWL_ComboBox : public CFWL_Widget {
CFX_RectF m_rtClient;
CFX_RectF m_rtContent;
CFX_RectF m_rtBtn;
- CFX_RectF m_rtList;
- CFX_RectF m_rtProxy;
- CFX_RectF m_rtHandler;
std::unique_ptr<CFWL_ComboEdit> m_pEdit;
std::unique_ptr<CFWL_ComboList> m_pListBox;
- bool m_bLButtonDown;
int32_t m_iCurSel;
int32_t m_iBtnState;
};