| Index: xfa/fwl/lightwidget/cfwl_pushbutton.cpp
|
| diff --git a/xfa/fwl/lightwidget/pushbutton.cpp b/xfa/fwl/lightwidget/cfwl_pushbutton.cpp
|
| similarity index 96%
|
| rename from xfa/fwl/lightwidget/pushbutton.cpp
|
| rename to xfa/fwl/lightwidget/cfwl_pushbutton.cpp
|
| index c9fb74e5f5196aeaf2e66ebb39ac8bdacb3f7e0d..52747bdebed093565a9a06542bc7f6fcf57a4b9c 100644
|
| --- a/xfa/fwl/lightwidget/pushbutton.cpp
|
| +++ b/xfa/fwl/lightwidget/cfwl_pushbutton.cpp
|
| @@ -4,13 +4,14 @@
|
|
|
| // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
|
|
|
| -#include "xfa/include/fwl/lightwidget/pushbutton.h"
|
| +#include "xfa/fwl/lightwidget/cfwl_pushbutton.h"
|
|
|
| #include <memory>
|
|
|
| CFWL_PushButton* CFWL_PushButton::Create() {
|
| return new CFWL_PushButton;
|
| }
|
| +
|
| FWL_ERR CFWL_PushButton::Initialize(const CFWL_WidgetProperties* pProperties) {
|
| if (m_pIface)
|
| return FWL_ERR_Indefinite;
|
| @@ -27,29 +28,37 @@ FWL_ERR CFWL_PushButton::Initialize(const CFWL_WidgetProperties* pProperties) {
|
| CFWL_Widget::Initialize();
|
| return FWL_ERR_Succeeded;
|
| }
|
| +
|
| FWL_ERR CFWL_PushButton::GetCaption(CFX_WideString& wsCaption) {
|
| wsCaption = m_buttonData.m_wsCaption;
|
| return FWL_ERR_Succeeded;
|
| }
|
| +
|
| FWL_ERR CFWL_PushButton::SetCaption(const CFX_WideStringC& wsCaption) {
|
| m_buttonData.m_wsCaption = wsCaption;
|
| return FWL_ERR_Succeeded;
|
| }
|
| +
|
| CFX_DIBitmap* CFWL_PushButton::GetPicture() {
|
| return m_buttonData.m_pBitmap;
|
| }
|
| +
|
| FWL_ERR CFWL_PushButton::SetPicture(CFX_DIBitmap* pBitmap) {
|
| m_buttonData.m_pBitmap = pBitmap;
|
| return FWL_ERR_Succeeded;
|
| }
|
| +
|
| CFWL_PushButton::CFWL_PushButton() {}
|
| +
|
| CFWL_PushButton::~CFWL_PushButton() {}
|
| +
|
| FWL_ERR CFWL_PushButton::CFWL_PushButtonDP::GetCaption(
|
| IFWL_Widget* pWidget,
|
| CFX_WideString& wsCaption) {
|
| wsCaption = m_wsCaption;
|
| return FWL_ERR_Succeeded;
|
| }
|
| +
|
| CFX_DIBitmap* CFWL_PushButton::CFWL_PushButtonDP::GetPicture(
|
| IFWL_Widget* pWidget) {
|
| return m_pBitmap;
|
|
|