diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-04-07 16:12:46 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-04-07 16:12:46 -0700 |
commit | 870292c729dc277c24490ee1febd5391643da000 (patch) | |
tree | 3f9f2b45a64d00e33411e5c8d72116c5fed2bdbc /fpdfsdk/include/pdfwindow/PWL_Caret.h | |
parent | 9a3f8123c421faae8b4573c895a7b1c0ef236205 (diff) | |
download | pdfium-870292c729dc277c24490ee1febd5391643da000.tar.xz |
Merge to XFA: Fix IWYU in pdfwindow/ directory.
This incorporates class vs. struct fix in 34f5fc0f2a18
TBR=thestig@chromium.org
Review URL: https://codereview.chromium.org/1063283002
Diffstat (limited to 'fpdfsdk/include/pdfwindow/PWL_Caret.h')
-rw-r--r-- | fpdfsdk/include/pdfwindow/PWL_Caret.h | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/fpdfsdk/include/pdfwindow/PWL_Caret.h b/fpdfsdk/include/pdfwindow/PWL_Caret.h index 600e5096a8..2dfef2ae92 100644 --- a/fpdfsdk/include/pdfwindow/PWL_Caret.h +++ b/fpdfsdk/include/pdfwindow/PWL_Caret.h @@ -7,11 +7,13 @@ #ifndef _PWL_CARET_H_ #define _PWL_CARET_H_ +#include "PWL_Wnd.h" + struct PWL_CARET_INFO { public: PWL_CARET_INFO() : bVisible(FALSE), ptHead(0,0), ptFoot(0,0) - { + { } FX_BOOL bVisible; @@ -20,23 +22,21 @@ public: }; -class CPWL_Caret : public CPWL_Wnd +class CPWL_Caret : public CPWL_Wnd { public: CPWL_Caret(); virtual ~CPWL_Caret(); -public: + virtual CFX_ByteString GetClassName() const; virtual void GetThisAppearanceStream(CFX_ByteTextBuf & sAppStream); virtual void DrawThisAppearance(CFX_RenderDevice* pDevice, CPDF_Matrix* pUser2Device); virtual void InvalidateRect(CPDF_Rect * pRect = NULL); - virtual void SetVisible(FX_BOOL bVisible) {} - virtual void TimerProc(); - void SetCaret(FX_BOOL bVisible, const CPDF_Point & ptHead, const CPDF_Point & ptFoot); CFX_ByteString GetCaretAppearanceStream(const CPDF_Point & ptOffset); + void SetInvalidRect(CPDF_Rect rc) {m_rcInvalid = rc;} private: void GetCaretApp(CFX_ByteTextBuf & sAppStream,const CPDF_Point & ptOffset); @@ -46,13 +46,9 @@ private: CPDF_Point m_ptHead; CPDF_Point m_ptFoot; FX_FLOAT m_fWidth; - FX_INT32 m_nDelay; - -public: - void SetInvalidRect(CPDF_Rect rc) {m_rcInvalid = rc;} -private: + FX_INT32 m_nDelay; CPDF_Rect m_rcInvalid; }; -#endif // !defined(AFX_PWL_CARET_H__6A729612_4173_4B65_BCAB_7C6C850ECA47__INCLUDED_) +#endif |