Initial revision
[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     $Id$
19 */
20
21 #ifndef __gtkmm2ext_prompter_h__
22 #define __gtkmm2ext_prompter_h__
23
24 #include <string>
25 #include <gtkmm.h>
26 #include <sigc++/sigc++.h>
27
28 namespace Gtkmm2ext {
29
30 class Prompter : public Gtk::Window
31
32 {
33   public:
34         Prompter (bool modal = false);
35         ~Prompter () {};
36
37         void set_prompt (std::string prompt) {
38                 entryLabel.set_label (prompt);
39         }
40
41         void set_initial_text (std::string txt) {
42                 entry.set_text (txt);
43                 entry.select_region (0, entry.get_text_length());
44         }
45
46         void change_labels (std::string ok, std::string cancel);
47
48         enum PrompterStatus {
49                 entered,
50                 cancelled
51         };
52
53         PrompterStatus status;
54         void get_result (std::string &str);
55
56         /* the prompter will send a `done' signal when it is finished.
57            the "caller" can then check `status' and if it wants to
58            can then call `get_result()'.
59         */
60
61         sigc::signal<void> done;
62
63   protected:
64         Gtk::Entry& the_entry() { return entry; }
65
66   private:
67         Gtk::VBox packer;
68         Gtk::HBox buttonBox;
69         Gtk::Entry entry;
70         Gtk::VBox entryBox;
71         Gtk::Label entryLabel;
72         Gtk::Button ok;
73         Gtk::Button cancel;
74
75         void activated ();
76         void cancel_click ();
77
78         bool deleted (GdkEventAny *);
79
80         void on_realize ();
81         void on_map ();
82 };
83
84 } /* namespace */
85
86 #endif  /* __gtkmm2ext_prompter_h__ */