diff options
author | dsinclair <dsinclair@chromium.org> | 2016-04-13 12:04:43 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-04-13 12:04:43 -0700 |
commit | 380f20a6000bd640d7fd8f1567961f1f05d79f5a (patch) | |
tree | ba8dd6ef2825381171eca97a3b90de9fd7d9ed07 /xfa/fwl/basewidget/ifwl_combobox.h | |
parent | a654f0d0889c50d0995bd873c119ae75b0ab5a09 (diff) | |
download | pdfium-380f20a6000bd640d7fd8f1567961f1f05d79f5a.tar.xz |
Remove some FWL code.
Remove unused or ifdef'd code from FWL.
Review URL: https://codereview.chromium.org/1874963002
Diffstat (limited to 'xfa/fwl/basewidget/ifwl_combobox.h')
-rw-r--r-- | xfa/fwl/basewidget/ifwl_combobox.h | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/xfa/fwl/basewidget/ifwl_combobox.h b/xfa/fwl/basewidget/ifwl_combobox.h index 98a6750278..c5a30cf115 100644 --- a/xfa/fwl/basewidget/ifwl_combobox.h +++ b/xfa/fwl/basewidget/ifwl_combobox.h @@ -50,13 +50,7 @@ class IFWL_ComboBox; #define FWL_PARTSTATE_CMB_Disabled (3L << 0) #define FWL_PARTSTATE_CMB_Selected (1L << 2) #define FWL_WGTCAPACITY_CMB_ComboFormHandler (FWL_WGTCAPACITY_MAX + 7) -#define FWL_EVT_CMB_DropDown L"FWL_EVENT_CMB_PreDropDown" -#define FWL_EVT_CMB_PostDropDown L"FWL_EVENT_CMB_PostDropDown" -#define FWL_EVT_CMB_CloseUp L"FWL_EVENT_CMB_CloseUp" -#define FWL_EVT_CMB_EditChanged L"FWL_EVENT_CMB_EditChanged" -#define FWL_EVT_CMB_SelChanged L"FWL_EVENT_CMB_SelChanged" -#define FWL_EVT_CMB_HoverChanged L"FWL_EVENT_CMB_HoverChanged" -#define FWL_EVT_CMB_DrawItem L"FWL_EVENT_CMB_DrawItem" +// TODO(dsinclair): Event hash is hash of string, cleanup. pdfium:474 #define FWL_EVTHASH_CMB_PreDropDown 1357646798 #define FWL_EVTHASH_CMB_PostDropDown 3677010285 #define FWL_EVTHASH_CMB_CloseUp 2871271190 @@ -65,12 +59,6 @@ class IFWL_ComboBox; #define FWL_EVTHASH_CMB_HoverChanged 944325448 #define FWL_EVTHASH_CMB_DrawItem 917354551 -enum FWL_CMB_TEXTCHANGED { - FWL_CMB_TEXTCHANGED_Insert = 0, - FWL_CMB_TEXTCHANGED_Delete, - FWL_CMB_TEXTCHANGED_Replace, -}; - BEGIN_FWL_EVENT_DEF(CFWL_EvtCmbPreDropDown, FWL_EVTHASH_CMB_PreDropDown) END_FWL_EVENT_DEF |