blob: f0f6d371b4f988835e0a8de654855d11d86499e1 [file] [log] [blame]
// Copyright 2020 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
#ifndef FPDFSDK_PWL_CPWL_CBLISTBOX_H_
#define FPDFSDK_PWL_CPWL_CBLISTBOX_H_
#include <memory>
#include "fpdfsdk/pwl/cpwl_list_box.h"
#include "fpdfsdk/pwl/ipwl_systemhandler.h"
class CPWL_CBListBox final : public CPWL_ListBox {
public:
CPWL_CBListBox(
const CreateParams& cp,
std::unique_ptr<IPWL_SystemHandler::PerWindowData> pAttachedData);
~CPWL_CBListBox() override;
// CPWL_ListBox
bool OnLButtonUp(uint32_t nFlag, const CFX_PointF& point) override;
bool IsMovementKey(uint16_t nChar) const;
bool OnMovementKeyDown(uint16_t nChar, uint32_t nFlag);
bool IsChar(uint16_t nChar, uint32_t nFlag) const;
bool OnCharNotify(uint16_t nChar, uint32_t nFlag);
};
#endif // FPDFSDK_PWL_CPWL_CBLISTBOX_H_