]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/RadioButtonGroup.h
different low-level key handling for xforms 0.89, use signals in workarea, changes...
[lyx.git] / src / frontends / xforms / RadioButtonGroup.h
1 // -*- C++ -*-
2 /* This file is part of
3  * =================================================
4  * 
5  *          LyX, The Document Processor
6  *          Copyright 1995 Matthias Ettrich.
7  *          Copyright 1995-2000 The LyX Team.
8  *
9  *          This file Copyright 2000 Baruch Even
10  * ================================================= */
11
12 /*
13  * This class simplifies the work with a group of radio buttons,
14  * the idea is that you register a bunch of radio buttons with the accompanying
15  * value for each radio button and then you get to query or set the active
16  * button in a single function call.
17  */
18
19 #ifndef RADIOBUTTONGROUP_H
20 #define RADIOBUTTONGROUP_H
21
22 #ifdef __GNUG__
23 #pragma interface
24 #endif 
25
26 #include <vector>
27 #include <utility>
28
29 using std::vector;
30 using std::pair;
31
32 #include FORMS_H_LOCATION
33
34 ///
35 class RadioButtonGroup {
36 public:
37         /// Constructor. Allocate space for 'n' items in the group.
38         RadioButtonGroup(unsigned n = 5) : map(n) {};
39
40         /// Register a radio button with it's corresponding value.
41         void registerRadioButton(FL_OBJECT *button, int value);
42         /// Reset registrations.
43         void reset();
44
45         // Set the active button.
46         void setButton(int value);
47
48         // Get the active button.
49         int getButton();
50
51 private:
52         ///
53         typedef pair<FL_OBJECT *, int> ButtonValuePair;
54         ///
55         typedef vector<ButtonValuePair> ButtonValueMap;
56         ///
57         ButtonValueMap map;
58 };
59
60 #endif