Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members

FXRadioButton.h
1 /********************************************************************************
2 * *
3 * R a d i o B u t t o n W i d g e t *
4 * *
5 *********************************************************************************
6 * Copyright (C) 1998,2022 by Jeroen van der Zijp. All Rights Reserved. *
7 *********************************************************************************
8 * This library is free software; you can redistribute it and/or modify *
9 * it under the terms of the GNU Lesser General Public License as published by *
10 * the Free Software Foundation; either version 3 of the License, or *
11 * (at your option) any later version. *
12 * *
13 * This library is distributed in the hope that it will be useful, *
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16 * GNU Lesser General Public License for more details. *
17 * *
18 * You should have received a copy of the GNU Lesser General Public License *
19 * along with this program. If not, see <http://www.gnu.org/licenses/> *
20 ********************************************************************************/
21 #ifndef FXRADIOBUTTON_H
22 #define FXRADIOBUTTON_H
23 
24 #ifndef FXLABEL_H
25 #include "FXLabel.h"
26 #endif
27 
28 namespace FX {
29 
30 
32 enum {
33  RADIOBUTTON_AUTOGRAY = 0x00800000,
34  RADIOBUTTON_AUTOHIDE = 0x01000000,
35  RADIOBUTTON_NORMAL = JUSTIFY_NORMAL|ICON_BEFORE_TEXT
36  };
37 
38 
39 
51 class FXAPI FXRadioButton : public FXLabel {
52  FXDECLARE(FXRadioButton)
53 protected:
54  FXColor radioColor; // Color of radio ball
55  FXColor diskColor; // Color of radio disk
56  FXuchar check; // Radio state
57  FXuchar oldcheck; // Old radio state
58 protected:
59  FXRadioButton();
60 private:
62  FXRadioButton &operator=(const FXRadioButton&);
63 public:
64  long onPaint(FXObject*,FXSelector,void*);
65  long onUpdate(FXObject*,FXSelector,void*);
66  long onEnter(FXObject*,FXSelector,void*);
67  long onLeave(FXObject*,FXSelector,void*);
68  long onFocusIn(FXObject*,FXSelector,void*);
69  long onFocusOut(FXObject*,FXSelector,void*);
70  long onUngrabbed(FXObject*,FXSelector,void*);
71  long onLeftBtnPress(FXObject*,FXSelector,void*);
72  long onLeftBtnRelease(FXObject*,FXSelector,void*);
73  long onKeyPress(FXObject*,FXSelector,void*);
74  long onKeyRelease(FXObject*,FXSelector,void*);
75  long onHotKeyPress(FXObject*,FXSelector,void*);
76  long onHotKeyRelease(FXObject*,FXSelector,void*);
77  long onCheck(FXObject*,FXSelector,void*);
78  long onUncheck(FXObject*,FXSelector,void*);
79  long onUnknown(FXObject*,FXSelector,void*);
80  long onCmdSetValue(FXObject*,FXSelector,void*);
81  long onCmdSetIntValue(FXObject*,FXSelector,void*);
82  long onCmdGetIntValue(FXObject*,FXSelector,void*);
83 public:
84 
86  FXRadioButton(FXComposite* p,const FXString& text,FXObject* tgt=nullptr,FXSelector sel=0,FXuint opts=RADIOBUTTON_NORMAL,FXint x=0,FXint y=0,FXint w=0,FXint h=0,FXint pl=DEFAULT_PAD,FXint pr=DEFAULT_PAD,FXint pt=DEFAULT_PAD,FXint pb=DEFAULT_PAD);
87 
89  virtual FXbool canFocus() const;
90 
92  virtual FXint getDefaultWidth();
93 
95  virtual FXint getDefaultHeight();
96 
98  void setCheck(FXuchar s=true,FXbool notify=false);
99 
101  FXuchar getCheck() const { return check; }
102 
104  void setRadioButtonStyle(FXuint style);
105 
107  FXuint getRadioButtonStyle() const;
108 
110  FXColor getRadioColor() const { return radioColor; }
111 
113  void setRadioColor(FXColor clr);
114 
116  FXColor getDiskColor() const { return diskColor; }
117 
119  void setDiskColor(FXColor clr);
120 
122  virtual void save(FXStream& store) const;
123 
125  virtual void load(FXStream& store);
126  };
127 
128 }
129 
130 #endif
FXuchar getCheck() const
Get radio button state (TRUE, FALSE or MAYBE)
Definition: FXRadioButton.h:101
A label widget can be used to place a text and/or icon for explanation purposes.
Definition: FXLabel.h:64
Base composite.
Definition: FXComposite.h:32
A stream is a way to serialize data and objects into a byte stream.
Definition: FXStream.h:81
Definition: FX4Splitter.h:28
Object is the base class for all objects in FOX; in order to receive messages from the user interface...
Definition: FXObject.h:134
A radio button is a tri-state button.
Definition: FXRadioButton.h:51
FXColor getRadioColor() const
Get the radio ball color.
Definition: FXRadioButton.h:110
FXString provides essential string manipulation capabilities in FOX.
Definition: FXString.h:42
FXColor getDiskColor() const
Get the radio disk color.
Definition: FXRadioButton.h:116

Copyright © 1997-2022 Jeroen van der Zijp