rollback to 3428, before the mysterious removal of libs/* at 3431/3432
[ardour.git] / libs / gtkmm2ext / choice.cc
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     $Id$
19 */
20
21 #include <gtkmm/label.h>
22 #include <gtkmm2ext/choice.h>
23
24 using namespace std;
25 using namespace Gtkmm2ext;
26 using namespace sigc;
27 using namespace Gtk;
28
29 Choice::Choice (string prompt, vector<string> choices, bool center)
30 {
31         int n;
32         vector<string>::iterator i;
33         
34         if (center) {
35                 set_position (Gtk::WIN_POS_CENTER);
36         } else {
37                 set_position (Gtk::WIN_POS_MOUSE);
38         }
39
40         set_name ("ChoiceWindow");
41
42         HBox* dhbox = manage (new HBox());
43         Image* dimage = manage (new Gtk::Image(Stock::DIALOG_QUESTION, Gtk::ICON_SIZE_DIALOG));
44         Label* label = manage (new Label (prompt));
45
46         dhbox->pack_start (*dimage, true, false, 10);
47         dhbox->pack_start  (*label, true, false, 10);
48
49         get_vbox()->set_border_width (12);
50         get_vbox()->pack_start (*dhbox,  true, false);
51         
52         set_has_separator (false);
53         set_resizable (false);
54         show_all_children ();
55
56         for (n = 0, i = choices.begin(); i != choices.end(); ++i, ++n) {
57                 add_button (*i, n);
58         }
59 }
60
61 void
62 Choice::on_realize ()
63 {
64         Gtk::Window::on_realize();
65         get_window()->set_decorations (Gdk::WMDecoration (Gdk::DECOR_BORDER|Gdk::DECOR_RESIZEH));
66 }
67
68 Choice::~Choice ()
69 {
70 }