Index: xfa/fwl/lightwidget/cfwl_checkbox.cpp |
diff --git a/xfa/fwl/lightwidget/checkbox.cpp b/xfa/fwl/lightwidget/cfwl_checkbox.cpp |
similarity index 97% |
rename from xfa/fwl/lightwidget/checkbox.cpp |
rename to xfa/fwl/lightwidget/cfwl_checkbox.cpp |
index 1d921993d6e5e7918ca8df64f1c2fce5af8cde5c..b5e2a87d67a78ca4e4aab50a9dc9e8f9713e187b 100644 |
--- a/xfa/fwl/lightwidget/checkbox.cpp |
+++ b/xfa/fwl/lightwidget/cfwl_checkbox.cpp |
@@ -4,7 +4,7 @@ |
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
-#include "xfa/include/fwl/lightwidget/checkbox.h" |
+#include "xfa/fwl/lightwidget/cfwl_checkbox.h" |
#include <memory> |
@@ -13,6 +13,7 @@ |
CFWL_CheckBox* CFWL_CheckBox::Create() { |
return new CFWL_CheckBox; |
} |
+ |
FWL_ERR CFWL_CheckBox::Initialize(const CFWL_WidgetProperties* pProperties) { |
if (m_pIface) |
return FWL_ERR_Indefinite; |
@@ -29,29 +30,38 @@ FWL_ERR CFWL_CheckBox::Initialize(const CFWL_WidgetProperties* pProperties) { |
CFWL_Widget::Initialize(); |
return FWL_ERR_Succeeded; |
} |
+ |
FWL_ERR CFWL_CheckBox::SetCaption(const CFX_WideStringC& wsCaption) { |
m_checkboxData.m_wsCaption = wsCaption; |
return FWL_ERR_Succeeded; |
} |
+ |
FWL_ERR CFWL_CheckBox::SetBoxSize(FX_FLOAT fHeight) { |
m_checkboxData.m_fBoxHeight = fHeight; |
return FWL_ERR_Succeeded; |
} |
+ |
int32_t CFWL_CheckBox::GetCheckState() { |
return static_cast<IFWL_CheckBox*>(m_pIface)->GetCheckState(); |
} |
+ |
FWL_ERR CFWL_CheckBox::SetCheckState(int32_t iCheck) { |
return static_cast<IFWL_CheckBox*>(m_pIface)->SetCheckState(iCheck); |
} |
+ |
CFWL_CheckBox::CFWL_CheckBox() {} |
+ |
CFWL_CheckBox::~CFWL_CheckBox() {} |
+ |
CFWL_CheckBox::CFWL_CheckBoxDP::CFWL_CheckBoxDP() |
: m_fBoxHeight(16.0f), m_wsCaption(L"Check box") {} |
+ |
FWL_ERR CFWL_CheckBox::CFWL_CheckBoxDP::GetCaption(IFWL_Widget* pWidget, |
CFX_WideString& wsCaption) { |
wsCaption = m_wsCaption; |
return FWL_ERR_Succeeded; |
} |
+ |
FX_FLOAT CFWL_CheckBox::CFWL_CheckBoxDP::GetBoxSize(IFWL_Widget* pWidget) { |
return m_fBoxHeight; |
} |