Develop and Download Open Source Software

Browse Subversion Repository

Contents of /trunk/CCheckBox.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1 - (show annotations) (download) (as text)
Sun Aug 15 01:53:13 2010 UTC (13 years, 9 months ago) by okadu
File MIME type: text/x-chdr
File size: 416 byte(s)


1 #ifndef CCHECKBOX_H_INCLUDED
2 #define CCHECKBOX_H_INCLUDED
3
4 #include "CInterface.h"
5
6 /*
7 * チェックボックス
8 */
9 class CCheckBox: public CInterface{
10 private:
11 int m_State; // 状態
12 int m_Check; // チェックフラグ
13 public:
14 void Init(int, int, int, int, char *, CInterface *);
15 void SetCheck(int chk){ m_Check = chk; }
16 int GetCheck(){ return m_Check; }
17 bool ScanInput();
18 void Render();
19 };
20
21 #endif

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26