diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2018-01-30 21:38:40 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-01-30 21:38:40 +0000 |
commit | 90d9386825b872a0b668eac5dff3e268fa7ad16c (patch) | |
tree | b615bf156a49b6d4b4dc9d4dd1b628967044f0b2 /xfa/fxfa/cxfa_ffpushbutton.h | |
parent | 7311006b16f30da32fed5145e2e1c2c04a5cea41 (diff) | |
download | pdfium-90d9386825b872a0b668eac5dff3e268fa7ad16c.tar.xz |
Shuffle more code out of CXFA_Node
This CL moves more code out of the CXFA_Node class and into specific
subclasses.
Change-Id: Idca36f251431bf7efd4da045aeabf097ab23f0ce
Reviewed-on: https://pdfium-review.googlesource.com/24714
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/cxfa_ffpushbutton.h')
-rw-r--r-- | xfa/fxfa/cxfa_ffpushbutton.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/xfa/fxfa/cxfa_ffpushbutton.h b/xfa/fxfa/cxfa_ffpushbutton.h index d0b0b885c7..e247ee5e39 100644 --- a/xfa/fxfa/cxfa_ffpushbutton.h +++ b/xfa/fxfa/cxfa_ffpushbutton.h @@ -9,18 +9,20 @@ #include <memory> +#include "core/fxcrt/unowned_ptr.h" #include "xfa/fxfa/cxfa_fffield.h" #define XFA_FWL_PSBSTYLEEXT_HiliteInverted (1L << 0) #define XFA_FWL_PSBSTYLEEXT_HilitePush (1L << 1) #define XFA_FWL_PSBSTYLEEXT_HiliteOutLine (1L << 2) +class CXFA_Button; class CXFA_TextLayout; class CXFA_TextProvider; class CXFA_FFPushButton : public CXFA_FFField { public: - explicit CXFA_FFPushButton(CXFA_Node* pNode); + CXFA_FFPushButton(CXFA_Node* pNode, CXFA_Button* button); ~CXFA_FFPushButton() override; // CXFA_FFField @@ -49,7 +51,8 @@ class CXFA_FFPushButton : public CXFA_FFField { std::unique_ptr<CXFA_TextLayout> m_pDownTextLayout; std::unique_ptr<CXFA_TextProvider> m_pRollProvider; std::unique_ptr<CXFA_TextProvider> m_pDownProvider; - IFWL_WidgetDelegate* m_pOldDelegate; + IFWL_WidgetDelegate* m_pOldDelegate = nullptr; + UnownedPtr<CXFA_Button> button_; }; #endif // XFA_FXFA_CXFA_FFPUSHBUTTON_H_ |