2008-09-29 13:01:52 -04:00
|
|
|
/*
|
2019-08-02 17:26:43 -04:00
|
|
|
* Copyright (C) 2008-2011 Sakari Bergen <sakari.bergen@beatwaves.net>
|
|
|
|
* Copyright (C) 2009 David Robillard <d@drobilla.net>
|
|
|
|
* Copyright (C) 2017 Robin Gareus <robin@gareus.org>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2008-09-29 13:01:52 -04:00
|
|
|
|
|
|
|
#ifndef __export_preset_selector_h__
|
|
|
|
#define __export_preset_selector_h__
|
|
|
|
|
|
|
|
#include <sigc++/signal.h>
|
2017-07-16 21:48:18 -04:00
|
|
|
|
|
|
|
#include <gtkmm/box.h>
|
|
|
|
#include <gtkmm/button.h>
|
|
|
|
#include <gtkmm/comboboxentry.h>
|
|
|
|
#include <gtkmm/label.h>
|
|
|
|
#include <gtkmm/liststore.h>
|
|
|
|
#include <gtkmm/treemodel.h>
|
2008-09-29 13:01:52 -04:00
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/export_profile_manager.h"
|
2008-09-29 13:01:52 -04:00
|
|
|
|
|
|
|
class ExportPresetSelector : public Gtk::HBox
|
|
|
|
{
|
2017-07-01 15:11:14 -04:00
|
|
|
public:
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
ExportPresetSelector ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
void set_manager (boost::shared_ptr<ARDOUR::ExportProfileManager> manager);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
sigc::signal<void> CriticalSelectionChanged;
|
|
|
|
|
2017-07-01 15:11:14 -04:00
|
|
|
private:
|
2008-09-29 13:01:52 -04:00
|
|
|
|
|
|
|
typedef boost::shared_ptr<ARDOUR::ExportProfileManager> ManagerPtr;
|
2011-06-11 10:14:24 -04:00
|
|
|
typedef ARDOUR::ExportPresetPtr PresetPtr;
|
2008-09-29 13:01:52 -04:00
|
|
|
typedef ARDOUR::ExportProfileManager::PresetList PresetList;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
ManagerPtr profile_manager;
|
|
|
|
sigc::connection select_connection;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
void sync_with_manager ();
|
|
|
|
void update_selection ();
|
2011-03-12 16:28:58 -05:00
|
|
|
void create_new ();
|
2008-09-29 13:01:52 -04:00
|
|
|
void save_current ();
|
|
|
|
void remove_current ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
struct PresetCols : public Gtk::TreeModelColumnRecord
|
|
|
|
{
|
2017-07-01 15:11:14 -04:00
|
|
|
public:
|
2008-09-29 13:01:52 -04:00
|
|
|
Gtk::TreeModelColumn<PresetPtr> preset;
|
2010-09-14 12:51:02 -04:00
|
|
|
Gtk::TreeModelColumn<std::string> label;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
PresetCols () { add (preset); add (label); }
|
|
|
|
};
|
|
|
|
PresetCols cols;
|
|
|
|
Glib::RefPtr<Gtk::ListStore> list;
|
|
|
|
PresetPtr current;
|
|
|
|
PresetPtr previous;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
Gtk::Label label;
|
|
|
|
Gtk::ComboBoxEntry entry;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
Gtk::Button save_button;
|
|
|
|
Gtk::Button remove_button;
|
|
|
|
Gtk::Button new_button;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|