]> git.mxchange.org Git - flightgear.git/blobdiff - src/GUI/dialog.hxx
- abstract out reading colors from the property tree into a routine.
[flightgear.git] / src / GUI / dialog.hxx
index f081d88c0e4c07900a167a568f5b303d290daca7..d0c6d70b949fc2b8bbf2984bb7693ba04389d916 100644 (file)
@@ -12,6 +12,7 @@
 
 #include <simgear/compiler.h>  // for SG_USING_STD
 #include <simgear/props/props.hxx>
+#include <simgear/misc/sg_path.hxx>
 
 #include <vector>
 SG_USING_STD(vector);
@@ -117,6 +118,9 @@ private:
                      int width, int height, sgVec4 color,
                      bool makeFrame = false);
 
+    // Read color properties and merge them into color vector.
+    void getColor(const SGPropertyNode * prop, sgVec4 color);
+
     // The top-level PUI object.
     puObject * _object;
 
@@ -141,6 +145,10 @@ private:
     // dialog closes.
     char ** make_char_array (int size);
     vector<char **> _char_arrays;
+
+    SGPath _font_path;
+    sgVec4 _fgcolor;
+    sgVec4 _bgcolor;
 };
 
 //