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__ */
|