~om26er/ubuntu/oneiric/nux/sru-888039

« back to all changes in this revision

Viewing changes to Nux/ColorEditor.h

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2011-08-11 18:29:22 UTC
  • mfrom: (1.1.25 upstream)
  • Revision ID: james.westby@ubuntu.com-20110811182922-lbfkhxvubg5z59pb
Tags: 1.2.0-0ubuntu1
* New upstream release.
* debian/rules:
  - bump shlib

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
  class VLayout;
38
38
  class EditTextBox;
39
39
  class CheckBox;
40
 
  class RadioButton;
41
 
  class RadioButtonGroup;
42
 
  class PushButton;
 
40
  class ToggleButton;
 
41
  class Button;
43
42
 
44
43
  class ColorEditor;
45
44
  class ColorPreview;
152
151
    HLayout *greenlayout;
153
152
    HLayout *bluelayout;
154
153
 
155
 
    RadioButton *redcheck;
 
154
    Button *redcheck;
156
155
    EditTextBox *redtext;
157
 
    RadioButton *greencheck;
 
156
    Button *greencheck;
158
157
    EditTextBox *greentext;
159
 
    RadioButton *bluecheck;
 
158
    Button *bluecheck;
160
159
    EditTextBox *bluetext;
161
160
 
162
161
    HLayout *huelayout;
163
162
    HLayout *saturationlayout;
164
163
    HLayout *valuelayout;
165
164
 
166
 
    RadioButton *huecheck;
 
165
    Button *huecheck;
167
166
    EditTextBox *huetext;
168
 
    RadioButton *saturationcheck;
 
167
    Button *saturationcheck;
169
168
    EditTextBox *saturationtext;
170
 
    RadioButton *valuecheck;
 
169
    Button *valuecheck;
171
170
    EditTextBox *valuetext;
172
171
 
173
 
    PushButton *OkButton;
174
 
    PushButton *CancelButton;
175
 
    RadioButtonGroup *radiogroup;
 
172
    ToggleButton *OkButton;
 
173
    ToggleButton *CancelButton;
 
174
    //RadioButtonGroup *radiogroup;
176
175
 
177
176
    DoubleValidator m_Validator;
178
177