]> git.mxchange.org Git - flightgear.git/blob - src/GUI/property_list.hxx
Modified Files:
[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 #include "dialog.hxx"
30
31 #include "puList.hxx"
32
33 class PropertyList : public puList, public SGPropertyChangeListener, public GUI_ID {
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);
40     SGPropertyNode *getCurrent() const { return _curr; }
41     void publish(SGPropertyNode *p) { _return = p; invokeCallback(); }
42     void toggleFlags() { _flags = !_flags; }
43
44     // overridden plib pui methods
45     virtual char *getListStringValue() { return (char *)(_return ? _return->getPath(true) : ""); }
46     //virtual char *getStringValue(void) { return (char *)(_return ? _return->getPath(true) : ""); }
47     virtual void setValue(const char *);
48
49     // listener method
50     virtual void valueChanged(SGPropertyNode *node);
51
52 private:
53     // update the text string in the puList using the given node and
54     // updating the requested offset. The value of dotFiles is taken
55     // into account before the index is applied, i.e this should be
56     // an index into 'children'
57     void updateTextForEntry(int index);
58     void delete_arrays();
59     static void handle_select(puObject *b);
60     static int nodeNameCompare(const void *, const void *);
61
62     SGPropertyNode_ptr _curr;
63     SGPropertyNode_ptr _return;
64
65     char **_entries;
66     int _num_entries;
67
68     struct NodeData {
69         NodeData() : listener(0) {}
70         ~NodeData() {
71             if (listener)
72                 node->removeChangeListener(listener);
73         }
74         void setListener(SGPropertyChangeListener *l) {
75             node->addChangeListener(listener = l);
76         }
77         SGPropertyNode_ptr node;
78         SGPropertyChangeListener *listener;
79     };
80     NodeData *_children;
81     int _num_children;
82
83     bool _dot_files;      // . and .. pseudo-dirs currently shown?
84     bool _flags;          // show SGPropertyNode flags
85 };
86
87
88 #endif // _PROP_PICKER_HXX