]> git.mxchange.org Git - flightgear.git/blob - src/GUI/property_list.hxx
7d0792eda2f37f905b26ed3c369d8fd596e1c059
[flightgear.git] / src / GUI / property_list.hxx
1 // Implementation of the <property-list> widget.
2 //
3 // Copyright (C) 2001  Steve BAKER
4 // Copyright (C) 2001  Jim WILSON
5 // Copyright (C) 2006  Melchior FRANZ
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 //
21 // $Id$
22
23 #ifndef _PROPERTY_LIST_HXX
24 #define _PROPERTY_LIST_HXX
25
26
27 #include <plib/pu.h>
28 #include <simgear/props/props.hxx>
29
30 #include "puList.hxx"
31
32
33 class PropertyList : public puList, public SGPropertyChangeListener {
34 public:
35     PropertyList(int minx, int miny, int maxx, int maxy, SGPropertyNode *);
36     ~PropertyList();
37
38     void update (bool restore_slider_pos = false);
39     void setCurrent(SGPropertyNode *p) { _curr = p; update(); publish(p); }
40     SGPropertyNode *getCurrent() const { return _curr; }
41     void publish(SGPropertyNode *p) { _return = p; invokeCallback(); }
42     void toggleFlags() { _flags->setBoolValue(!_flags->getBoolValue()); }
43
44     // overridden plib pui methods
45     virtual char *getStringValue(void) { return (char *)(_return ? _return->getPath(true) : ""); }
46     virtual void setValue(const char *);
47
48     // listener method
49     virtual void valueChanged(SGPropertyNode *node);
50
51 private:
52     // update the text string in the puList using the given node and
53     // updating the requested offset. The value of dotFiles is taken
54     // into account before the index is applied, i.e this should be
55     // an index into 'children'
56     void updateTextForEntry(int index);
57     void delete_arrays();
58     static void handle_select(puObject *b);
59
60     SGPropertyNode_ptr _curr;
61     SGPropertyNode_ptr _flags;
62     SGPropertyNode_ptr _return;
63
64     char **_entries;
65     int _num_entries;
66
67     SGPropertyNode_ptr *_children;
68     int _num_children;
69
70     bool dotFiles;      // . and .. pseudo-dirs currently shown?
71 };
72
73
74 #endif // _PROP_PICKER_HXX