chromium/third_party/pdfium/xfa/fwl/cfwl_checkbox.h

// 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

#ifndef XFA_FWL_CFWL_CHECKBOX_H_
#define XFA_FWL_CFWL_CHECKBOX_H_

#include "xfa/fwl/cfwl_event.h"
#include "xfa/fwl/cfwl_widget.h"

namespace pdfium {

#define FWL_STYLEEXT_CKB_3State
#define FWL_STYLEEXT_CKB_RadioButton
#define FWL_STYLEEXT_CKB_SignShapeCheck
#define FWL_STYLEEXT_CKB_SignShapeCircle
#define FWL_STYLEEXT_CKB_SignShapeCross
#define FWL_STYLEEXT_CKB_SignShapeDiamond
#define FWL_STYLEEXT_CKB_SignShapeSquare
#define FWL_STYLEEXT_CKB_SignShapeStar
#define FWL_STYLEEXT_CKB_SignShapeMask
#define FWL_STATE_CKB_Hovered
#define FWL_STATE_CKB_Pressed
#define FWL_STATE_CKB_Unchecked
#define FWL_STATE_CKB_Checked
#define FWL_STATE_CKB_Neutral
#define FWL_STATE_CKB_CheckMask

class CFWL_MessageKey;
class CFWL_MessageMouse;

class CFWL_CheckBox final : public CFWL_Widget {};

}  // namespace pdfium

// TODO(crbug.com/42271761): Remove.
CFWL_CheckBox;

#endif  // XFA_FWL_CFWL_CHECKBOX_H_