summaryrefslogtreecommitdiff
path: root/gtk2_ardour/floating_text_entry.h
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/floating_text_entry.h')
-rw-r--r--gtk2_ardour/floating_text_entry.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/gtk2_ardour/floating_text_entry.h b/gtk2_ardour/floating_text_entry.h
index 41ad7f6d35..0471a19596 100644
--- a/gtk2_ardour/floating_text_entry.h
+++ b/gtk2_ardour/floating_text_entry.h
@@ -33,12 +33,19 @@ class FloatingTextEntry : public ArdourWindow
private:
Gtk::Entry entry;
+ bool entry_changed;
+
+ /* handlers for Entry events */
bool key_press (GdkEventKey*);
+ void activated ();
+ bool button_press (GdkEventButton*);
+ void changed ();
+
+ /* handlers for window events */
+
void on_realize ();
void on_hide ();
- void activated ();
-
};
#endif // __ardour_window_h__