2007-04-14 14:39:01 -04:00
|
|
|
/*
|
|
|
|
Copyright (C) 2000-2007 Paul Davis
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
#ifndef __gtk_ardour_add_route_dialog_h__
|
|
|
|
#define __gtk_ardour_add_route_dialog_h__
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2005-09-25 16:33:00 -04:00
|
|
|
#include <gtkmm/entry.h>
|
2005-11-27 16:17:41 -05:00
|
|
|
#include <gtkmm/dialog.h>
|
2006-04-19 16:42:17 -04:00
|
|
|
#include <gtkmm/frame.h>
|
2005-09-25 16:33:00 -04:00
|
|
|
#include <gtkmm/radiobutton.h>
|
|
|
|
#include <gtkmm/adjustment.h>
|
|
|
|
#include <gtkmm/spinbutton.h>
|
|
|
|
#include <gtkmm/button.h>
|
2005-09-26 10:33:53 -04:00
|
|
|
#include <gtkmm/comboboxtext.h>
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-01-19 00:01:43 -05:00
|
|
|
#include <ardour/types.h>
|
2006-08-11 03:15:30 -04:00
|
|
|
#include <ardour/data_type.h>
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-11-27 16:17:41 -05:00
|
|
|
class AddRouteDialog : public Gtk::Dialog
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
AddRouteDialog ();
|
|
|
|
~AddRouteDialog ();
|
|
|
|
|
|
|
|
bool track ();
|
2006-08-11 03:15:30 -04:00
|
|
|
ARDOUR::DataType type();
|
2005-09-25 14:42:24 -04:00
|
|
|
std::string name_template ();
|
|
|
|
int channels ();
|
|
|
|
int count ();
|
2006-01-19 00:01:43 -05:00
|
|
|
ARDOUR::TrackMode mode();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
Gtk::Entry name_template_entry;
|
|
|
|
Gtk::RadioButton track_button;
|
|
|
|
Gtk::RadioButton bus_button;
|
|
|
|
Gtk::Adjustment routes_adjustment;
|
|
|
|
Gtk::SpinButton routes_spinner;
|
2005-09-26 10:33:53 -04:00
|
|
|
Gtk::ComboBoxText channel_combo;
|
2006-01-19 00:01:43 -05:00
|
|
|
Gtk::ComboBoxText track_mode_combo;
|
2006-04-19 16:42:17 -04:00
|
|
|
Gtk::Frame aframe;
|
|
|
|
Gtk::Frame ccframe;
|
2006-01-19 00:01:43 -05:00
|
|
|
|
|
|
|
void track_type_chosen ();
|
2005-09-25 14:42:24 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __gtk_ardour_add_route_dialog_h__ */
|