015fc7b39f
- Split Configuration into RCConfiguration and SessionConfiguration; the first for options which are saved to .rc files and the second for options which are saved in a session file. - Move some options from the old `master' Configuration object into SessionConfiguration; this needs more refinement. - Reflect many RCConfiguration options in an expanded Edit->Preferences dialog; my intention is to remove the corresponding menu items eventually. git-svn-id: svn://localhost/ardour2/branches/3.0@5075 d708f5d6-7413-0410-9779-e7cbd77b26cf
56 lines
1.1 KiB
C++
56 lines
1.1 KiB
C++
#include <string>
|
|
#include <sigc++/bind.h>
|
|
#include <gtkmm/stock.h>
|
|
|
|
#include "pbd/convert.h"
|
|
#include <gtkmm2ext/utils.h>
|
|
|
|
#include "midi_port_dialog.h"
|
|
|
|
#include "i18n.h"
|
|
|
|
using namespace std;
|
|
using namespace PBD;
|
|
using namespace Gtk;
|
|
using namespace Gtkmm2ext;
|
|
using namespace sigc;
|
|
|
|
static const char* mode_strings[] = { "duplex", "output", "input", (char*) 0 };
|
|
|
|
MidiPortDialog::MidiPortDialog ()
|
|
: ArdourDialog ("Add MIDI port"),
|
|
port_label (_("Port name"))
|
|
|
|
{
|
|
vector<string> str = internationalize (PACKAGE, mode_strings);
|
|
set_popdown_strings (port_mode_combo, str);
|
|
port_mode_combo.set_active_text (str.front());
|
|
|
|
hpacker.pack_start (port_label);
|
|
hpacker.pack_start (port_name);
|
|
hpacker.pack_start (port_mode_combo);
|
|
|
|
port_label.show ();
|
|
port_name.show ();
|
|
port_mode_combo.show ();
|
|
hpacker.show ();
|
|
|
|
get_vbox()->pack_start (hpacker);
|
|
|
|
port_name.signal_activate().connect (mem_fun (*this, &MidiPortDialog::entry_activated));
|
|
|
|
add_button (Stock::CANCEL, RESPONSE_CANCEL);
|
|
add_button (Stock::ADD, RESPONSE_ACCEPT);
|
|
}
|
|
|
|
void
|
|
MidiPortDialog::entry_activated ()
|
|
{
|
|
response (RESPONSE_ACCEPT);
|
|
}
|
|
|
|
MidiPortDialog::~MidiPortDialog ()
|
|
{
|
|
|
|
}
|