]> git.tdb.fi Git - libs/gltk.git/commitdiff
Improve Dialog staleness checks
authorMikko Rasa <tdb@tdb.fi>
Wed, 25 Sep 2019 18:44:04 +0000 (21:44 +0300)
committerMikko Rasa <tdb@tdb.fi>
Wed, 25 Sep 2019 18:46:34 +0000 (21:46 +0300)
Buttons may be activated by a navigation event.  There's now a protected
function that derived classes can call if they implement custom mechanisms
for producing a response.

source/dialog.cpp
source/dialog.h

index 0b22e9874a8d1578266fe6b98a95ddca84cf3cc5..a264fbe87ce753de12b4b7c89ba76d5a849f2fa9 100644 (file)
@@ -31,15 +31,20 @@ void Dialog::set_modal(bool m)
 void Dialog::button_release(int x, int y, unsigned button)
 {
        Panel::button_release(x, y, button);
-       if(stale)
-               delete this;
+       check_stale();
 }
 
 bool Dialog::key_release(unsigned key, unsigned mod)
 {
        bool result = Panel::key_release(key, mod);
-       if(stale)
-               delete this;
+       check_stale();
+       return result;
+}
+
+bool Dialog::navigate(Navigation nav)
+{
+       bool result = Panel::navigate(nav);
+       check_stale();
        return result;
 }
 
@@ -50,6 +55,12 @@ void Dialog::response(int code)
        stale = true;
 }
 
+void Dialog::check_stale()
+{
+       if(stale)
+               delete this;
+}
+
 
 Dialog::Loader::Loader(Dialog &d, WidgetMap &wm):
        DerivedObjectLoader<Dialog, Panel::Loader>(d, wm)
index 10519b178928c495bf022ba3d0a8e40487599c5f..e910085ca19af8c0ae3c0cd49f927827ebcf6fe1 100644 (file)
@@ -43,8 +43,10 @@ public:
 
        virtual void button_release(int, int, unsigned);
        virtual bool key_release(unsigned, unsigned);
+       virtual bool navigate(Navigation);
 protected:
        void response(int);
+       void check_stale();
 
        /** Called when an action button is pressed. */
        virtual void on_response(int) { }