FLImaging 6.5.8.1
GUICheckBox3State.h
1#pragma once
2
11#include <afxwin.h>
12#include "GUICheckBox.h"
13
15namespace FLImaging
16{
18 namespace GUI
19 {
27 class FL_EXPORT CGUICheckBox3State : public CGUICheckBox
28 {
29 public:
37
45
54 void SetCheck(UINT nCheck);
55
64 UINT GetCheck()const;
65
66 DECLARE_MESSAGE_MAP()
67 afx_msg BOOL OnBnClicked();
68
69 protected:
70 virtual void DrawButton(CDC* pDC, const CRect& rect, const int32_t& i32CheckBoxMargin, const int32_t& i32CheckBoxSize)override;
71
72 };
73 }
74}
A class of check box with 3 state style.
Definition GUICheckBox3State.h:28
virtual ~CGUICheckBox3State()
Default destructor.
CGUICheckBox3State()
Default constructor.
UINT GetCheck() const
Function that returns whether the check box is checked.
void SetCheck(UINT nCheck)
Specify the check status.
CheckBox class.
Definition GUICheckBox.h:28