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

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

Issue 2498163002: Cleanup cfwl_* files. (Closed)
Patch Set: Review feedback Created 4 years, 1 month 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/cfwl_listbox.cpp ('k') | xfa/fwl/core/cfwl_picturebox.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fwl/core/cfwl_picturebox.h
diff --git a/xfa/fwl/core/cfwl_picturebox.h b/xfa/fwl/core/cfwl_picturebox.h
index 861372149e2fdbe7d8b09e04e7ba8c76a2af3dc7..12a8b632ff380ab1d75a3974060c274790538a69 100644
--- a/xfa/fwl/core/cfwl_picturebox.h
+++ b/xfa/fwl/core/cfwl_picturebox.h
@@ -8,51 +8,17 @@
#define XFA_FWL_CORE_CFWL_PICTUREBOX_H_
#include "xfa/fwl/core/cfwl_widget.h"
-#include "xfa/fwl/core/fwl_error.h"
#include "xfa/fwl/core/ifwl_picturebox.h"
class CFWL_PictureBox : public CFWL_Widget, public IFWL_PictureBoxDP {
public:
- CFWL_PictureBox(const IFWL_App*);
+ explicit CFWL_PictureBox(const IFWL_App* pApp);
~CFWL_PictureBox() override;
void Initialize();
// IFWL_DataProvider
void GetCaption(IFWL_Widget* pWidget, CFX_WideString& wsCaption) override;
-
- // IFWL_PictureBoxDP
- CFX_DIBitmap* GetPicture(IFWL_Widget* pWidget) override;
- CFX_DIBitmap* GetErrorPicture(IFWL_Widget* pWidget) override;
- CFX_DIBitmap* GetInitialPicture(IFWL_Widget* pWidget) override;
- int32_t GetOpacity(IFWL_Widget* pWidget) override;
- int32_t GetFlipMode(IFWL_Widget* pWidget) override;
- void GetMatrix(IFWL_Widget* pWidget, CFX_Matrix& matrix) override;
-
- CFX_DIBitmap* GetPicture();
- FWL_Error SetPicture(CFX_DIBitmap* pBitmap);
- FX_FLOAT GetRotation();
- FWL_Error SetRotation(FX_FLOAT fRotation);
- int32_t GetFlipMode();
- FWL_Error SetFlipMode(int32_t iFlipMode);
- int32_t GetOpacity();
- FWL_Error SetOpacity(int32_t iOpacity);
- FWL_Error GetScale(FX_FLOAT& fScaleX, FX_FLOAT& fScaleY);
- FWL_Error SetScale(FX_FLOAT fScaleX, FX_FLOAT fScaleY);
- FWL_Error GetOffset(FX_FLOAT& fx, FX_FLOAT& fy);
- FWL_Error SetOffset(FX_FLOAT fx, FX_FLOAT fy);
-
-
- private:
- CFX_DIBitmap* m_pBitmap;
- int32_t m_iOpacity;
- int32_t m_iFlipMode;
- FX_FLOAT m_fRotation;
- FX_FLOAT m_fScaleX;
- FX_FLOAT m_fScaleY;
- FX_FLOAT m_fOffSetX;
- FX_FLOAT m_fOffSetY;
- CFX_WideString m_wsData;
};
#endif // XFA_FWL_CORE_CFWL_PICTUREBOX_H_
« no previous file with comments | « xfa/fwl/core/cfwl_listbox.cpp ('k') | xfa/fwl/core/cfwl_picturebox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698