summaryrefslogtreecommitdiff
path: root/gtk2_ardour/template_dialog.h
diff options
context:
space:
mode:
authorJohannes Mueller <github@johannes-mueller.org>2017-07-07 19:53:45 +0200
committerRobin Gareus <robin@gareus.org>2017-07-12 16:15:03 +0200
commita73a5e921578f03469ed6c19aa55694d6e38ca9d (patch)
tree249257d43309f9aa365227e8c7c740ac9ba778fc /gtk2_ardour/template_dialog.h
parenta933cd58bc6f78e6fafeaedf255a1f2704616746 (diff)
First draft of import and export templates
Don't use this now, except for testing as the archive format will change. TBD: * error handling * check template would be overwritten by import * dinstinguish between session and track templates
Diffstat (limited to 'gtk2_ardour/template_dialog.h')
-rw-r--r--gtk2_ardour/template_dialog.h29
1 files changed, 28 insertions, 1 deletions
diff --git a/gtk2_ardour/template_dialog.h b/gtk2_ardour/template_dialog.h
index da673826da..470d5b92a5 100644
--- a/gtk2_ardour/template_dialog.h
+++ b/gtk2_ardour/template_dialog.h
@@ -24,14 +24,17 @@
#include <vector>
#include <gtkmm/liststore.h>
+#include <gtkmm/progressbar.h>
#include <gtkmm/treeview.h>
#include "ardour_dialog.h"
+#include "progress_reporter.h"
namespace ARDOUR {
struct TemplateInfo;
}
+class XMLTree;
class XMLNode;
class TemplateDialog : public ArdourDialog
@@ -41,7 +44,8 @@ public:
~TemplateDialog () {}
};
-class TemplateManager : public Gtk::HBox
+class TemplateManager : public Gtk::HBox,
+ public ProgressReporter
{
public:
virtual ~TemplateManager () {}
@@ -62,6 +66,13 @@ protected:
virtual void rename_template (Gtk::TreeModel::iterator& item, const Glib::ustring& new_name) = 0;
virtual void delete_selected_template () = 0;
+ void export_all_templates ();
+ void import_template_set ();
+
+ virtual std::string templates_dir () const = 0;
+
+ virtual bool adjust_xml_tree (XMLTree& tree, const std::string& old_name, const std::string& new_name) const = 0;
+
bool adjust_plugin_paths (XMLNode* node, const std::string& name, const std::string& new_name) const;
struct SessionTemplateColumns : public Gtk::TreeModel::ColumnRecord {
@@ -83,6 +94,14 @@ protected:
Gtk::Button _remove_button;
Gtk::Button _rename_button;
+
+ Gtk::Button _export_all_templates_button;
+ Gtk::Button _import_template_set_button;
+
+ Gtk::ProgressBar _progress_bar;
+ std::string _current_action;
+
+ void update_progress_gui (float p);
};
class SessionTemplateManager : public TemplateManager
@@ -96,6 +115,10 @@ public:
private:
void rename_template (Gtk::TreeModel::iterator& item, const Glib::ustring& new_name);
void delete_selected_template ();
+
+ std::string templates_dir () const;
+
+ bool adjust_xml_tree (XMLTree& tree, const std::string& old_name, const std::string& new_name) const;
};
@@ -110,6 +133,10 @@ public:
private:
void rename_template (Gtk::TreeModel::iterator& item, const Glib::ustring& new_name);
void delete_selected_template ();
+
+ std::string templates_dir () const;
+
+ bool adjust_xml_tree (XMLTree& tree, const std::string& old_name, const std::string& new_name) const;
};