summaryrefslogtreecommitdiff
path: root/gtk2_ardour/new_plugin_preset_dialog.cc
blob: 1fd2742ed28f52d1e4045b16c8af8faf4593d0ab (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
86
87
88
89
90
91
92
93
94
/*
 * Copyright (C) 2010-2011 Carl Hetherington <carl@carlh.net>
 * Copyright (C) 2011-2016 Paul Davis <paul@linuxaudiosystems.com>
 *
 * 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.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#include <gtkmm/stock.h>
#include "new_plugin_preset_dialog.h"
#include "pbd/i18n.h"

using namespace std;
using namespace Gtk;

NewPluginPresetDialog::NewPluginPresetDialog (boost::shared_ptr<ARDOUR::Plugin> p, std::string title, bool favorite_btn)
	: ArdourDialog (title)
	, _replace (_("Replace existing preset with this name"))
{
	HBox* h = manage (new HBox);
	h->set_spacing (6);
	h->pack_start (*manage (new Label (_("Name of new preset"))));
	h->pack_start (_name);

	get_vbox()->set_spacing (6);
	get_vbox()->pack_start (*h);

	get_vbox()->pack_start (_replace);

	add_button (Stock::CANCEL, RESPONSE_CANCEL);
	if (favorite_btn) {
		add_button (_("New Favorite Only"), RESPONSE_NO);
	}
	_add = add_button (Stock::ADD, RESPONSE_ACCEPT);
	set_default_response (RESPONSE_ACCEPT);
	_name.set_activates_default(true);


	show_all ();

	_presets = p->get_presets ();

	_name.signal_changed().connect (sigc::mem_fun (*this, &NewPluginPresetDialog::setup_sensitivity));
	_replace.signal_toggled().connect (sigc::mem_fun (*this, &NewPluginPresetDialog::setup_sensitivity));

	setup_sensitivity ();
}

void
NewPluginPresetDialog::setup_sensitivity ()
{
	if (_name.get_text().empty()) {
		_replace.set_sensitive (false);
		_add->set_sensitive (false);
		return;
	}

	vector<ARDOUR::Plugin::PresetRecord>::const_iterator i = _presets.begin ();
	while (i != _presets.end() && i->label != _name.get_text()) {
		++i;
	}

	if (i != _presets.end ()) {
		_replace.set_sensitive (true);
		_add->set_sensitive (_replace.get_active ());
	} else {
		_replace.set_sensitive (false);
		_add->set_sensitive (true);
	}
}

string
NewPluginPresetDialog::name () const
{
	return _name.get_text ();
}

bool
NewPluginPresetDialog::replace () const
{
	return _replace.get_active ();
}