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>
|
2022-10-18 23:22:24 -04:00
|
|
|
#include <gtkmm/comboboxtext.h>
|
2017-07-16 21:48:18 -04:00
|
|
|
#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:
|
2022-10-18 23:22:24 -04:00
|
|
|
ExportPresetSelector (bool readonly = false);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2023-02-16 18:33:28 -05:00
|
|
|
void set_manager (std::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;
|
|
|
|
|
2022-10-18 23:22:24 -04:00
|
|
|
Gtk::ComboBox& the_combo () { return combo; }
|
|
|
|
|
2017-07-01 15:11:14 -04:00
|
|
|
private:
|
2023-02-16 18:33:28 -05:00
|
|
|
typedef std::shared_ptr<ARDOUR::ExportProfileManager> ManagerPtr;
|
2022-10-18 20:28:51 -04:00
|
|
|
typedef ARDOUR::ExportPresetPtr PresetPtr;
|
|
|
|
typedef ARDOUR::ExportProfileManager::PresetList PresetList;
|
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 ();
|
2022-10-18 23:22:24 -04:00
|
|
|
void selection_changed ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2022-10-18 20:28:51 -04:00
|
|
|
ManagerPtr profile_manager;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2022-10-18 20:28:51 -04:00
|
|
|
struct PresetCols : public Gtk::TreeModelColumnRecord {
|
|
|
|
public:
|
|
|
|
Gtk::TreeModelColumn<std::string> label;
|
2022-10-18 23:22:24 -04:00
|
|
|
Gtk::TreeModelColumn<PresetPtr> preset;
|
2022-10-18 20:28:51 -04:00
|
|
|
|
|
|
|
PresetCols ()
|
|
|
|
{
|
|
|
|
add (label);
|
2022-10-18 23:22:24 -04:00
|
|
|
add (preset);
|
2022-10-18 20:28:51 -04:00
|
|
|
}
|
2008-09-29 13:01:52 -04:00
|
|
|
};
|
2022-10-18 20:28:51 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
PresetCols cols;
|
|
|
|
Glib::RefPtr<Gtk::ListStore> list;
|
|
|
|
PresetPtr current;
|
|
|
|
PresetPtr previous;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2022-10-18 23:22:24 -04:00
|
|
|
Gtk::Label label;
|
|
|
|
Gtk::ComboBox combo;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2022-10-18 20:28:51 -04:00
|
|
|
Gtk::Button save_button;
|
|
|
|
Gtk::Button remove_button;
|
|
|
|
Gtk::Button new_button;
|
|
|
|
|
|
|
|
sigc::connection select_connection;
|
2008-09-29 13:01:52 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|