ardour
popup.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 1998-99 Paul Barton-Davis
3 
4  This program is free software; you can redistribute it and/or modify
5  it under the terms of the GNU General Public License as published by
6  the Free Software Foundation; either version 2 of the License, or
7  (at your option) any later version.
8 
9  This program is distributed in the hope that it will be useful,
10  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  GNU General Public License for more details.
13 
14  You should have received a copy of the GNU General Public License
15  along with this program; if not, write to the Free Software
16  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 
18 */
19 
20 #ifndef __qui_popup_h__
21 #define __qui_popup_h__
22 
23 #ifdef interface
24 #undef interface
25 #endif
26 
27 #include <string>
28 #include <gtkmm.h>
29 
30 #include <pbd/touchable.h>
31 
32 #include "gtkmm2ext/visibility.h"
33 
34 namespace Gtkmm2ext {
35 
36 class LIBGTKMM2EXT_API PopUp : public Gtk::Window, public Touchable
37 {
38  public:
39  PopUp (Gtk::WindowPosition pos, unsigned int show_for_msecs = 0,
40  bool delete_on_hide = false);
41  virtual ~PopUp ();
42  void touch ();
43  void remove ();
44  void set_text (std::string);
45  void set_name (std::string);
46  gint button_click (GdkEventButton *);
47 
48  bool on_delete_event (GdkEventAny* );
49 
50  protected:
51  void on_realize ();
52 
53  private:
54  Gtk::Label label;
55  std::string my_text;
56  gint timeout;
57  static gint remove_prompt_timeout (void *);
59  unsigned int popdown_time;
60 
61 };
62 
63 } /* namespace */
64 
65 #endif // __qui_popup_h__
std::string my_text
Definition: popup.h:55
unsigned int popdown_time
Definition: popup.h:59
Gtk::Label label
Definition: popup.h:54
LIBGTKMM2EXT_API
bool delete_on_hide
Definition: popup.h:58
gint timeout
Definition: popup.h:56