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

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

Issue 2432423002: Merge the CFWL_*Imp classes into the IFWL_* classes. (Closed)
Patch Set: Review feedback Created 4 years, 2 months 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
« no previous file with comments | « xfa/fwl/core/fwl_formimp.cpp ('k') | xfa/fwl/core/fwl_noteimp.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fwl/core/fwl_noteimp.h
diff --git a/xfa/fwl/core/fwl_noteimp.h b/xfa/fwl/core/fwl_noteimp.h
index 23b3c991ab63a57a1247c01b68800d6814af1b44..6e587166c06a1127b712a93663bf89d6d027fc6c 100644
--- a/xfa/fwl/core/fwl_noteimp.h
+++ b/xfa/fwl/core/fwl_noteimp.h
@@ -29,24 +29,24 @@ class CFWL_MsgSetFocus;
class CFWL_MsgSize;
class CFWL_MsgWindowMove;
class CFWL_TargetImp;
-class CFWL_ToolTipImp;
-class CFWL_WidgetImp;
+class IFWL_ToolTip;
+class IFWL_Widget;
class CFWL_NoteLoop {
public:
- CFWL_NoteLoop(CFWL_WidgetImp* pForm = nullptr);
+ CFWL_NoteLoop(IFWL_Widget* pForm = nullptr);
~CFWL_NoteLoop() {}
FWL_Error Idle(int32_t count);
- CFWL_WidgetImp* GetForm();
+ IFWL_Widget* GetForm();
FX_BOOL ContinueModal();
FWL_Error EndModalLoop();
- FWL_Error SetMainForm(CFWL_WidgetImp* pForm);
+ FWL_Error SetMainForm(IFWL_Widget* pForm);
protected:
void GenerateCommondEvent(uint32_t dwCommand);
- CFWL_WidgetImp* m_pForm;
+ IFWL_Widget* m_pForm;
FX_BOOL m_bContinueModal;
};
@@ -73,8 +73,8 @@ class CFWL_NoteDriver {
void SetHover(IFWL_Widget* pHover);
void NotifyTargetHide(IFWL_Widget* pNoteTarget);
void NotifyTargetDestroy(IFWL_Widget* pNoteTarget);
- FWL_Error RegisterForm(CFWL_WidgetImp* pForm);
- FWL_Error UnRegisterForm(CFWL_WidgetImp* pForm);
+ FWL_Error RegisterForm(IFWL_Widget* pForm);
+ FWL_Error UnRegisterForm(IFWL_Widget* pForm);
FX_BOOL QueueMessage(CFWL_Message* pMessage);
FX_BOOL UnqueueMessage(CFWL_NoteLoop* pNoteLoop);
CFWL_NoteLoop* GetTopLoop();
@@ -99,7 +99,7 @@ class CFWL_NoteDriver {
IFWL_Widget* GetMessageForm(IFWL_Widget* pDstTarget);
void ClearInvalidEventTargets(FX_BOOL bRemoveAll);
- CFX_ArrayTemplate<CFWL_WidgetImp*> m_forms;
+ CFX_ArrayTemplate<IFWL_Widget*> m_forms;
CFX_ArrayTemplate<CFWL_Message*> m_noteQueue;
CFX_ArrayTemplate<CFWL_NoteLoop*> m_noteLoopQueue;
std::unordered_map<uint32_t, CFWL_EventTarget*> m_eventTargets;
@@ -137,7 +137,7 @@ class CFWL_ToolTipContainer final {
CFWL_ToolTipContainer();
~CFWL_ToolTipContainer();
- CFWL_ToolTipImp* m_pToolTipImp;
+ IFWL_ToolTip* m_pToolTipImp;
std::unique_ptr<CFWL_CoreToolTipDP> m_pToolTipDp;
private:
« no previous file with comments | « xfa/fwl/core/fwl_formimp.cpp ('k') | xfa/fwl/core/fwl_noteimp.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698