Develop and Download Open Source Software

Browse Subversion Repository

Contents of /trunk/CRadioButton.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: 551 byte(s)


1 #ifndef CRADIOBUTTON_H_INCLUDED
2 #define CRADIOBUTTON_H_INCLUDED
3
4 #include "CInterface.h"
5
6 /*
7 * ラジオボタン
8 */
9 class CRadioButton: public CInterface{
10 private:
11 int m_State; // 状態
12 int m_Check; // チェックフラグ
13 CRadioButton *m_Prev, *m_Next; // グループリンク
14 public:
15 void Init(int, int, int, int, char *, CInterface *, CRadioButton *);
16 void ClearGroupCheck();
17 void SetCheck(){
18 ClearGroupCheck();
19 m_Check = 1;
20 }
21 int GetCheck(){ return m_Check; }
22 int GetNumber();
23 bool ScanInput();
24 void Render();
25 };
26
27 #endif

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