27 lines
902 B
C++
27 lines
902 B
C++
// Copyright 2014 The PDFium Authors
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
|
|
|
|
#include "fpdfsdk/formfiller/cffl_pushbutton.h"
|
|
|
|
#include <utility>
|
|
|
|
#include "fpdfsdk/formfiller/cffl_formfield.h"
|
|
#include "fpdfsdk/pwl/cpwl_special_button.h"
|
|
|
|
CFFL_PushButton::CFFL_PushButton(CFFL_InteractiveFormFiller* pFormFiller,
|
|
CPDFSDK_Widget* pWidget)
|
|
: CFFL_Button(pFormFiller, pWidget) {}
|
|
|
|
CFFL_PushButton::~CFFL_PushButton() = default;
|
|
|
|
std::unique_ptr<CPWL_Wnd> CFFL_PushButton::NewPWLWindow(
|
|
const CPWL_Wnd::CreateParams& cp,
|
|
std::unique_ptr<IPWL_FillerNotify::PerWindowData> pAttachedData) {
|
|
auto pWnd = std::make_unique<CPWL_PushButton>(cp, std::move(pAttachedData));
|
|
pWnd->Realize();
|
|
return std::move(pWnd);
|
|
}
|