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

Side by Side Diff: xfa/src/fwl/lightwidget/pushbutton.cpp

Issue 1803723002: Move xfa/src up to xfa/. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Rebase to master Created 4 years, 9 months 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 unified diff | Download patch
« no previous file with comments | « xfa/src/fwl/lightwidget/picturebox.cpp ('k') | xfa/src/fwl/lightwidget/scrollbar.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6
7 #include "xfa/include/fwl/lightwidget/pushbutton.h"
8
9 #include <memory>
10
11 CFWL_PushButton* CFWL_PushButton::Create() {
12 return new CFWL_PushButton;
13 }
14 FWL_ERR CFWL_PushButton::Initialize(const CFWL_WidgetProperties* pProperties) {
15 if (m_pIface)
16 return FWL_ERR_Indefinite;
17 if (pProperties) {
18 *m_pProperties = *pProperties;
19 }
20 std::unique_ptr<IFWL_PushButton> pPushButton(IFWL_PushButton::Create(
21 m_pProperties->MakeWidgetImpProperties(&m_buttonData), nullptr));
22 FWL_ERR ret = pPushButton->Initialize();
23 if (ret != FWL_ERR_Succeeded) {
24 return ret;
25 }
26 m_pIface = pPushButton.release();
27 CFWL_Widget::Initialize();
28 return FWL_ERR_Succeeded;
29 }
30 FWL_ERR CFWL_PushButton::GetCaption(CFX_WideString& wsCaption) {
31 wsCaption = m_buttonData.m_wsCaption;
32 return FWL_ERR_Succeeded;
33 }
34 FWL_ERR CFWL_PushButton::SetCaption(const CFX_WideStringC& wsCaption) {
35 m_buttonData.m_wsCaption = wsCaption;
36 return FWL_ERR_Succeeded;
37 }
38 CFX_DIBitmap* CFWL_PushButton::GetPicture() {
39 return m_buttonData.m_pBitmap;
40 }
41 FWL_ERR CFWL_PushButton::SetPicture(CFX_DIBitmap* pBitmap) {
42 m_buttonData.m_pBitmap = pBitmap;
43 return FWL_ERR_Succeeded;
44 }
45 CFWL_PushButton::CFWL_PushButton() {}
46 CFWL_PushButton::~CFWL_PushButton() {}
47 FWL_ERR CFWL_PushButton::CFWL_PushButtonDP::GetCaption(
48 IFWL_Widget* pWidget,
49 CFX_WideString& wsCaption) {
50 wsCaption = m_wsCaption;
51 return FWL_ERR_Succeeded;
52 }
53 CFX_DIBitmap* CFWL_PushButton::CFWL_PushButtonDP::GetPicture(
54 IFWL_Widget* pWidget) {
55 return m_pBitmap;
56 }
OLDNEW
« no previous file with comments | « xfa/src/fwl/lightwidget/picturebox.cpp ('k') | xfa/src/fwl/lightwidget/scrollbar.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698