~ubuntu-branches/ubuntu/wily/flrig/wily

« back to all changes in this revision

Viewing changes to src/include/FreqControl.h

  • Committer: Package Import Robot
  • Author(s): Kamal Mostafa
  • Date: 2014-10-25 11:17:10 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20141025111710-n32skgya3l9u1brw
Tags: 1.3.17-1
* New upstream release (Closes: #761839)
* Debian Standards-Version: 3.9.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
        void do_callback() { if (cbFunc) cbFunc(); }
77
77
        int  handle(int event);
78
78
        void visual_beep();
 
79
        void set_hrd(bool b) {hrd_buttons = b;}
 
80
 
 
81
        void reverse_colors();
 
82
        void restore_colors();
 
83
        bool  is_reversed_colors() { return colors_reversed; }
79
84
 
80
85
        void resize (int X, int Y, int W, int H);
81
86
 
105
110
        Fl_Color ONCOLOR;
106
111
        Fl_Color SELCOLOR;
107
112
        Fl_Color ILLUMCOLOR;
 
113
        Fl_Color REVONCOLOR;
 
114
        Fl_Color REVOFFCOLOR;
108
115
        int nD;
109
116
        int active;
110
117
        long maxVal;
126
133
        long val, oldval;
127
134
        int  precision;
128
135
        int  dpoint;
 
136
        bool hrd_buttons;
 
137
        bool colors_reversed;
129
138
};
130
139
 
131
140
#endif