NO-OP: whitespace
This commit is contained in:
parent
fc47da6511
commit
abdadb0906
@ -25,7 +25,7 @@
|
|||||||
|
|
||||||
class FloatingTextEntry : public Gtk::Window
|
class FloatingTextEntry : public Gtk::Window
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
FloatingTextEntry (Gtk::Window* parent, const std::string& initial_contents);
|
FloatingTextEntry (Gtk::Window* parent, const std::string& initial_contents);
|
||||||
|
|
||||||
/* 1st argument to handler is the new text
|
/* 1st argument to handler is the new text
|
||||||
@ -36,24 +36,24 @@ class FloatingTextEntry : public Gtk::Window
|
|||||||
*/
|
*/
|
||||||
sigc::signal2<void,std::string,int> use_text;
|
sigc::signal2<void,std::string,int> use_text;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Gtk::Entry entry;
|
Gtk::Entry entry;
|
||||||
bool entry_changed;
|
bool entry_changed;
|
||||||
bool by_popup_menu;
|
bool by_popup_menu;
|
||||||
|
|
||||||
/* handlers for Entry events */
|
/* handlers for Entry events */
|
||||||
bool entry_focus_out (GdkEventFocus*);
|
bool entry_focus_out (GdkEventFocus*);
|
||||||
bool key_press (GdkEventKey*);
|
bool key_press (GdkEventKey*);
|
||||||
bool key_release (GdkEventKey*);
|
bool key_release (GdkEventKey*);
|
||||||
void activated ();
|
void activated ();
|
||||||
bool button_press (GdkEventButton*);
|
bool button_press (GdkEventButton*);
|
||||||
void changed ();
|
void changed ();
|
||||||
void populate_popup (Gtk::Menu*);
|
void populate_popup (Gtk::Menu*);
|
||||||
|
|
||||||
/* handlers for window events */
|
/* handlers for window events */
|
||||||
|
|
||||||
void on_realize ();
|
void on_realize ();
|
||||||
void on_hide ();
|
void on_hide ();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // __ardour_window_h__
|
#endif // __ardour_window_h__
|
||||||
|
Loading…
Reference in New Issue
Block a user