aboutsummaryrefslogtreecommitdiff
path: root/Src/Wasabi/api/skin/widgets/guiradiogroup.h
blob: d1810593bbd6b8b450f5c14b014e2a3c0de18927 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#ifndef __GUIRADIOGROUP_H
#define __GUIRADIOGROUP_H

#include <api/skin/nakedobject.h>
#include <bfc/ptrlist.h>
#include <bfc/string/StringW.h>
                              
#define  GUIRADIOGROUP_PARENT NakedObject



/**
  Class 

  @short 
  @author Nullsoft
  @ver 1.0
  @see 
*/
class GuiRadioGroup : public GUIRADIOGROUP_PARENT {
  
  public:

    
    /**
      Method
    
      @see 
      @ret 
      @param 
    */
    void toggleChild(GuiObject *who);
    
    /**
      Method
    
      @see 
      @ret 
      @param 
    */
    void registerChild(GuiObject *who);

    // From BaseWnd
    

    virtual int onAction(const wchar_t *action, const wchar_t *param, int x, int y, intptr_t p1, intptr_t p2, void *data, size_t datalen, ifc_window *source);

  private:

    PtrList<GuiObject> children;
};

#endif