~ubuntu-branches/debian/squeeze/gmsh/squeeze

« back to all changes in this revision

Viewing changes to contrib/Fl_Tree/FL/Fl_Tree_Prefs.H

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Prud'homme, Christophe Prud'homme
  • Date: 2009-09-02 18:12:15 UTC
  • mfrom: (1.2.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20090902181215-yla8zvcas2ucvkm9
[Christophe Prud'homme]
* New upstream release
  + fixed surface mesh orientation bug introduced in 2.4.0;
  + mesh and graphics code refactoring;
  + small usability enhancements and bug fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef FL_TREE_PREFS_H
 
2
#define FL_TREE_PREFS_H
 
3
 
 
4
//////////////////////
 
5
// FL/Fl_Tree_Prefs.H
 
6
//////////////////////
 
7
//
 
8
// Fl_Tree -- This file is part of the Fl_Tree widget for FLTK
 
9
// Copyright (C) 2009 by Greg Ercolano.
 
10
//
 
11
// This library is free software; you can redistribute it and/or
 
12
// modify it under the terms of the GNU Library General Public
 
13
// License as published by the Free Software Foundation; either
 
14
// version 2 of the License, or (at your option) any later version.
 
15
//
 
16
// This library is distributed in the hope that it will be useful,
 
17
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
18
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
19
// Library General Public License for more details.
 
20
//
 
21
// You should have received a copy of the GNU Library General Public
 
22
// License along with this library; if not, write to the Free Software
 
23
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 
24
// USA.
 
25
//
 
26
 
 
27
///
 
28
/// \file
 
29
/// \brief This file contains the definitions for Fl_Tree's preferences.
 
30
///
 
31
/// \code
 
32
///                  Fl_Tree_Prefs
 
33
///                       :
 
34
///                  .....:.......
 
35
///                  :           :
 
36
///               Fl_Tree        :
 
37
///                  |_____ Fl_Tree_Item
 
38
///
 
39
/// \endcode
 
40
///
 
41
 
 
42
/// \class Fl_Tree_Prefs
 
43
/// \brief Tree widget's preferences.
 
44
 
 
45
/// \enum Fl_Tree_Sort
 
46
/// Sort order options for items added to the tree
 
47
///
 
48
enum Fl_Tree_Sort {
 
49
    FL_TREE_SORT_NONE=0,        ///< No sorting; items are added in the order defined (default).
 
50
    FL_TREE_SORT_ASCENDING=1,   ///< Add items in ascending sort order.
 
51
    FL_TREE_SORT_DESCENDING=2   ///< Add items in descending sort order.
 
52
};
 
53
 
 
54
/// \enum Fl_Tree_Connector
 
55
/// Defines the style of connection lines between items.
 
56
///
 
57
enum Fl_Tree_Connector {
 
58
    FL_TREE_CONNECTOR_NONE=0,   ///< Use no lines connecting items
 
59
    FL_TREE_CONNECTOR_DOTTED=1, ///< Use dotted lines connecting items (default)
 
60
    FL_TREE_CONNECTOR_SOLID=2   ///< Use solid lines connecting items
 
61
};
 
62
 
 
63
/// \enum Fl_Tree_Select
 
64
/// Tree selection style.
 
65
///
 
66
enum Fl_Tree_Select {
 
67
    FL_TREE_SELECT_NONE=0,      ///< Nothing selected when items are clicked
 
68
    FL_TREE_SELECT_SINGLE,      ///< Single item selected when item is clicked (default)
 
69
    FL_TREE_SELECT_MULTI        ///< Multiple items can be selected by clicking with
 
70
                                ///< SHIFT or CTRL or mouse drags.
 
71
};
 
72
 
 
73
/// \class Fl_Tree_Prefs
 
74
///
 
75
/// \brief Fl_Tree's Preferences class.
 
76
///
 
77
/// This class manages the Fl_Tree's defaults.
 
78
/// You should probably be using the methods in Fl_Tree
 
79
/// instead of trying to accessing tree's preferences settings directly.
 
80
///
 
81
class Fl_Tree_Prefs {
 
82
    int _labelfont;                     // label's font face
 
83
    int _labelsize;                     // label's font size
 
84
    int _margintop;                     // -- 
 
85
    int _marginleft;                    //   |- tree's margins
 
86
    //int _marginright;                 //   |
 
87
    //int _marginbottom;                // --
 
88
    int _usericonmarginleft;            // space to left of user icon (if any)
 
89
    int _labelmarginleft;               // space to left of label
 
90
    int _connectorwidth;                // connector width (right of open/close icon)
 
91
    int _linespacing;                   // vertical space between lines
 
92
    // Colors
 
93
    Fl_Color _fgcolor;                  // label's foreground color
 
94
    Fl_Color _bgcolor;                  // background color
 
95
    Fl_Color _selectcolor;              // selection color
 
96
    Fl_Color _inactivecolor;            // inactive color
 
97
    Fl_Color _connectorcolor;           // connector dotted line color
 
98
    Fl_Tree_Connector _connectorstyle;  // connector line style
 
99
    Fl_Pixmap *_openpixmap;             // the 'open' icon [+]
 
100
    Fl_Pixmap *_closepixmap;            // the 'close' icon [-]
 
101
    Fl_Pixmap *_userpixmap;             // user's own icon
 
102
    char _showcollapse;                 // 1=show collapse icons, 0=don't
 
103
    char _showroot;                     // show the root item as part of the tree
 
104
    Fl_Tree_Sort   _sortorder;          // none, ascening, descending, etc.
 
105
    Fl_Boxtype     _selectbox;          // selection box type
 
106
    Fl_Tree_Select _selectmode;         // selection mode
 
107
public:
 
108
    Fl_Tree_Prefs();
 
109
 
 
110
    ////////////////////////////
 
111
    // Labels
 
112
    ////////////////////////////
 
113
    /// Return the label's font.
 
114
    inline int labelfont() const {
 
115
        return(_labelfont);
 
116
    }
 
117
    /// Set the label's font to \p val.
 
118
    inline void labelfont(int val) {
 
119
        _labelfont = val;
 
120
    }
 
121
    /// Return the label's size in pixels.
 
122
    inline int labelsize() const {
 
123
        return(_labelsize);
 
124
    }
 
125
    /// Set the label's size in pixels to \p val.
 
126
    inline void labelsize(int val) {
 
127
        _labelsize = val;
 
128
    }
 
129
 
 
130
    ////////////////////////////
 
131
    // Margins
 
132
    ////////////////////////////
 
133
    /// Get the left margin's value in pixels
 
134
    inline int marginleft() const {
 
135
        return(_marginleft);
 
136
    }
 
137
    /// Set the left margin's value in pixels
 
138
    inline void marginleft(int val) {
 
139
        _marginleft = val;
 
140
    }
 
141
    /// Get the top margin's value in pixels
 
142
    inline int margintop() const {
 
143
        return(_margintop);
 
144
    }
 
145
    /// Set the top margin's value in pixels
 
146
    inline void margintop(int val) {
 
147
        _margintop = val;
 
148
    }
 
149
 
 
150
/****** NOT IMPLEMENTED
 
151
    inline int marginright() const {
 
152
        return(_marginright);
 
153
    }
 
154
    inline void marginright(int val) {
 
155
        _marginright = val;
 
156
    }
 
157
    inline int marginbottom() const {
 
158
        return(_marginbottom);
 
159
    }
 
160
    inline void marginbottom(int val) {
 
161
        _marginbottom = val;
 
162
    }
 
163
*******/
 
164
 
 
165
    /// Get the user icon's left margin value in pixels
 
166
    inline int usericonmarginleft() const {
 
167
        return(_usericonmarginleft);
 
168
    }
 
169
    /// Set the user icon's left margin value in pixels
 
170
    inline void usericonmarginleft(int val) {
 
171
        _usericonmarginleft = val;
 
172
    }
 
173
    /// Get the label's left margin value in pixels
 
174
    inline int labelmarginleft() const {
 
175
        return(_labelmarginleft);
 
176
    }
 
177
    /// Set the label's left margin value in pixels
 
178
    inline void labelmarginleft(int val) {
 
179
        _labelmarginleft = val;
 
180
    }
 
181
    /// Get the line spacing value in pixels
 
182
    inline int linespacing() const {
 
183
        return(_linespacing);
 
184
    }
 
185
    /// Set the line spacing value in pixels
 
186
    inline void linespacing(int val) {
 
187
        _linespacing = val;
 
188
    }
 
189
 
 
190
    ////////////////////////////
 
191
    // Colors and Styles
 
192
    ////////////////////////////
 
193
    /// Get the default label foreground color
 
194
    inline Fl_Color fgcolor() const {
 
195
        return(_fgcolor);
 
196
    }
 
197
    /// Set the default label foreground color
 
198
    inline void fgcolor(Fl_Color val) {
 
199
        _fgcolor = val;
 
200
    }
 
201
    /// Get the default label background color
 
202
    inline Fl_Color bgcolor() const {
 
203
        return(_bgcolor);
 
204
    }
 
205
    /// Set the default label background color
 
206
    inline void bgcolor(Fl_Color val) {
 
207
        _bgcolor = val;
 
208
    }
 
209
    /// Get the default selection color
 
210
    inline Fl_Color selectcolor() const {
 
211
        return(_selectcolor);
 
212
    }
 
213
    /// Set the default selection color
 
214
    inline void selectcolor(Fl_Color val) {
 
215
        _selectcolor = val;
 
216
    }
 
217
    /// Get the default inactive color
 
218
    inline Fl_Color inactivecolor() const {
 
219
        return(_inactivecolor);
 
220
    }
 
221
    /// Set the default inactive color
 
222
    inline void inactivecolor(Fl_Color val) {
 
223
        _inactivecolor = val;
 
224
    }
 
225
    /// Get the connector color; the color used for tree connection lines
 
226
    inline Fl_Color connectorcolor() const {
 
227
        return(_connectorcolor);
 
228
    }
 
229
    /// Set the connector color; the color used for tree connection lines
 
230
    inline void connectorcolor(Fl_Color val) {
 
231
        _connectorcolor = val;
 
232
    }
 
233
    /// Get the connector style
 
234
    inline Fl_Tree_Connector connectorstyle() const {
 
235
        return(_connectorstyle);
 
236
    }
 
237
    /// Set the connector style
 
238
    inline void connectorstyle(Fl_Tree_Connector val) {
 
239
        _connectorstyle = val;
 
240
    }
 
241
    /// Get the tree connection line's width
 
242
    inline int connectorwidth() const {
 
243
        return(_connectorwidth);
 
244
    }
 
245
    /// Set the tree connection line's width
 
246
    inline void connectorwidth(int val) {
 
247
        _connectorwidth = val;
 
248
    }
 
249
 
 
250
    ////////////////////////////
 
251
    // Icons
 
252
    ////////////////////////////
 
253
    /// Get the current default 'open' icon.
 
254
    ///     Returns the Fl_Pixmap* of the icon, or 0 if none.
 
255
    ///
 
256
    inline Fl_Pixmap *openicon() const {
 
257
        return(_openpixmap);
 
258
    }
 
259
    void openicon(Fl_Pixmap *val);
 
260
    /// Gets the default 'close' icon
 
261
    ///     Returns the Fl_Pixmap* of the icon, or 0 if none.
 
262
    ///
 
263
    inline Fl_Pixmap *closeicon() const {
 
264
        return(_closepixmap);
 
265
    }
 
266
    void closeicon(Fl_Pixmap *val);
 
267
    /// Gets the default 'user icon' (default is 0)
 
268
    inline Fl_Pixmap *usericon() const {
 
269
        return(_userpixmap);
 
270
    }
 
271
    /// Sets the default 'user icon'
 
272
    ///     Returns the Fl_Pixmap* of the icon, or 0 if none (default).
 
273
    ///
 
274
    inline void usericon(Fl_Pixmap *val) {
 
275
        _userpixmap = val;
 
276
    }
 
277
 
 
278
    ////////////////////////////
 
279
    // Options
 
280
    ////////////////////////////
 
281
    /// Returns 1 if the collapse icon is enabled, 0 if not.
 
282
    inline char showcollapse() const {
 
283
        return(_showcollapse);
 
284
    }
 
285
    /// Set if we should show the collapse icon or not.
 
286
    /// If collapse icons are disabled, the user will not be able
 
287
    /// to interactively collapse items in the tree, unless the application
 
288
    /// provides some other means via open() and close().
 
289
    ///
 
290
    /// \param[in] val 1: shows collapse icons (default),\n
 
291
    ///                0: hides collapse icons.
 
292
    ///
 
293
    inline void showcollapse(int val) {
 
294
        _showcollapse = val;
 
295
    }
 
296
    /// Get the default sort order value
 
297
    inline Fl_Tree_Sort sortorder() const {
 
298
        return(_sortorder);
 
299
    }
 
300
    /// Set the default sort order value.
 
301
    ///     Defines the order new items appear when add()ed to the tree.
 
302
    ///     See Fl_Tree_Sort for possible values.
 
303
    ///
 
304
    inline void sortorder(Fl_Tree_Sort val) {
 
305
        _sortorder = val;
 
306
    }
 
307
    /// Get the default selection box's box drawing style as an Fl_Boxtype.
 
308
    inline Fl_Boxtype selectbox() const {
 
309
        return(_selectbox);
 
310
    }
 
311
    /// Set the default selection box's box drawing style to \p val.
 
312
    inline void selectbox(Fl_Boxtype val) {
 
313
        _selectbox = val;
 
314
    }
 
315
    /// Returns 1 if the root item is to be shown, or 0 if not.
 
316
    inline int showroot() const {
 
317
        return(int(_showroot));
 
318
    }
 
319
    /// Set if the root item should be shown or not.
 
320
    /// \param[in] val 1 -- show the root item (default)\n
 
321
    ///                0 -- hide the root item.
 
322
    ///
 
323
    inline void showroot(int val) {
 
324
        _showroot = char(val);
 
325
    }
 
326
    /// Get the selection mode used for the tree
 
327
    inline Fl_Tree_Select selectmode() const {
 
328
        return(_selectmode);
 
329
    }
 
330
    /// Set the selection mode used for the tree to \p val.
 
331
    ///     This affects how items in the tree are selected
 
332
    ///     when clicked on and dragged over by the mouse.
 
333
    ///     See Fl_Tree_Select for possible values.
 
334
    ///
 
335
    inline void selectmode(Fl_Tree_Select val) {
 
336
        _selectmode = val;
 
337
    }
 
338
};
 
339
 
 
340
#endif /*FL_TREE_PREFS_H*/