diff options
author | dsinclair <dsinclair@chromium.org> | 2016-11-10 12:46:33 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-11-10 12:46:33 -0800 |
commit | d2bf06228d7572545717cd36ea0dabc67e9b6d84 (patch) | |
tree | f0844fd8bad48a70b80b01397a2b3eb967017d19 /xfa/fwl/core/ifwl_picturebox.cpp | |
parent | 3e577c2660c89646b56753839c1ec59c3ad187f4 (diff) | |
download | pdfium-d2bf06228d7572545717cd36ea0dabc67e9b6d84.tar.xz |
Continue IFWL cleanup
Cleaning up more IFWL classes.
Review-Url: https://codereview.chromium.org/2492563002
Diffstat (limited to 'xfa/fwl/core/ifwl_picturebox.cpp')
-rw-r--r-- | xfa/fwl/core/ifwl_picturebox.cpp | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/xfa/fwl/core/ifwl_picturebox.cpp b/xfa/fwl/core/ifwl_picturebox.cpp index 17a87ed835..b7a4c61118 100644 --- a/xfa/fwl/core/ifwl_picturebox.cpp +++ b/xfa/fwl/core/ifwl_picturebox.cpp @@ -13,10 +13,7 @@ IFWL_PictureBox::IFWL_PictureBox( const IFWL_App* app, std::unique_ptr<CFWL_WidgetProperties> properties) - : IFWL_Widget(app, std::move(properties), nullptr), - m_bTop(false), - m_bVCenter(false), - m_bButton(false) { + : IFWL_Widget(app, std::move(properties), nullptr) { m_rtClient.Reset(); m_rtImage.Reset(); m_matrix.SetIdentity(); @@ -100,21 +97,6 @@ void IFWL_PictureBox::DrawBkground(CFX_Graphics* pGraphics, &matrix); } -bool IFWL_PictureBox::VStyle(uint32_t dwStyle) { - switch (dwStyle & FWL_STYLEEXT_PTB_VAlignMask) { - case FWL_STYLEEXT_PTB_Top: - m_bTop = true; - return true; - case FWL_STYLEEXT_PTB_Vcenter: - m_bVCenter = true; - return true; - case FWL_STYLEEXT_PTB_Bottom: - m_bButton = true; - return true; - } - return false; -} - void IFWL_PictureBox::OnDrawWidget(CFX_Graphics* pGraphics, const CFX_Matrix* pMatrix) { DrawWidget(pGraphics, pMatrix); |