Fix yet another oversight for the windows icon file update
[ardour.git] / gtk2_ardour / editor_snapshots.h
index 1a17e6de3016931a8379e9e578f330bb16f0399e..9f539145ce001d6ea3cbb498462e3979be7d3110 100644 (file)
 
 */
 
+#ifndef __gtk_ardour_editor_snapshots_h__
+#define __gtk_ardour_editor_snapshots_h__
+
 #include <gtkmm/widget.h>
 #include <gtkmm/scrolledwindow.h>
 #include <gtkmm/treemodel.h>
 #include <gtkmm/treeview.h>
 #include "editor_component.h"
 
-class EditorSnapshots : public EditorComponent
+class EditorSnapshots : public EditorComponent, public ARDOUR::SessionHandlePtr
 {
 public:
        EditorSnapshots (Editor *);
 
-       void connect_to_session (ARDOUR::Session *);
+       void set_session (ARDOUR::Session *);
 
        Gtk::Widget& widget () {
                return _scroller;
@@ -44,9 +47,11 @@ private:
                Columns () {
                        add (visible_name);
                        add (real_name);
+                       add (time_formatted);
                }
-               Gtk::TreeModelColumn<Glib::ustring> visible_name;
-               Gtk::TreeModelColumn<Glib::ustring> real_name;
+               Gtk::TreeModelColumn<std::string> visible_name;
+               Gtk::TreeModelColumn<std::string> real_name;
+               Gtk::TreeModelColumn<std::string> time_formatted;
        };
 
        Columns _columns;
@@ -56,7 +61,9 @@ private:
 
        bool button_press (GdkEventButton *);
        void selection_changed ();
-       void popup_context_menu (int, int32_t, Glib::ustring);
-       void remove (Glib::ustring);
-       void rename (Glib::ustring);
+       void popup_context_menu (int, int32_t, std::string);
+       void remove (std::string);
+       void rename (std::string);
 };
+
+#endif // __gtk_ardour_editor_snapshots_h__