mp4chaps Lua script: don't clutter global environment
[ardour.git] / gtk2_ardour / editor_snapshots.cc
index d9c1489e822edb29a27869c05fc7ba9fe17e08d9..355e4a3d8888a10a003a7c3a8705885fd5e70dac 100644 (file)
 
 */
 
+
+#include <glib.h>
+#include "pbd/gstdio_compat.h"
+
+#include <glibmm.h>
+#include <glibmm/datetime.h>
+
 #include <gtkmm/liststore.h>
-#include "gtkmm2ext/choice.h"
+
+#include "ardour/filename_extensions.h"
 #include "ardour/session.h"
 #include "ardour/session_state_utils.h"
 #include "ardour/session_directory.h"
+
+#include "widgets/choice.h"
+#include "widgets/prompter.h"
+
 #include "editor_snapshots.h"
 #include "ardour_ui.h"
-#include "i18n.h"
-#include "editor.h"
+#include "pbd/i18n.h"
 #include "utils.h"
-#include "prompter.h"
 
 using namespace std;
 using namespace PBD;
 using namespace Gtk;
 using namespace ARDOUR;
+using namespace ARDOUR_UI_UTILS;
 
 EditorSnapshots::EditorSnapshots (Editor* e)
        : EditorComponent (e)
@@ -40,6 +51,7 @@ EditorSnapshots::EditorSnapshots (Editor* e)
        _model = ListStore::create (_columns);
        _display.set_model (_model);
        _display.append_column (X_("snapshot"), _columns.visible_name);
+       _display.append_column (X_("lastmod"), _columns.time_formatted);
        _display.set_size_request (75, -1);
        _display.set_headers_visible (false);
        _display.set_reorderable (false);
@@ -77,7 +89,9 @@ EditorSnapshots::selection_changed ()
                        return;
                }
 
+               _display.set_sensitive (false);
                ARDOUR_UI::instance()->load_session (_session->path(), string (snap_name));
+               _display.set_sensitive (true);
        }
 }
 
@@ -121,7 +135,7 @@ EditorSnapshots::popup_context_menu (int button, int32_t time, std::string snaps
 
        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);
 }
@@ -129,11 +143,12 @@ EditorSnapshots::popup_context_menu (int button, int32_t time, std::string snaps
 void
 EditorSnapshots::rename (std::string old_name)
 {
-       ArdourPrompter prompter(true);
+       ArdourWidgets::Prompter 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);
@@ -158,7 +173,7 @@ EditorSnapshots::remove (std::string name)
        choices.push_back (_("No, do nothing."));
        choices.push_back (_("Yes, remove it."));
 
-       Gtkmm2ext::Choice prompter (_("Remove snapshot"), prompt, choices);
+       ArdourWidgets::Choice prompter (_("Remove snapshot"), prompt, choices);
 
        if (prompter.run () == 1) {
                _session->remove_state (name);
@@ -173,10 +188,10 @@ EditorSnapshots::redisplay ()
                return;
        }
 
-       vector<sys::path> state_file_paths;
+       vector<std::string> state_file_paths;
 
        get_state_files_in_directory (_session->session_directory().root_path(),
-                                     state_file_paths);
+                                     state_file_paths);
 
        if (state_file_paths.empty()) {
                return;
@@ -202,8 +217,15 @@ EditorSnapshots::redisplay ()
                        _display.get_selection()->select(row);
                }
 
+               std::string s = Glib::build_filename (_session->path(), statename + ARDOUR::statefile_suffix);
+
+               GStatBuf gsb;
+               g_stat (s.c_str(), &gsb);
+               Glib::DateTime gdt(Glib::DateTime::create_now_local (gsb.st_mtime));
+
                row[_columns.visible_name] = display_name;
                row[_columns.real_name] = statename;
+               row[_columns.time_formatted] = gdt.format ("%F %H:%M");
        }
 }