ardour
prompter.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 1999 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 __gtkmm2ext_prompter_h__
21 #define __gtkmm2ext_prompter_h__
22 
23 #include <string>
24 #include <gtkmm/box.h>
25 #include <gtkmm/entry.h>
26 #include <gtkmm/label.h>
27 #include <gtkmm/dialog.h>
28 #include <sigc++/sigc++.h>
29 
30 #include "gtkmm2ext/visibility.h"
31 
32 namespace Gtk {
33  class Window;
34 }
35 
36 namespace Gtkmm2ext {
37 
38 class LIBGTKMM2EXT_API Prompter : public Gtk::Dialog
39 
40 {
41  public:
42  Prompter (bool modal = false);
43  Prompter (Gtk::Window& parent, bool modal = false);
44  ~Prompter () {};
45 
46  void set_prompt (std::string prompt) {
47  entryLabel.set_label (prompt);
48  }
49 
50  void set_initial_text (std::string txt) {
51  entry.set_text (txt);
52  entry.select_region (0, entry.get_text_length());
53  }
54 
55  void change_labels (std::string ok, std::string cancel);
56 
57  void get_result (std::string &str, bool strip=true);
58 
59  protected:
60  Gtk::Entry& the_entry() { return entry; }
61 
62  void on_entry_changed ();
63  void on_show ();
64 
65  private:
66  Gtk::Entry entry;
67  Gtk::HBox entryBox;
68  Gtk::Label entryLabel;
69  bool first_show;
71 
72  void init ();
73  void entry_activated ();
74 };
75 
76 } /* namespace */
77 
78 #endif /* __gtkmm2ext_prompter_h__ */
Definition: ardour_ui.h:130
LIBGTKMM2EXT_API
Gtk::Entry & the_entry()
Definition: prompter.h:60
void set_initial_text(std::string txt)
Definition: prompter.h:50
void set_prompt(std::string prompt)
Definition: prompter.h:46
Gtk::HBox entryBox
Definition: prompter.h:67
bool can_accept_from_entry
Definition: prompter.h:70
LIBGTKMM2EXT_API void init(const char *)
Definition: utils.cc:42
Gtk::Label entryLabel
Definition: prompter.h:68
Gtk::Entry entry
Definition: prompter.h:66