summaryrefslogtreecommitdiff
path: root/gtk2_ardour/add_midi_cc_track_dialog.cc
blob: c3ccd92f3c3d9d199fcaa8486f26c524b6bfe9e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*
    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.

*/

#include <cstdio>
#include <cmath>
#include <cassert>

#include <sigc++/bind.h>
#include <gtkmm/stock.h>
#include "pbd/error.h"
#include "pbd/convert.h"

#include "utils.h"
#include "add_midi_cc_track_dialog.h"
#include "i18n.h"

using namespace Gtk;
using namespace std;
using namespace PBD;
using namespace ARDOUR;

AddMidiCCTrackDialog::AddMidiCCTrackDialog ()
	: Dialog (_("Add MIDI Controller Track"))
	, _chan_adjustment (1, 1, 16, 1, 8, 8)
	, _chan_spinner (_chan_adjustment)
	, _cc_num_adjustment (1, 1, 128, 1, 10, 10)
	, _cc_num_spinner (_cc_num_adjustment)
{
	set_name ("AddMidiCCTrackDialog");
	set_wmclass (X_("ardour_add_track_bus"), PROGRAM_NAME);
	set_position (Gtk::WIN_POS_MOUSE);
	set_resizable (false);

	_chan_spinner.set_name ("AddMidiCCTrackDialogSpinner");
	_cc_num_spinner.set_name ("AddMidiCCTrackDialogSpinner");

	HBox *chan_box = manage (new HBox());
	Label *chan_label = manage(new Label("Channel: "));
	chan_box->pack_start(*chan_label, true, true, 4);
	chan_box->pack_start(_chan_spinner, false, false, 4);
	get_vbox()->pack_start(*chan_box, true, true, 4);

	HBox* num_box = manage (new HBox());
	Label *num_label = manage(new Label("Controller: "));
	num_box->pack_start(*num_label, true, true, 4);
	num_box->pack_start(_cc_num_spinner, false, false, 4);
	get_vbox()->pack_start(*num_box, true, true, 4);

	add_button (Stock::CANCEL, RESPONSE_CANCEL);
	add_button (Stock::ADD, RESPONSE_ACCEPT);

	_chan_spinner.show();
	chan_box->show();
	chan_label->show();
	_cc_num_spinner.show();
	num_box->show();
	num_label->show();
}


Evoral::Parameter
AddMidiCCTrackDialog::parameter ()
{
	int chan   = _chan_spinner.get_value_as_int() - 1;
	int cc_num = _cc_num_spinner.get_value_as_int() - 1;

	return Evoral::Parameter(MidiCCAutomation, chan, cc_num);
}