2009-07-03 18:42:22 -04:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2000-2009 Paul Davis
|
2009-07-03 18:42:22 -04:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
*/
|
2009-11-12 00:47:05 -05:00
|
|
|
#ifndef __gtk_ardour_editor_regions_h__
|
|
|
|
#define __gtk_ardour_editor_regions_h__
|
2009-07-03 18:42:22 -04:00
|
|
|
|
|
|
|
#include "editor_component.h"
|
|
|
|
|
2010-07-19 17:47:07 -04:00
|
|
|
class EditorRegions : public EditorComponent, public ARDOUR::SessionHandlePtr
|
2009-07-03 18:42:22 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
EditorRegions (Editor *);
|
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
void set_session (ARDOUR::Session *);
|
2009-07-03 18:42:22 -04:00
|
|
|
|
|
|
|
Gtk::Widget& widget () {
|
|
|
|
return _scroller;
|
|
|
|
}
|
|
|
|
|
|
|
|
void clear ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-07-03 18:42:22 -04:00
|
|
|
void toggle_full ();
|
|
|
|
void toggle_show_auto_regions ();
|
|
|
|
void reset_sort_direction (bool);
|
|
|
|
void reset_sort_type (Editing::RegionListSortType, bool);
|
|
|
|
void set_selected (RegionSelection &);
|
|
|
|
void selection_mapover (sigc::slot<void,boost::shared_ptr<ARDOUR::Region> >);
|
|
|
|
boost::shared_ptr<ARDOUR::Region> get_dragged_region ();
|
|
|
|
boost::shared_ptr<ARDOUR::Region> get_single_selection ();
|
|
|
|
Editing::RegionListSortType sort_type () const {
|
|
|
|
return _sort_type;
|
|
|
|
}
|
|
|
|
void redisplay ();
|
|
|
|
|
|
|
|
void suspend_redisplay () {
|
|
|
|
_no_redisplay = true;
|
|
|
|
}
|
|
|
|
void resume_redisplay () {
|
|
|
|
_no_redisplay = false;
|
|
|
|
redisplay ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void block_change_connection (bool b) {
|
|
|
|
_change_connection.block (b);
|
|
|
|
}
|
|
|
|
|
|
|
|
void unselect_all () {
|
|
|
|
_display.get_selection()->unselect_all ();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-07-03 18:42:22 -04:00
|
|
|
struct Columns : public Gtk::TreeModel::ColumnRecord {
|
|
|
|
Columns () {
|
|
|
|
add (name);
|
|
|
|
add (region);
|
|
|
|
add (color_);
|
|
|
|
add (start);
|
|
|
|
add (end);
|
|
|
|
add (length);
|
|
|
|
add (sync);
|
|
|
|
add (fadein);
|
|
|
|
add (fadeout);
|
|
|
|
add (locked);
|
|
|
|
add (glued);
|
|
|
|
add (muted);
|
|
|
|
add (opaque);
|
|
|
|
add (used);
|
|
|
|
add (path);
|
2010-06-28 13:25:32 -04:00
|
|
|
add (property_toggles_visible);
|
2009-07-03 18:42:22 -04:00
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-07-03 18:42:22 -04:00
|
|
|
Gtk::TreeModelColumn<Glib::ustring> name;
|
|
|
|
Gtk::TreeModelColumn<boost::shared_ptr<ARDOUR::Region> > region;
|
|
|
|
Gtk::TreeModelColumn<Gdk::Color> color_;
|
|
|
|
Gtk::TreeModelColumn<Glib::ustring> start;
|
|
|
|
Gtk::TreeModelColumn<Glib::ustring> end;
|
|
|
|
Gtk::TreeModelColumn<Glib::ustring> length;
|
|
|
|
Gtk::TreeModelColumn<Glib::ustring> sync;
|
|
|
|
Gtk::TreeModelColumn<Glib::ustring> fadein;
|
|
|
|
Gtk::TreeModelColumn<Glib::ustring> fadeout;
|
|
|
|
Gtk::TreeModelColumn<bool> locked;
|
|
|
|
Gtk::TreeModelColumn<bool> glued;
|
|
|
|
Gtk::TreeModelColumn<bool> muted;
|
|
|
|
Gtk::TreeModelColumn<bool> opaque;
|
|
|
|
Gtk::TreeModelColumn<Glib::ustring> used;
|
|
|
|
Gtk::TreeModelColumn<Glib::ustring> path;
|
2010-06-28 13:25:32 -04:00
|
|
|
/** used to indicate whether the locked/glued/muted/opaque should be visible or not */
|
|
|
|
Gtk::TreeModelColumn<bool> property_toggles_visible;
|
2009-07-03 18:42:22 -04:00
|
|
|
};
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-07-03 18:42:22 -04:00
|
|
|
Columns _columns;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-03-30 19:40:28 -04:00
|
|
|
void region_changed (boost::shared_ptr<ARDOUR::Region>, PBD::PropertyChange const &);
|
2009-07-03 18:42:22 -04:00
|
|
|
void selection_changed ();
|
|
|
|
sigc::connection _change_connection;
|
|
|
|
bool set_selected_in_subrow (boost::shared_ptr<ARDOUR::Region>, Gtk::TreeModel::Row const &, int);
|
|
|
|
bool selection_filter (const Glib::RefPtr<Gtk::TreeModel>& model, const Gtk::TreeModel::Path& path, bool yn);
|
|
|
|
void name_edit (const Glib::ustring&, const Glib::ustring&);
|
2010-06-27 20:41:01 -04:00
|
|
|
void locked_changed (Glib::ustring const &);
|
|
|
|
void glued_changed (Glib::ustring const &);
|
|
|
|
void muted_changed (Glib::ustring const &);
|
|
|
|
void opaque_changed (Glib::ustring const &);
|
2009-07-03 18:42:22 -04:00
|
|
|
|
|
|
|
bool key_press (GdkEventKey *);
|
|
|
|
bool button_press (GdkEventButton *);
|
|
|
|
void build_menu ();
|
|
|
|
void show_context_menu (int button, int time);
|
|
|
|
|
|
|
|
int sorter (Gtk::TreeModel::iterator, Gtk::TreeModel::iterator);
|
|
|
|
|
|
|
|
void add_region (boost::shared_ptr<ARDOUR::Region>);
|
2010-03-06 10:40:42 -05:00
|
|
|
void add_regions (std::vector<boost::shared_ptr<ARDOUR::Region> > & );
|
2009-07-03 18:42:22 -04:00
|
|
|
void populate_row (boost::shared_ptr<ARDOUR::Region>, Gtk::TreeModel::Row const &);
|
|
|
|
void update_row (boost::shared_ptr<ARDOUR::Region>);
|
|
|
|
bool update_subrows (boost::shared_ptr<ARDOUR::Region>, Gtk::TreeModel::Row const &, int);
|
|
|
|
void update_all_rows ();
|
|
|
|
void update_all_subrows (Gtk::TreeModel::Row const &, int);
|
|
|
|
void insert_into_tmp_regionlist (boost::shared_ptr<ARDOUR::Region>);
|
|
|
|
|
|
|
|
void drag_data_received (
|
|
|
|
Glib::RefPtr<Gdk::DragContext> const &, gint, gint, Gtk::SelectionData const &, guint, guint
|
|
|
|
);
|
|
|
|
|
|
|
|
Gtk::Menu* _menu;
|
|
|
|
Gtk::ScrolledWindow _scroller;
|
|
|
|
Gtk::Frame _frame;
|
|
|
|
Gtkmm2ext::DnDTreeView<boost::shared_ptr<ARDOUR::Region> > _display;
|
|
|
|
Glib::RefPtr<Gtk::TreeStore> _model;
|
2010-03-30 21:11:48 -04:00
|
|
|
Glib::RefPtr<Gtk::Action> _hide_action; ///< the action for our Hide menu option
|
|
|
|
Glib::RefPtr<Gtk::Action> _show_action; ///< the action for our Show menu option
|
2009-07-03 18:42:22 -04:00
|
|
|
Glib::RefPtr<Gtk::ToggleAction> _toggle_full_action;
|
|
|
|
Glib::RefPtr<Gtk::ToggleAction> _toggle_show_auto_regions_action;
|
|
|
|
bool _show_automatic_regions;
|
|
|
|
Editing::RegionListSortType _sort_type;
|
|
|
|
bool _no_redisplay;
|
|
|
|
std::list<boost::shared_ptr<ARDOUR::Region> > tmp_region_list;
|
2009-12-19 15:26:31 -05:00
|
|
|
PBD::ScopedConnection region_property_connection;
|
2010-03-30 19:40:28 -04:00
|
|
|
PBD::ScopedConnection check_new_region_connection;
|
2010-01-25 15:34:09 -05:00
|
|
|
bool ignore_region_list_selection_change;
|
|
|
|
bool ignore_selected_region_change;
|
2009-07-03 18:42:22 -04:00
|
|
|
};
|
|
|
|
|
2009-11-12 00:47:05 -05:00
|
|
|
#endif /* __gtk_ardour_editor_regions_h__ */
|