Index: xfa/fwl/cfwl_widget.cpp |
diff --git a/xfa/fwl/core/cfwl_widget.cpp b/xfa/fwl/cfwl_widget.cpp |
similarity index 96% |
rename from xfa/fwl/core/cfwl_widget.cpp |
rename to xfa/fwl/cfwl_widget.cpp |
index 225721be43932bf0d1a9d5d42ba8b23038e39b53..4da576423a411ffa7ad12c9f9e8bb318af369656 100644 |
--- a/xfa/fwl/core/cfwl_widget.cpp |
+++ b/xfa/fwl/cfwl_widget.cpp |
@@ -4,28 +4,28 @@ |
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
-#include "xfa/fwl/core/cfwl_widget.h" |
+#include "xfa/fwl/cfwl_widget.h" |
#include <algorithm> |
#include <utility> |
#include "xfa/fde/tto/fde_textout.h" |
-#include "xfa/fwl/core/cfwl_app.h" |
-#include "xfa/fwl/core/cfwl_combobox.h" |
-#include "xfa/fwl/core/cfwl_event.h" |
-#include "xfa/fwl/core/cfwl_evtmouse.h" |
-#include "xfa/fwl/core/cfwl_form.h" |
-#include "xfa/fwl/core/cfwl_msgkey.h" |
-#include "xfa/fwl/core/cfwl_msgkillfocus.h" |
-#include "xfa/fwl/core/cfwl_msgmouse.h" |
-#include "xfa/fwl/core/cfwl_msgmousewheel.h" |
-#include "xfa/fwl/core/cfwl_msgsetfocus.h" |
-#include "xfa/fwl/core/cfwl_notedriver.h" |
-#include "xfa/fwl/core/cfwl_themebackground.h" |
-#include "xfa/fwl/core/cfwl_themepart.h" |
-#include "xfa/fwl/core/cfwl_themetext.h" |
-#include "xfa/fwl/core/cfwl_widgetmgr.h" |
-#include "xfa/fwl/core/ifwl_themeprovider.h" |
+#include "xfa/fwl/cfwl_app.h" |
+#include "xfa/fwl/cfwl_combobox.h" |
+#include "xfa/fwl/cfwl_event.h" |
+#include "xfa/fwl/cfwl_eventmouse.h" |
+#include "xfa/fwl/cfwl_form.h" |
+#include "xfa/fwl/cfwl_messagekey.h" |
+#include "xfa/fwl/cfwl_messagekillfocus.h" |
+#include "xfa/fwl/cfwl_messagemouse.h" |
+#include "xfa/fwl/cfwl_messagemousewheel.h" |
+#include "xfa/fwl/cfwl_messagesetfocus.h" |
+#include "xfa/fwl/cfwl_notedriver.h" |
+#include "xfa/fwl/cfwl_themebackground.h" |
+#include "xfa/fwl/cfwl_themepart.h" |
+#include "xfa/fwl/cfwl_themetext.h" |
+#include "xfa/fwl/cfwl_widgetmgr.h" |
+#include "xfa/fwl/ifwl_themeprovider.h" |
#include "xfa/fxfa/xfa_ffapp.h" |
#define FWL_STYLEEXT_MNU_Vert (1L << 0) |
@@ -711,9 +711,9 @@ void CFWL_Widget::OnProcessMessage(CFWL_Message* pMessage) { |
CFWL_Widget* pWidget = pMessage->m_pDstTarget; |
switch (pMessage->GetType()) { |
case CFWL_Message::Type::Mouse: { |
- CFWL_MsgMouse* pMsgMouse = static_cast<CFWL_MsgMouse*>(pMessage); |
+ CFWL_MessageMouse* pMsgMouse = static_cast<CFWL_MessageMouse*>(pMessage); |
- CFWL_EvtMouse evt(pWidget, pWidget); |
+ CFWL_EventMouse evt(pWidget, pWidget); |
evt.m_dwCmd = pMsgMouse->m_dwCmd; |
pWidget->DispatchEvent(&evt); |
break; |