blob: 7ee076764e3956ccfb3c748e84cfe53ad48cc4d0 [file] [log] [blame]
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -07001// 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.
Lei Zhanga6d9f0e2015-06-13 00:48:38 -07004
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -07005// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6
Dan Sinclairedbb3192016-03-21 09:08:24 -04007#ifndef FPDFSDK_FORMFILLER_CFFL_PUSHBUTTON_H_
8#define FPDFSDK_FORMFILLER_CFFL_PUSHBUTTON_H_
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -07009
Dan Sinclairb9eed2f2017-07-10 11:35:18 -040010#include "fpdfsdk/formfiller/cffl_button.h"
Tom Sepez245c80e2015-04-08 16:19:33 -070011
Nico Weber9d8ec5a2015-08-04 13:00:21 -070012class CFFL_PushButton : public CFFL_Button {
13 public:
Lei Zhang4f34c642017-06-02 00:45:14 -070014 CFFL_PushButton(CPDFSDK_FormFillEnvironment* pApp, CPDFSDK_Widget* pWidget);
Lei Zhang2b1a2d52015-08-14 22:16:22 -070015 ~CFFL_PushButton() override;
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -070016
Tom Sepezbf157302017-09-15 13:26:32 -070017 // CFFL_Button:
18 CPWL_Wnd* NewPDFWindow(const CPWL_Wnd::CreateParams& cp) override;
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -070019};
20
Dan Sinclairedbb3192016-03-21 09:08:24 -040021#endif // FPDFSDK_FORMFILLER_CFFL_PUSHBUTTON_H_