]> git.mxchange.org Git - flightgear.git/blobdiff - src/GUI/dialog.hxx
Boris Koenig:
[flightgear.git] / src / GUI / dialog.hxx
index a399849ff457bb0b25174dc384c00aaa9d7d5096..f563cda125a05b3109ae1820f88c676983dc678a 100644 (file)
@@ -91,6 +91,11 @@ public:
     virtual void applyValues ();
 
 
+    /**
+     * Update state.  Called on active dialogs before rendering.
+     */
+    virtual void update ();
+
 private:
 
     // Private copy constructor to avoid unpleasant surprises.
@@ -127,6 +132,7 @@ private:
         SGPropertyNode_ptr node;
     };
     vector<PropertyObject *> _propertyObjects;
+    vector<PropertyObject *> _liveObjects;
 
     // PUI doesn't copy arrays, so we have to allocate string arrays
     // and then keep pointers so that we can delete them when the
@@ -135,4 +141,23 @@ private:
     vector<char **> _char_arrays;
 };
 
+//
+// Custom subclass of puPopup to implement "draggable" windows in the
+// interface.  Note that this is a subclass of puPopup, not
+// puDialogBox.  Sadly, PUI (mis)uses subclassing to implement a
+// boolean property: modality.  That means that we can't implement
+// dragging of both puPopup windows and puDialogBoxes with the same
+// code.  Rather than duplicate code, I've chosen to implement only
+// "non-modal dragability" here.  Modal dialog boxes (like the exit
+// confirmation) are not draggable.
+//
+class fgPopup : public puPopup {
+public:
+    fgPopup(int x, int y) : puPopup(x, y) { _dragging = false; }
+    int checkHit(int b, int up, int x, int y);
+private:
+    bool _dragging;
+    int _dX, _dY;
+};
+
 #endif // __DIALOG_HXX