diff options
author | dsinclair <dsinclair@chromium.org> | 2016-11-16 07:01:26 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-11-16 07:01:26 -0800 |
commit | 72f957a0bafaf7c9628980e404c471b54f42de8f (patch) | |
tree | 1b6764bfdb0f87c01843397f16f191906d6810ec /xfa/fwl/core/cfwl_event.h | |
parent | f35650c8778522345d8a639f42add2874ffe44dd (diff) | |
download | pdfium-72f957a0bafaf7c9628980e404c471b54f42de8f.tar.xz |
Cleaning up nits in fwl/core files.chromium/2922
This Cl cleans up the nits in the first set of cfwl_* files. The unused Event
and Message classes are removed.
Review-Url: https://codereview.chromium.org/2505703003
Diffstat (limited to 'xfa/fwl/core/cfwl_event.h')
-rw-r--r-- | xfa/fwl/core/cfwl_event.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/xfa/fwl/core/cfwl_event.h b/xfa/fwl/core/cfwl_event.h index 0052c4e097..4b74c02930 100644 --- a/xfa/fwl/core/cfwl_event.h +++ b/xfa/fwl/core/cfwl_event.h @@ -34,18 +34,12 @@ enum class CFWL_EventType { Click, Close, CloseUp, - ContextMenu, - DataSelected, - DateChanged, - Draw, DrawItem, DropDown, EditChanged, HoverChanged, - Idle, Key, KillFocus, - MenuCommand, Mouse, MouseWheel, PostDropDown, @@ -144,9 +138,6 @@ FWL_EVENT_DEF(CFWL_EvtKillFocus, CFWL_EventType::KillFocus, IFWL_Widget* m_pKillFocus;) -FWL_EVENT_DEF(CFWL_EvtDraw, CFWL_EventType::Draw, CFX_Graphics* m_pGraphics; - IFWL_Widget * m_pWidget;) - FWL_EVENT_DEF(CFWL_EvtClick, CFWL_EventType::Click) FWL_EVENT_DEF(CFWL_EvtScroll, CFWL_EventType::Scroll, FWL_SCBCODE m_iScrollCode; @@ -155,23 +146,10 @@ FWL_EVENT_DEF(CFWL_EvtScroll, CFWL_EventType::Scroll, FWL_SCBCODE m_iScrollCode; FWL_EVENT_DEF(CFWL_EvtClose, CFWL_EventType::Close) -FWL_EVENT_DEF(CFWL_EvtContextMenu, - CFWL_EventType::ContextMenu, - FX_FLOAT m_fPosX; - FX_FLOAT m_fPosY; - IFWL_Widget * m_pOwner;) - -FWL_EVENT_DEF(CFWL_EvtMenuCommand, - CFWL_EventType::MenuCommand, - int32_t m_iCommand; - void* m_pData;) - FWL_EVENT_DEF(CFWL_EvtSizeChanged, CFWL_EventType::SizeChanged, IFWL_Widget* m_pWidget; CFX_RectF m_rtOld; CFX_RectF m_rtNew;) -FWL_EVENT_DEF(CFWL_EvtIdle, CFWL_EventType::Idle) - #endif // XFA_FWL_CORE_CFWL_EVENT_H_ |