30 lines
863 B
C++
30 lines
863 B
C++
// Copyright 2016 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
|
|
|
|
#ifndef XFA_FWL_CFWL_MESSAGEKEY_H_
|
|
#define XFA_FWL_CFWL_MESSAGEKEY_H_
|
|
|
|
#include "core/fxcrt/mask.h"
|
|
#include "xfa/fwl/cfwl_message.h"
|
|
#include "xfa/fwl/fwl_widgetdef.h"
|
|
|
|
class CFWL_MessageKey final : public CFWL_Message {
|
|
public:
|
|
enum class KeyCommand : uint8_t { kKeyDown, kChar };
|
|
|
|
CFWL_MessageKey(CFWL_Widget* pDstTarget,
|
|
KeyCommand subtype,
|
|
Mask<XFA_FWL_KeyFlag> flags,
|
|
uint32_t dwKeyCodeOrChar);
|
|
~CFWL_MessageKey() override;
|
|
|
|
const KeyCommand m_dwCmd;
|
|
const Mask<XFA_FWL_KeyFlag> m_dwFlags;
|
|
const uint32_t m_dwKeyCodeOrChar;
|
|
};
|
|
|
|
#endif // XFA_FWL_CFWL_MESSAGEKEY_H_
|