3499479073e86e5155bef07f1186a13bdb96fb42
[ardour.git] / libs / gtkmm2ext / gtkmm2ext / prompter.h
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;
70         bool can_accept_from_entry;
71
72         void init ();
73         void entry_activated ();
74 };
75
76 } /* namespace */
77
78 #endif  /* __gtkmm2ext_prompter_h__ */