2009-07-03 19:54:57 -04:00
|
|
|
/*
|
2019-08-02 17:26:43 -04:00
|
|
|
* Copyright (C) 2009-2010 Carl Hetherington <carl@carlh.net>
|
|
|
|
* Copyright (C) 2009-2010 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
* Copyright (C) 2015-2019 Robin Gareus <robin@gareus.org>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2009-07-03 19:54:57 -04:00
|
|
|
|
2015-12-07 17:08:19 -05:00
|
|
|
#ifndef __gtk_ardour_editor_snapshots_h__
|
|
|
|
#define __gtk_ardour_editor_snapshots_h__
|
|
|
|
|
2009-07-03 19:54:57 -04:00
|
|
|
#include <gtkmm/widget.h>
|
|
|
|
#include <gtkmm/scrolledwindow.h>
|
|
|
|
#include <gtkmm/treemodel.h>
|
|
|
|
#include <gtkmm/treeview.h>
|
|
|
|
#include "editor_component.h"
|
|
|
|
|
2010-07-19 17:47:07 -04:00
|
|
|
class EditorSnapshots : public EditorComponent, public ARDOUR::SessionHandlePtr
|
2009-07-03 19:54:57 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
EditorSnapshots (Editor *);
|
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
void set_session (ARDOUR::Session *);
|
2009-07-03 19:54:57 -04:00
|
|
|
|
|
|
|
Gtk::Widget& widget () {
|
2019-04-12 12:51:00 -04:00
|
|
|
return _scroller;
|
2009-07-03 19:54:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void redisplay ();
|
|
|
|
|
|
|
|
private:
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2019-04-12 12:51:00 -04:00
|
|
|
Gtk::ScrolledWindow _scroller;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-07-03 19:54:57 -04:00
|
|
|
struct Columns : public Gtk::TreeModel::ColumnRecord {
|
2009-10-14 12:10:01 -04:00
|
|
|
Columns () {
|
2009-07-03 19:54:57 -04:00
|
|
|
add (visible_name);
|
|
|
|
add (real_name);
|
2015-09-16 16:17:02 -04:00
|
|
|
add (time_formatted);
|
2009-07-03 19:54:57 -04:00
|
|
|
}
|
2010-09-14 12:51:02 -04:00
|
|
|
Gtk::TreeModelColumn<std::string> visible_name;
|
|
|
|
Gtk::TreeModelColumn<std::string> real_name;
|
2015-09-16 16:17:02 -04:00
|
|
|
Gtk::TreeModelColumn<std::string> time_formatted;
|
2009-07-03 19:54:57 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
Columns _columns;
|
2019-04-12 12:51:00 -04:00
|
|
|
Glib::RefPtr<Gtk::ListStore> _snapshot_model;
|
|
|
|
Gtk::TreeView _snapshot_display;
|
2009-07-03 19:54:57 -04:00
|
|
|
Gtk::Menu _menu;
|
|
|
|
|
|
|
|
bool button_press (GdkEventButton *);
|
|
|
|
void selection_changed ();
|
2010-09-14 12:51:02 -04:00
|
|
|
void popup_context_menu (int, int32_t, std::string);
|
|
|
|
void remove (std::string);
|
|
|
|
void rename (std::string);
|
2009-07-03 19:54:57 -04:00
|
|
|
};
|
2015-12-07 17:08:19 -05:00
|
|
|
|
|
|
|
#endif // __gtk_ardour_editor_snapshots_h__
|