Merged with trunk R1705.
[ardour.git] / libs / gtkmm2ext / gtkmm2ext / focus_entry.h
1 #ifndef __gtkmm2ext_focus_entry_h__
2 #define __gtkmm2ext_focus_entry_h__
3
4 #include <gtkmm/entry.h>
5
6 namespace Gtkmm2ext {
7
8 class FocusEntry : public Gtk::Entry
9 {
10   public:
11         FocusEntry ();
12         
13   protected:
14         bool on_button_press_event (GdkEventButton*);
15         bool on_button_release_event (GdkEventButton*);
16   private:
17         bool next_release_selects;
18 };
19
20 }
21
22 #endif /* __gtkmm2ext_focus_entry_h__ */