Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(211)

Unified Diff: xfa/fwl/core/cfwl_message.h

Issue 2530993002: Cleanup FWL Event and Message code. (Closed)
Patch Set: Review feedback Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: xfa/fwl/core/cfwl_message.h
diff --git a/xfa/fwl/core/cfwl_message.h b/xfa/fwl/core/cfwl_message.h
index 827b4181e35c7788a6d7581ec5eb1d3f9b4b2a7a..a1545b1013e4521bcce78c28059b341876505409 100644
--- a/xfa/fwl/core/cfwl_message.h
+++ b/xfa/fwl/core/cfwl_message.h
@@ -14,28 +14,26 @@
#include "core/fxcrt/fx_system.h"
#include "xfa/fwl/core/fwl_error.h"
-enum class CFWL_MessageType {
- None = 0,
- Key,
- KillFocus,
- Mouse,
- MouseWheel,
- SetFocus
-};
-
class CFWL_Widget;
class CFWL_Message {
public:
- CFWL_Message();
+ enum class Type { Key, KillFocus, Mouse, MouseWheel, SetFocus };
+
+ explicit CFWL_Message(Type type);
+ CFWL_Message(Type type, CFWL_Widget* pSrcTarget);
+ CFWL_Message(Type type, CFWL_Widget* pSrcTarget, CFWL_Widget* pDstTarget);
virtual ~CFWL_Message();
virtual std::unique_ptr<CFWL_Message> Clone();
- virtual CFWL_MessageType GetClassID() const;
+ Type GetType() const { return m_type; }
CFWL_Widget* m_pSrcTarget;
CFWL_Widget* m_pDstTarget;
uint32_t m_dwExtend;
+
+ private:
+ Type m_type;
};

Powered by Google App Engine
This is Rietveld 408576698