Use labs() for long instead of abs()
[ardour.git] / gtk2_ardour / editor_snapshots.cc
index 65895f32d30bab08459a360a625a766e6daf04ee..b5224e97b2f7b72be5d2033c3899ce68a928332b 100644 (file)
@@ -1,41 +1,47 @@
 /*
-    Copyright (C) 2000-2009 Paul Davis
-
-    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., 675 Mass Ave, Cambridge, MA 02139, USA.
-
-*/
+ * Copyright (C) 2009-2012 Carl Hetherington <carl@carlh.net>
+ * Copyright (C) 2009-2012 David Robillard <d@drobilla.net>
+ * Copyright (C) 2009-2016 Paul Davis <paul@linuxaudiosystems.com>
+ * Copyright (C) 2014-2019 Robin Gareus <robin@gareus.org>
+ * Copyright (C) 2018 Ben Loftis <ben@harrisonconsoles.com>
+ *
+ * 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.
+ */
 
 
 #include <glib.h>
-#include <glib/gstdio.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 "utils.h"
-#include "prompter.h"
+
+#include "pbd/i18n.h"
 
 using namespace std;
 using namespace PBD;
@@ -46,18 +52,18 @@ using namespace ARDOUR_UI_UTILS;
 EditorSnapshots::EditorSnapshots (Editor* e)
        : EditorComponent (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);
-       _scroller.add (_display);
+       _snapshot_model = ListStore::create (_columns);
+       _snapshot_display.set_model (_snapshot_model);
+       _snapshot_display.append_column (_("Snapshot (click to load)"), _columns.visible_name);
+       _snapshot_display.append_column (_("Modified Date"), _columns.time_formatted);
+       _snapshot_display.set_size_request (75, -1);
+       _snapshot_display.set_headers_visible (true);
+       _snapshot_display.set_reorderable (false);
+       _scroller.add (_snapshot_display);
        _scroller.set_policy (Gtk::POLICY_NEVER, Gtk::POLICY_AUTOMATIC);
 
-       _display.get_selection()->signal_changed().connect (sigc::mem_fun(*this, &EditorSnapshots::selection_changed));
-       _display.signal_button_press_event().connect (sigc::mem_fun (*this, &EditorSnapshots::button_press), false);
+       _snapshot_display.get_selection()->signal_changed().connect (sigc::mem_fun(*this, &EditorSnapshots::selection_changed));
+       _snapshot_display.signal_button_press_event().connect (sigc::mem_fun (*this, &EditorSnapshots::button_press), false);
 }
 
 void
@@ -68,48 +74,50 @@ EditorSnapshots::set_session (Session* s)
        redisplay ();
 }
 
-/** A new snapshot has been selected.
- */
+/* A new snapshot has been selected. */
 void
 EditorSnapshots::selection_changed ()
 {
-       if (_display.get_selection()->count_selected_rows() > 0) {
+       if (_snapshot_display.get_selection()->count_selected_rows() == 0) {
+               return;
+       }
 
-               TreeModel::iterator i = _display.get_selection()->get_selected();
+       TreeModel::iterator i = _snapshot_display.get_selection()->get_selected();
 
-               std::string snap_name = (*i)[_columns.real_name];
+       std::string snap_name = (*i)[_columns.real_name];
 
-               if (snap_name.length() == 0) {
-                       return;
-               }
-
-               if (_session->snap_name() == snap_name) {
-                       return;
-               }
+       if (snap_name.length() == 0) {
+               return;
+       }
 
-               ARDOUR_UI::instance()->load_session (_session->path(), string (snap_name));
+       if (_session->snap_name() == snap_name) {
+               return;
        }
+
+       _snapshot_display.set_sensitive (false);
+       ARDOUR_UI::instance()->load_session (_session->path(), string (snap_name));
+       _snapshot_display.set_sensitive (true);
 }
 
 bool
 EditorSnapshots::button_press (GdkEventButton* ev)
 {
        if (ev->button == 3) {
-               /* Right-click on the snapshot list. Work out which snapshot it
-                  was over. */
+               /* Right-click on the snapshot list.
+                * Work out which snapshot it was over.
+                */
                Gtk::TreeModel::Path path;
                Gtk::TreeViewColumn* col;
                int cx;
                int cy;
-               _display.get_path_at_pos ((int) ev->x, (int) ev->y, path, col, cx, cy);
-               Gtk::TreeModel::iterator iter = _model->get_iter (path);
+               _snapshot_display.get_path_at_pos ((int) ev->x, (int) ev->y, path, col, cx, cy);
+               Gtk::TreeModel::iterator iter = _snapshot_model->get_iter (path);
                if (iter) {
                        Gtk::TreeModel::Row row = *iter;
                        popup_context_menu (ev->button, ev->time, row[_columns.real_name]);
                }
                return true;
        }
-
        return false;
 }
 
@@ -139,7 +147,7 @@ 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;
 
@@ -169,7 +177,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);
@@ -187,7 +195,7 @@ EditorSnapshots::redisplay ()
        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;
@@ -195,12 +203,12 @@ EditorSnapshots::redisplay ()
 
        vector<string> state_file_names (get_file_names_no_extension(state_file_paths));
 
-       _model->clear ();
+       _snapshot_model->clear ();
 
        for (vector<string>::iterator i = state_file_names.begin(); i != state_file_names.end(); ++i)
        {
                string statename = (*i);
-               TreeModel::Row row = *(_model->append());
+               TreeModel::Row row = *(_snapshot_model->append());
 
                /* this lingers on in case we ever want to change the visible
                   name of the snapshot.
@@ -210,7 +218,7 @@ EditorSnapshots::redisplay ()
                display_name = statename;
 
                if (statename == _session->snap_name()) {
-                       _display.get_selection()->select(row);
+                       _snapshot_display.get_selection()->select(row);
                }
 
                std::string s = Glib::build_filename (_session->path(), statename + ARDOUR::statefile_suffix);