]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/RadioButtonGroup.C
More pref work from Angus
[lyx.git] / src / frontends / xforms / RadioButtonGroup.C
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 #include <config.h> 
13
14 #ifdef __GNUG__
15 #pragma implementation
16 #endif 
17
18 #include "RadioButtonGroup.h"
19
20 #include "debug.h" // for lyxerr
21
22 #include <functional>
23 #include <algorithm>
24 #include <iterator>
25 using std::find_if;
26 using std::bind2nd;
27 using std::endl;
28
29 void RadioButtonGroup::registerRadioButton(FL_OBJECT *button, int value)
30 {
31         map.push_back( ButtonValuePair(button, value) );
32 }
33
34
35 void RadioButtonGroup::reset()
36 {
37         map.clear();
38 }
39
40 // Functor to help us in our work, we should try to find how to achieve
41 // this with only STL predicates, but its easier to write this than to
42 // dig. If you can find the equivalent STL predicate combination, let me
43 // know.
44 //
45 // The idea is to take a pair and a value and return true when the second
46 // element in the pair equals the value.
47 template < typename T >
48 struct equal_to_second_in_pair
49 {
50         typedef bool result_type;
51         typedef T       first_argument_type;
52         typedef typename T::second_type second_argument_type;
53
54         bool operator() (
55             pair < typename T::first_type, typename T::second_type > const & left,
56             typename T::second_type const & right) const
57         {
58                 return left.second == right;
59         }
60 };
61
62 void RadioButtonGroup::setButton(int value)
63 {
64         ButtonValueMap::const_iterator it =
65             find_if(map.begin(), map.end(),
66                     bind2nd(equal_to_second_in_pair < ButtonValuePair > (),
67                             value));
68
69         // If we found nothing, report it and return
70         if (it == map.end()) {
71                 lyxerr << "BUG: Requested value in RadioButtonGroup doesn't exists"
72                 << endl;
73         }
74         else {
75                 fl_set_button((*it).first, 1);
76         }
77
78 }
79
80 template < typename T >
81 struct is_set_button {
82         bool operator() (T const & item) const
83         {
84                 return fl_get_button( (item).first );
85         }
86 };
87
88 int RadioButtonGroup::getButton()
89 {
90         // Find the first button that is active
91         ButtonValueMap::iterator it =
92             find_if(map.begin(), map.end(),
93                     is_set_button < ButtonValuePair > () );
94
95         // If such a button was found, return its value.
96         if (it != map.end()) {
97                 return (*it).second;
98         }
99
100         lyxerr << "BUG: No radio button found to be active." << endl;
101
102         // Else return 0.
103         return 0;
104 }
105