got ardour_dialog compiling
[ardour.git] / gtk2_ardour / add_route_dialog.cc
1 /*
2     Copyright (C) 2003 Paul 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 <cstdio>
22 #include <cmath>
23
24 #include <sigc++/bind.h>
25
26 #include <gtkmm2ext/utils.h>
27
28 #include "utils.h"
29 #include "add_route_dialog.h"
30 #include "i18n.h"
31
32 using namespace Gtk;
33 using namespace Gtkmm2ext;
34 using namespace sigc;
35
36 extern std::vector<string> channel_combo_strings;
37
38 AddRouteDialog::AddRouteDialog ()
39         : ArdourDialog ("add route dialog"),
40           ok_button (_("OK")),
41           cancel_button (_("Cancel")),
42           track_button (_("Tracks")),
43           bus_button (_("Busses")),
44           routes_adjustment (1, 1, 32, 1, 4),
45           routes_spinner (routes_adjustment)
46 {
47         set_name ("AddRouteDialog");
48         set_title (_("ardour: add track/bus"));
49         set_wmclass (X_("ardour_add_track_bus"), "Ardour");
50         set_position (Gtk::WIN_POS_MOUSE);
51         set_keyboard_input (true);
52
53         name_template_entry.set_name ("AddRouteDialogNameTemplateEntry");
54         track_button.set_name ("AddRouteDialogRadioButton");
55         bus_button.set_name ("AddRouteDialogRadioButton");
56         ok_button.set_name ("AddRouteDialogButton");
57         cancel_button.set_name ("AddRouteDialogButton");
58         routes_spinner.set_name ("AddRouteDialogSpinner");
59         
60         bus_button.set_group (track_button.get_group());
61         track_button.set_active (true);
62
63         HBox *hbrb = manage (new HBox);
64
65         hbrb->set_spacing (6);
66         hbrb->pack_start (*(manage (new Label (_("Add")))), false, false);
67         hbrb->pack_start (routes_spinner, false, false);
68         hbrb->pack_start (track_button, false, false);
69         hbrb->pack_start (bus_button, false, false);
70
71         set_popdown_strings (channel_combo, channel_combo_strings);
72         channel_combo.set_name (X_("ChannelCountSelector"));
73         
74         VBox *vbcc = manage (new VBox);
75
76         vbcc->set_spacing (6);
77         vbcc->pack_start (*(manage (new Label ("Channel configuration"))), false, false);
78         vbcc->pack_start (channel_combo, false, false);
79
80 #if NOT_USEFUL_YET
81         HBox *hbnt = manage (new HBox);
82
83         hbnt->pack_start (*(manage (new Label (_("Name (template)")))), false, false);
84         hbnt->pack_start (name_template_entry, true, true);
85 #endif
86
87         HBox* hbbut = manage (new HBox);
88
89         set_size_request_to_display_given_text (ok_button, _("Cancel"), 20, 15); // this is cancel on purpose
90         set_size_request_to_display_given_text (cancel_button, _("Cancel"), 20, 15);
91         
92         hbbut->set_homogeneous (true);
93         hbbut->set_spacing (6);
94         hbbut->pack_end (cancel_button, false, false);  
95         hbbut->pack_end (ok_button, false, false);
96
97         HBox* hbbutouter = manage (new HBox);
98         hbbutouter->set_border_width (12);
99         hbbutouter->pack_end (*hbbut, false, false);
100
101         VBox* vb2 = manage (new VBox);
102
103         vb2->set_border_width (12);
104         vb2->set_spacing (6);
105         vb2->pack_start (*hbrb, false, false);
106         vb2->pack_start (*vbcc, false, false);
107 #if NOT_USEFUL_YET
108         vb2->pack_start (*hbnt, false, false);
109 #endif
110         vb2->pack_start (*hbbutouter, false, false);
111
112         add (*vb2);
113
114         // delete_event.connect (mem_fun(*this, &ArdourDialog::wm_close_event));
115         ok_button.signal_clicked().connect (bind (mem_fun(*this,  &ArdourDialog::stop), 0));
116         cancel_button.signal_clicked().connect (bind (mem_fun(*this, &ArdourDialog::stop), 1));
117 }
118
119 AddRouteDialog::~AddRouteDialog ()
120 {
121 }
122
123 bool
124 AddRouteDialog::track ()
125 {
126         return track_button.get_active ();
127 }
128
129 string
130 AddRouteDialog::name_template ()
131 {
132         return name_template_entry.get_text ();
133 }
134
135 int
136 AddRouteDialog::count ()
137 {
138         return (int) floor (routes_adjustment.get_value ());
139 }
140
141 int
142 AddRouteDialog::channels ()
143 {
144         return channel_combo_get_channel_count (channel_combo);
145 }