X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Feditor_snapshots.cc;h=ed49ef35b3c3dca02bf4b4dc6cf4a05509437a65;hb=8e3b1c17c1907417edf665e833529690644941a9;hp=3c841774af2888bbe10ad21fb50c55e6f20e3e14;hpb=536384ea4ea7d468363ff5f284a817c42083c3b5;p=ardour.git diff --git a/gtk2_ardour/editor_snapshots.cc b/gtk2_ardour/editor_snapshots.cc index 3c841774af..ed49ef35b3 100644 --- a/gtk2_ardour/editor_snapshots.cc +++ b/gtk2_ardour/editor_snapshots.cc @@ -25,7 +25,6 @@ #include "editor_snapshots.h" #include "ardour_ui.h" #include "i18n.h" -#include "editor.h" #include "utils.h" #include "prompter.h" @@ -33,6 +32,7 @@ using namespace std; using namespace PBD; using namespace Gtk; using namespace ARDOUR; +using namespace ARDOUR_UI_UTILS; EditorSnapshots::EditorSnapshots (Editor* e) : EditorComponent (e) @@ -40,7 +40,6 @@ EditorSnapshots::EditorSnapshots (Editor* e) _model = ListStore::create (_columns); _display.set_model (_model); _display.append_column (X_("snapshot"), _columns.visible_name); - _display.set_name ("SnapshotDisplay"); _display.set_size_request (75, -1); _display.set_headers_visible (false); _display.set_reorderable (false); @@ -68,7 +67,7 @@ EditorSnapshots::selection_changed () TreeModel::iterator i = _display.get_selection()->get_selected(); - Glib::ustring snap_name = (*i)[_columns.real_name]; + std::string snap_name = (*i)[_columns.real_name]; if (snap_name.length() == 0) { return; @@ -108,10 +107,10 @@ EditorSnapshots::button_press (GdkEventButton* ev) /** Pop up the snapshot display context menu. * @param button Button used to open the menu. * @param time Menu open time. - * @snapshot_name Name of the snapshot that the menu click was over. + * @param snapshot_name Name of the snapshot that the menu click was over. */ void -EditorSnapshots::popup_context_menu (int button, int32_t time, Glib::ustring snapshot_name) +EditorSnapshots::popup_context_menu (int button, int32_t time, std::string snapshot_name) { using namespace Menu_Helpers; @@ -122,19 +121,20 @@ EditorSnapshots::popup_context_menu (int button, int32_t time, Glib::ustring sna add_item_with_sensitivity (items, MenuElem (_("Remove"), sigc::bind (sigc::mem_fun (*this, &EditorSnapshots::remove), snapshot_name)), modification_allowed); - add_item_with_sensitivity (items, MenuElem (_("Rename"), sigc::bind (sigc::mem_fun (*this, &EditorSnapshots::rename), snapshot_name)), modification_allowed); + add_item_with_sensitivity (items, MenuElem (_("Rename..."), sigc::bind (sigc::mem_fun (*this, &EditorSnapshots::rename), snapshot_name)), modification_allowed); _menu.popup (button, time); } void -EditorSnapshots::rename (Glib::ustring old_name) +EditorSnapshots::rename (std::string old_name) { ArdourPrompter prompter(true); string new_name; prompter.set_name ("Prompter"); + prompter.set_title (_("Rename Snapshot")); prompter.add_button (Gtk::Stock::SAVE, Gtk::RESPONSE_ACCEPT); prompter.set_prompt (_("New name of snapshot")); prompter.set_initial_text (old_name); @@ -150,7 +150,7 @@ EditorSnapshots::rename (Glib::ustring old_name) void -EditorSnapshots::remove (Glib::ustring name) +EditorSnapshots::remove (std::string name) { vector choices; @@ -174,7 +174,7 @@ EditorSnapshots::redisplay () return; } - vector state_file_paths; + vector state_file_paths; get_state_files_in_directory (_session->session_directory().root_path(), state_file_paths);