28 lines
950 B
C++
28 lines
950 B
C++
// Copyright 2014 PDFium Authors. All rights reserved.
|
|
// 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_formfiller.h"
|
|
#include "fpdfsdk/pwl/cpwl_special_button.h"
|
|
#include "third_party/base/ptr_util.h"
|
|
|
|
CFFL_PushButton::CFFL_PushButton(CPDFSDK_FormFillEnvironment* pApp,
|
|
CPDFSDK_Widget* pWidget)
|
|
: CFFL_Button(pApp, pWidget) {}
|
|
|
|
CFFL_PushButton::~CFFL_PushButton() = default;
|
|
|
|
std::unique_ptr<CPWL_Wnd> CFFL_PushButton::NewPWLWindow(
|
|
const CPWL_Wnd::CreateParams& cp,
|
|
std::unique_ptr<IPWL_SystemHandler::PerWindowData> pAttachedData) {
|
|
auto pWnd = pdfium::MakeUnique<CPWL_PushButton>(cp, std::move(pAttachedData));
|
|
pWnd->Realize();
|
|
return std::move(pWnd);
|
|
}
|