2010-08-25 15:37:54 -04:00
|
|
|
#include <gtkmm/table.h>
|
|
|
|
#include <gtkmm/stock.h>
|
|
|
|
#include <gtkmm/alignment.h>
|
2010-10-04 20:25:57 -04:00
|
|
|
#include "ardour/region.h"
|
2010-08-25 15:37:54 -04:00
|
|
|
|
|
|
|
#include "gui_thread.h"
|
|
|
|
#include "keyboard.h"
|
|
|
|
#include "public_editor.h"
|
|
|
|
#include "region_layering_order_editor.h"
|
|
|
|
#include "utils.h"
|
2011-04-22 23:34:42 -04:00
|
|
|
#include "i18n.h"
|
2010-08-25 15:37:54 -04:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace Gtk;
|
|
|
|
using namespace ARDOUR;
|
|
|
|
|
|
|
|
RegionLayeringOrderEditor::RegionLayeringOrderEditor (PublicEditor& pe)
|
2011-11-18 19:56:35 -05:00
|
|
|
: ArdourWindow (pe, _("RegionLayeringOrderEditor"))
|
2010-08-25 15:37:54 -04:00
|
|
|
, playlist ()
|
|
|
|
, position ()
|
|
|
|
, in_row_change (false)
|
|
|
|
, regions_at_position (0)
|
|
|
|
, layering_order_columns ()
|
|
|
|
, layering_order_model (Gtk::ListStore::create (layering_order_columns))
|
|
|
|
, layering_order_display ()
|
2011-11-17 17:49:13 -05:00
|
|
|
, clock ("layer dialog", true, "clock", false, false, false)
|
2010-08-25 15:37:54 -04:00
|
|
|
, scroller ()
|
|
|
|
, editor (pe)
|
|
|
|
{
|
|
|
|
set_name ("RegionLayeringOrderEditorWindow");
|
|
|
|
|
|
|
|
layering_order_display.set_model (layering_order_model);
|
|
|
|
|
|
|
|
layering_order_display.append_column (_("Region Name"), layering_order_columns.name);
|
|
|
|
layering_order_display.set_headers_visible (true);
|
|
|
|
layering_order_display.set_reorderable (false);
|
|
|
|
layering_order_display.set_rules_hint (true);
|
|
|
|
|
|
|
|
scroller.set_policy (Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
|
|
|
|
scroller.add (layering_order_display);
|
|
|
|
|
|
|
|
clock.set_mode (AudioClock::BBT);
|
|
|
|
|
|
|
|
Gtk::Table* scroller_table = manage (new Gtk::Table);
|
|
|
|
scroller_table->set_size_request (300, 250);
|
|
|
|
scroller_table->attach (scroller, 0, 1, 0, 1);
|
|
|
|
scroller_table->set_col_spacings (5);
|
|
|
|
scroller_table->set_row_spacings (5);
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-08-25 15:37:54 -04:00
|
|
|
track_label.set_name ("RegionLayeringOrderEditorLabel");
|
|
|
|
track_label.set_text (_("Track:"));
|
2010-08-25 22:34:45 -04:00
|
|
|
track_label.set_alignment (0, 0.5);
|
2010-08-25 15:37:54 -04:00
|
|
|
clock_label.set_name ("RegionLayeringOrderEditorLabel");
|
|
|
|
clock_label.set_text (_("Position:"));
|
2010-08-25 22:34:45 -04:00
|
|
|
clock_label.set_alignment (0, 0.5);
|
2010-08-25 15:37:54 -04:00
|
|
|
track_name_label.set_name ("RegionLayeringOrderEditorNameLabel");
|
2010-08-25 22:34:45 -04:00
|
|
|
track_name_label.set_alignment (0, 0.5);
|
2010-08-25 15:37:54 -04:00
|
|
|
clock.set_mode (AudioClock::BBT);
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-08-25 15:37:54 -04:00
|
|
|
Gtk::Table* info_table = manage (new Gtk::Table (2, 2));
|
|
|
|
info_table->set_col_spacings (5);
|
|
|
|
info_table->set_row_spacings (5);
|
2010-08-25 22:34:45 -04:00
|
|
|
info_table->attach (track_label, 0, 1, 0, 1, FILL, FILL);
|
2010-08-25 15:37:54 -04:00
|
|
|
info_table->attach (track_name_label, 1, 2, 0, 1, FILL, FILL);
|
2010-08-25 22:34:45 -04:00
|
|
|
info_table->attach (clock_label, 0, 1, 1, 2, FILL, FILL);
|
2010-08-25 15:37:54 -04:00
|
|
|
info_table->attach (clock, 1, 2, 1, 2, FILL, FILL);
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2011-11-18 19:56:35 -05:00
|
|
|
Gtk::VBox* vbox = Gtk::manage (new Gtk::VBox ());
|
|
|
|
vbox->set_spacing (12);
|
|
|
|
vbox->pack_start (*info_table, false, false);
|
|
|
|
vbox->pack_start (*scroller_table, true, true);
|
|
|
|
add (*vbox);
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-08-25 15:37:54 -04:00
|
|
|
info_table->set_name ("RegionLayeringOrderTable");
|
|
|
|
scroller_table->set_name ("RegionLayeringOrderTable");
|
|
|
|
|
|
|
|
layering_order_display.set_name ("RegionLayeringOrderDisplay");
|
|
|
|
|
|
|
|
layering_order_display.signal_row_activated ().connect (mem_fun (*this, &RegionLayeringOrderEditor::row_activated));
|
|
|
|
|
|
|
|
layering_order_display.grab_focus ();
|
|
|
|
|
|
|
|
set_title (_("Choose Top Region"));
|
|
|
|
show_all();
|
|
|
|
}
|
|
|
|
|
|
|
|
RegionLayeringOrderEditor::~RegionLayeringOrderEditor ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-09-02 13:01:36 -04:00
|
|
|
RegionLayeringOrderEditor::row_activated (const TreeModel::Path& path, TreeViewColumn*)
|
2010-08-25 15:37:54 -04:00
|
|
|
{
|
|
|
|
if (in_row_change) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
TreeModel::iterator iter = layering_order_model->get_iter (path);
|
|
|
|
|
|
|
|
if (iter) {
|
|
|
|
TreeModel::Row row = *iter;
|
|
|
|
boost::shared_ptr<Region> region = row[layering_order_columns.region];
|
|
|
|
|
|
|
|
region->raise_to_top ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef boost::shared_ptr<Region> RegionPtr;
|
|
|
|
|
|
|
|
struct RegionCompareByLayer {
|
|
|
|
bool operator() (RegionPtr a, RegionPtr b) const {
|
|
|
|
return a->layer() > b->layer();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
RegionLayeringOrderEditor::refill ()
|
|
|
|
{
|
|
|
|
regions_at_position = 0;
|
|
|
|
|
|
|
|
if (!playlist) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef Playlist::RegionList RegionList;
|
|
|
|
|
|
|
|
in_row_change = true;
|
|
|
|
|
|
|
|
layering_order_model->clear ();
|
|
|
|
|
|
|
|
boost::shared_ptr<RegionList> region_list(playlist->regions_at (position));
|
|
|
|
|
|
|
|
regions_at_position = region_list->size();
|
|
|
|
|
|
|
|
if (regions_at_position < 2) {
|
|
|
|
playlist_modified_connection.disconnect ();
|
|
|
|
hide ();
|
|
|
|
in_row_change = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
RegionCompareByLayer cmp;
|
|
|
|
region_list->sort (cmp);
|
|
|
|
|
|
|
|
for (RegionList::const_iterator i = region_list->begin(); i != region_list->end(); ++i) {
|
|
|
|
TreeModel::Row newrow = *(layering_order_model->append());
|
|
|
|
newrow[layering_order_columns.name] = (*i)->name();
|
|
|
|
newrow[layering_order_columns.region] = *i;
|
|
|
|
|
|
|
|
if (i == region_list->begin()) {
|
|
|
|
layering_order_display.get_selection()->select(newrow);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
in_row_change = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
RegionLayeringOrderEditor::set_context (const string& a_name, Session* s, const boost::shared_ptr<Playlist> & pl, framepos_t pos)
|
|
|
|
{
|
|
|
|
track_name_label.set_text (a_name);
|
|
|
|
|
|
|
|
clock.set_session (s);
|
2011-11-18 13:06:16 -05:00
|
|
|
clock.set (pos, true);
|
2010-08-25 15:37:54 -04:00
|
|
|
|
|
|
|
playlist_modified_connection.disconnect ();
|
|
|
|
playlist = pl;
|
|
|
|
playlist->ContentsChanged.connect (playlist_modified_connection, invalidator (*this), boost::bind
|
|
|
|
(&RegionLayeringOrderEditor::playlist_modified, this), gui_context());
|
|
|
|
|
|
|
|
position = pos;
|
|
|
|
refill ();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
RegionLayeringOrderEditor::on_key_press_event (GdkEventKey* ev)
|
|
|
|
{
|
|
|
|
bool handled = false;
|
|
|
|
|
|
|
|
/* in general, we want shortcuts working while in this
|
|
|
|
dialog. However, we'd like to treat "return" specially
|
|
|
|
since it is used for row activation. So ..
|
|
|
|
|
|
|
|
for return: try normal handling first
|
|
|
|
then try the editor (to get accelerators/shortcuts)
|
|
|
|
then try normal handling (for keys other than return)
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (ev->keyval == GDK_Return) {
|
2011-11-18 19:56:35 -05:00
|
|
|
handled = ArdourWindow::on_key_press_event (ev);
|
2010-08-25 15:37:54 -04:00
|
|
|
}
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-08-25 15:37:54 -04:00
|
|
|
if (!handled) {
|
|
|
|
handled = key_press_focus_accelerator_handler (editor, ev);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!handled) {
|
2011-11-18 19:56:35 -05:00
|
|
|
handled = ArdourWindow::on_key_press_event (ev);
|
2010-08-25 15:37:54 -04:00
|
|
|
}
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-08-25 15:37:54 -04:00
|
|
|
return handled;
|
|
|
|
}
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-08-25 15:37:54 -04:00
|
|
|
void
|
|
|
|
RegionLayeringOrderEditor::maybe_present ()
|
|
|
|
{
|
|
|
|
if (regions_at_position < 2) {
|
|
|
|
hide ();
|
|
|
|
return;
|
|
|
|
}
|
2010-08-25 18:42:35 -04:00
|
|
|
|
2010-08-25 15:37:54 -04:00
|
|
|
present ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
RegionLayeringOrderEditor::playlist_modified ()
|
|
|
|
{
|
|
|
|
refill ();
|
|
|
|
}
|