| Index: xfa/fwl/basewidget/ifwl_combobox.h
|
| diff --git a/xfa/fwl/basewidget/ifwl_combobox.h b/xfa/fwl/basewidget/ifwl_combobox.h
|
| index 2d9c907b39fb26e125e60fef96f2a838ee421b35..5165ef2c48cc3947e03e1d04d7725200c710e593 100644
|
| --- a/xfa/fwl/basewidget/ifwl_combobox.h
|
| +++ b/xfa/fwl/basewidget/ifwl_combobox.h
|
| @@ -39,36 +39,33 @@ class IFWL_ComboBox;
|
| #define FWL_STYLEEXT_CMB_ListItemIconText (1L << 12)
|
| #define FWL_STYLEEXT_CMB_ReadOnly (1L << 13)
|
|
|
| -BEGIN_FWL_EVENT_DEF(CFWL_EvtCmbPreDropDown, CFWL_EventType::PreDropDown)
|
| -END_FWL_EVENT_DEF
|
| -
|
| -BEGIN_FWL_EVENT_DEF(CFWL_EvtCmbPostDropDown, CFWL_EventType::PostDropDown)
|
| -END_FWL_EVENT_DEF
|
| -
|
| -BEGIN_FWL_EVENT_DEF(CFWL_EvtCmbCloseUp, CFWL_EventType::CloseUp)
|
| -END_FWL_EVENT_DEF
|
| -
|
| -BEGIN_FWL_EVENT_DEF(CFWL_EvtCmbEditChanged, CFWL_EventType::EditChanged)
|
| -int32_t nChangeType;
|
| -CFX_WideString wsInsert;
|
| -CFX_WideString wsDelete;
|
| -END_FWL_EVENT_DEF
|
| -
|
| -BEGIN_FWL_EVENT_DEF(CFWL_EvtCmbSelChanged, CFWL_EventType::SelectChanged)
|
| -CFX_Int32Array iArraySels;
|
| -FX_BOOL bLButtonUp;
|
| -END_FWL_EVENT_DEF
|
| -
|
| -BEGIN_FWL_EVENT_DEF(CFWL_EvtCmbHoverChanged, CFWL_EventType::HoverChanged)
|
| -int32_t m_iCurHover;
|
| -END_FWL_EVENT_DEF
|
| -
|
| -BEGIN_FWL_EVENT_DEF(CFWL_EvtCmbDrawItem, CFWL_EventType::DrawItem)
|
| -CFX_Graphics* m_pGraphics;
|
| -CFX_Matrix m_matrix;
|
| -int32_t m_index;
|
| -CFX_RectF m_rtItem;
|
| -END_FWL_EVENT_DEF
|
| +FWL_EVENT_DEF(CFWL_EvtCmbPreDropDown, CFWL_EventType::PreDropDown)
|
| +
|
| +FWL_EVENT_DEF(CFWL_EvtCmbPostDropDown, CFWL_EventType::PostDropDown)
|
| +
|
| +FWL_EVENT_DEF(CFWL_EvtCmbCloseUp, CFWL_EventType::CloseUp)
|
| +
|
| +FWL_EVENT_DEF(CFWL_EvtCmbEditChanged,
|
| + CFWL_EventType::EditChanged,
|
| + int32_t nChangeType;
|
| + CFX_WideString wsInsert;
|
| + CFX_WideString wsDelete;)
|
| +
|
| +FWL_EVENT_DEF(CFWL_EvtCmbSelChanged,
|
| + CFWL_EventType::SelectChanged,
|
| + CFX_Int32Array iArraySels;
|
| + FX_BOOL bLButtonUp;)
|
| +
|
| +FWL_EVENT_DEF(CFWL_EvtCmbHoverChanged,
|
| + CFWL_EventType::HoverChanged,
|
| + int32_t m_iCurHover;)
|
| +
|
| +FWL_EVENT_DEF(CFWL_EvtCmbDrawItem,
|
| + CFWL_EventType::DrawItem,
|
| + CFX_Graphics* m_pGraphics;
|
| + CFX_Matrix m_matrix;
|
| + int32_t m_index;
|
| + CFX_RectF m_rtItem;)
|
|
|
| class IFWL_ComboBoxDP : public IFWL_ListBoxDP {
|
| public:
|
|
|