2005-09-25 14:42:24 -04:00
|
|
|
/*
|
|
|
|
Copyright (C) 1999 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.
|
|
|
|
|
|
|
|
$Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <cerrno>
|
|
|
|
#include <iostream>
|
|
|
|
#include <cmath>
|
|
|
|
|
2005-10-10 16:38:53 -04:00
|
|
|
#include <sigc++/bind.h>
|
2005-09-25 14:42:24 -04:00
|
|
|
#include <pbd/error.h>
|
|
|
|
#include <pbd/basename.h>
|
|
|
|
#include <pbd/fastlog.h>
|
2005-09-25 16:33:00 -04:00
|
|
|
#include <gtkmm2ext/utils.h>
|
|
|
|
#include <gtkmm2ext/click_box.h>
|
|
|
|
#include <gtkmm2ext/tearoff.h>
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#include <ardour/audioengine.h>
|
|
|
|
#include <ardour/ardour.h>
|
|
|
|
#include <ardour/route.h>
|
|
|
|
|
|
|
|
#include "ardour_ui.h"
|
|
|
|
#include "public_editor.h"
|
|
|
|
#include "audio_clock.h"
|
2005-11-28 10:29:49 -05:00
|
|
|
#include "actions.h"
|
2005-10-10 16:38:53 -04:00
|
|
|
#include "utils.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#include "i18n.h"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace ARDOUR;
|
Large nasty commit in the form of a 5000 line patch chock-full of completely
unecessary changes. (Sorry, doing a "sprint" based thing, this is the end of the first one)
Achieved MIDI track and bus creation, associated Jack port and diskstream creation, and minimal GUI stuff for creating them. Should be set to start work on actually recording and playing midi to/from disk now.
Relevant (significant) changes:
- Creation of a Buffer class. Base class is type agnostic so things can point to a buffer but not care what kind it is (otherwise it'd be a template). Derived into AudioBuffer and MidiBuffer, with a type tag because checking type is necessary in parts of the code where dynamic_cast wouldn't be wise. Originally I considered this a hack, but passing around a type proved to be a very good solution to all the other problems (below). There is a 1:1 mapping between jack port data types and ardour Buffer types (with a conversion function), but that's easily removed if it ever becomes necessary. Having the type scoped in the Buffer class is maybe not the best spot for it, but whatever (this is proof of concept kinda stuff right now...)
- IO now has a "default" port type (passed to the constructor and stored as a member), used by ensure_io (and similar) to create n ports. IO::register_***_port has a type argument that defaults to the default type if not passed. Rationale: previous IO API is identical, no changes needed to existing code, but path is paved for multiple port types in one IO, which we will need for eg synth plugin inserts, among other things. This is not quite ideal (best would be to only have the two port register functions and have them take a type), but the alternative is a lot of work (namely destroying the 'ensure' functions and everything that uses them) for very little gain. (I am convinced after quite a few tries at the whiteboard that subclassing IO in any way is not a feasible option, look at it's inheritance diagram in Doxygen and you can see why)
- AudioEngine::register_audio_input_port is now register_input_port and takes a type argument. Ditto for output.
- (Most significant change) AudioDiskstream abstracted into Distream, and sibling MidiDiskstream created. Very much still a work in progress, but Diskstream is there to switch references over to (most already are), which is the important part. It is still unclear what the MIDI diskstream's relation to channels is, but I'm pretty sure they will be single channel only (so SMF Type 0) since noone can come up with a reason otherwise.
- MidiTrack creation. Same thing as AudioTrack but with a different default type basically. No big deal here.
- Random cleanups and variable renamings etc. because I have OCD and can't help myself. :)
Known broken: Loading of sessions containing MIDI tracks.
git-svn-id: svn://localhost/ardour2/branches/midi@641 d708f5d6-7413-0410-9779-e7cbd77b26cf
2006-06-26 12:01:34 -04:00
|
|
|
using namespace PBD;
|
2005-09-25 16:33:00 -04:00
|
|
|
using namespace Gtkmm2ext;
|
2005-09-25 14:42:24 -04:00
|
|
|
using namespace Gtk;
|
2005-12-04 23:11:08 -05:00
|
|
|
using namespace Glib;
|
2005-09-25 16:33:00 -04:00
|
|
|
using namespace sigc;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
int
|
|
|
|
ARDOUR_UI::setup_windows ()
|
|
|
|
{
|
|
|
|
if (create_editor ()) {
|
|
|
|
error << _("UI: cannot setup editor") << endmsg;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (create_mixer ()) {
|
|
|
|
error << _("UI: cannot setup mixer") << endmsg;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* all other dialogs are created conditionally */
|
|
|
|
|
|
|
|
we_have_dependents ();
|
|
|
|
|
|
|
|
setup_clock ();
|
|
|
|
setup_transport();
|
|
|
|
setup_adjustables ();
|
|
|
|
build_menu_bar ();
|
|
|
|
|
|
|
|
top_packer.pack_start (menu_bar_base, false, false);
|
|
|
|
top_packer.pack_start (transport_frame, false, false);
|
|
|
|
|
|
|
|
editor->add_toplevel_controls (top_packer);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::setup_adjustables ()
|
|
|
|
{
|
|
|
|
adjuster_table.set_homogeneous (true);
|
|
|
|
|
|
|
|
online_control_strings.push_back (_("MMC + Local"));
|
|
|
|
online_control_strings.push_back (_("MMC"));
|
|
|
|
online_control_strings.push_back (_("Local"));
|
|
|
|
|
|
|
|
online_control_button = new GlobalClickBox ("CONTROL",
|
|
|
|
online_control_strings);
|
|
|
|
|
2005-10-09 01:03:29 -04:00
|
|
|
online_control_button->adjustment.signal_value_changed().connect(mem_fun(*this,&ARDOUR_UI::control_methods_adjusted));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
mmc_id_strings.push_back ("1");
|
|
|
|
mmc_id_strings.push_back ("2");
|
|
|
|
mmc_id_strings.push_back ("3");
|
|
|
|
mmc_id_strings.push_back ("4");
|
|
|
|
mmc_id_strings.push_back ("5");
|
|
|
|
mmc_id_strings.push_back ("6");
|
|
|
|
mmc_id_strings.push_back ("7");
|
|
|
|
mmc_id_strings.push_back ("8");
|
|
|
|
mmc_id_strings.push_back ("9");
|
|
|
|
|
|
|
|
mmc_id_button = new GlobalClickBox (_("MMC ID"), mmc_id_strings);
|
|
|
|
|
2005-10-09 01:03:29 -04:00
|
|
|
mmc_id_button->adjustment.signal_value_changed().connect (mem_fun(*this,&ARDOUR_UI::mmc_device_id_adjusted));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-10-09 01:03:29 -04:00
|
|
|
adjuster_table.attach (*online_control_button, 0, 2, 1, 2, FILL|EXPAND, FILL, 5, 5);
|
|
|
|
adjuster_table.attach (*mmc_id_button, 2, 3, 1, 2, FILL, FILL, 5, 5);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::transport_stopped ()
|
|
|
|
{
|
2005-12-21 16:37:18 -05:00
|
|
|
stop_button.set_active (true);
|
2006-01-06 10:06:33 -05:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
roll_button.set_active (false);
|
|
|
|
play_selection_button.set_active (false);
|
|
|
|
auto_loop_button.set_active (false);
|
|
|
|
|
|
|
|
shuttle_fract = 0;
|
|
|
|
shuttle_box.queue_draw ();
|
|
|
|
|
|
|
|
update_disk_space ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::transport_rolling ()
|
|
|
|
{
|
2005-12-21 16:37:18 -05:00
|
|
|
stop_button.set_active (false);
|
2005-09-25 14:42:24 -04:00
|
|
|
if (session->get_play_range()) {
|
|
|
|
play_selection_button.set_active (true);
|
|
|
|
roll_button.set_active (false);
|
|
|
|
auto_loop_button.set_active (false);
|
|
|
|
|
2006-11-19 11:45:16 -05:00
|
|
|
} else if (session->get_play_loop ()) {
|
2005-09-25 14:42:24 -04:00
|
|
|
auto_loop_button.set_active (true);
|
|
|
|
play_selection_button.set_active (false);
|
|
|
|
roll_button.set_active (false);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
roll_button.set_active (true);
|
|
|
|
play_selection_button.set_active (false);
|
|
|
|
auto_loop_button.set_active (false);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* reset shuttle controller */
|
|
|
|
|
|
|
|
shuttle_fract = SHUTTLE_FRACT_SPEED1; /* speed = 1.0, believe it or not */
|
|
|
|
shuttle_box.queue_draw ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::transport_rewinding ()
|
|
|
|
{
|
2006-01-06 10:06:33 -05:00
|
|
|
stop_button.set_active(false);
|
2005-09-25 14:42:24 -04:00
|
|
|
roll_button.set_active (true);
|
|
|
|
play_selection_button.set_active (false);
|
|
|
|
auto_loop_button.set_active (false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::transport_forwarding ()
|
|
|
|
{
|
2005-12-21 16:37:18 -05:00
|
|
|
stop_button.set_active (false);
|
2005-09-25 14:42:24 -04:00
|
|
|
roll_button.set_active (true);
|
|
|
|
play_selection_button.set_active (false);
|
|
|
|
auto_loop_button.set_active (false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::setup_transport ()
|
|
|
|
{
|
|
|
|
transport_tearoff = manage (new TearOff (transport_tearoff_hbox));
|
|
|
|
transport_tearoff->set_name ("TransportBase");
|
|
|
|
|
|
|
|
transport_hbox.pack_start (*transport_tearoff, true, false);
|
|
|
|
|
|
|
|
transport_base.set_name ("TransportBase");
|
|
|
|
transport_base.add (transport_hbox);
|
|
|
|
|
2005-12-21 16:37:18 -05:00
|
|
|
transport_frame.set_shadow_type (SHADOW_OUT);
|
2005-09-25 14:42:24 -04:00
|
|
|
transport_frame.set_name ("BaseFrame");
|
|
|
|
transport_frame.add (transport_base);
|
|
|
|
|
2005-12-21 16:37:18 -05:00
|
|
|
transport_tearoff->Detach.connect (bind (mem_fun(*this, &ARDOUR_UI::detach_tearoff), static_cast<Box*>(&top_packer),
|
|
|
|
static_cast<Widget*>(&transport_frame)));
|
|
|
|
transport_tearoff->Attach.connect (bind (mem_fun(*this, &ARDOUR_UI::reattach_tearoff), static_cast<Box*> (&top_packer),
|
|
|
|
static_cast<Widget*> (&transport_frame), 1));
|
2006-01-19 13:05:31 -05:00
|
|
|
transport_tearoff->Hidden.connect (bind (mem_fun(*this, &ARDOUR_UI::detach_tearoff), static_cast<Box*>(&top_packer),
|
|
|
|
static_cast<Widget*>(&transport_frame)));
|
|
|
|
transport_tearoff->Visible.connect (bind (mem_fun(*this, &ARDOUR_UI::reattach_tearoff), static_cast<Box*> (&top_packer),
|
|
|
|
static_cast<Widget*> (&transport_frame), 1));
|
|
|
|
|
2006-01-06 10:06:33 -05:00
|
|
|
shuttle_box.set_name ("TransportButton");
|
|
|
|
goto_start_button.set_name ("TransportButton");
|
|
|
|
goto_end_button.set_name ("TransportButton");
|
|
|
|
roll_button.set_name ("TransportButton");
|
|
|
|
stop_button.set_name ("TransportButton");
|
|
|
|
play_selection_button.set_name ("TransportButton");
|
|
|
|
rec_button.set_name ("TransportRecButton");
|
|
|
|
auto_loop_button.set_name ("TransportButton");
|
|
|
|
auto_return_button.set_name ("TransportButton");
|
|
|
|
auto_play_button.set_name ("TransportButton");
|
|
|
|
auto_input_button.set_name ("TransportButton");
|
|
|
|
punch_in_button.set_name ("TransportButton");
|
|
|
|
punch_out_button.set_name ("TransportButton");
|
|
|
|
click_button.set_name ("TransportButton");
|
|
|
|
time_master_button.set_name ("TransportButton");
|
|
|
|
|
2005-12-21 16:37:18 -05:00
|
|
|
vector<Gdk::Color> colors;
|
|
|
|
Gdk::Color c;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-12-21 16:37:18 -05:00
|
|
|
/* record button has 3 color states, so we set 2 extra here */
|
2006-01-06 10:06:33 -05:00
|
|
|
set_color(c, rgba_from_style ("TransportRecButton", 0xff, 0, 0, 0, "bg", Gtk::STATE_PRELIGHT, false ));
|
2005-12-21 16:37:18 -05:00
|
|
|
colors.push_back (c);
|
2006-01-06 10:06:33 -05:00
|
|
|
|
|
|
|
set_color(c, rgba_from_style ("TransportRecButton", 0xff, 0, 0, 0, "bg", Gtk::STATE_ACTIVE, false ));
|
2005-12-21 16:37:18 -05:00
|
|
|
colors.push_back (c);
|
2006-01-06 10:06:33 -05:00
|
|
|
|
2005-12-21 16:37:18 -05:00
|
|
|
rec_button.set_colors (colors);
|
|
|
|
colors.clear ();
|
2006-01-06 10:06:33 -05:00
|
|
|
|
2005-12-21 16:37:18 -05:00
|
|
|
/* other buttons get 2 color states, so add one here */
|
2006-01-06 10:06:33 -05:00
|
|
|
set_color(c, rgba_from_style ("TransportButton", 0x7f, 0xff, 0x7f, 0, "bg", Gtk::STATE_ACTIVE, false ));
|
2005-12-21 16:37:18 -05:00
|
|
|
colors.push_back (c);
|
|
|
|
|
|
|
|
stop_button.set_colors (colors);
|
|
|
|
roll_button.set_colors (colors);
|
|
|
|
auto_loop_button.set_colors (colors);
|
|
|
|
play_selection_button.set_colors (colors);
|
|
|
|
goto_start_button.set_colors (colors);
|
|
|
|
goto_end_button.set_colors (colors);
|
|
|
|
|
2006-10-21 15:01:50 -04:00
|
|
|
stop_button.set_size_request(29, -1);
|
|
|
|
roll_button.set_size_request(29, -1);
|
|
|
|
auto_loop_button.set_size_request(29, -1);
|
|
|
|
play_selection_button.set_size_request(29, -1);
|
|
|
|
goto_start_button.set_size_request(29, -1);
|
|
|
|
goto_end_button.set_size_request(29, -1);
|
|
|
|
rec_button.set_size_request(29, -1);
|
|
|
|
|
2005-12-21 16:37:18 -05:00
|
|
|
Widget* w;
|
|
|
|
|
|
|
|
stop_button.set_active (true);
|
2006-10-21 15:01:50 -04:00
|
|
|
|
|
|
|
w = manage (new Image (get_icon (X_("transport_start"))));
|
2005-12-04 23:11:08 -05:00
|
|
|
w->show();
|
|
|
|
goto_start_button.add (*w);
|
2006-10-21 15:01:50 -04:00
|
|
|
w = manage (new Image (get_icon (X_("transport_end"))));
|
2005-12-04 23:11:08 -05:00
|
|
|
w->show();
|
|
|
|
goto_end_button.add (*w);
|
2006-10-21 15:01:50 -04:00
|
|
|
w = manage (new Image (get_icon (X_("transport_play"))));
|
2005-12-04 23:11:08 -05:00
|
|
|
w->show();
|
|
|
|
roll_button.add (*w);
|
2006-10-21 15:01:50 -04:00
|
|
|
w = manage (new Image (get_icon (X_("transport_stop"))));
|
2005-12-04 23:11:08 -05:00
|
|
|
w->show();
|
|
|
|
stop_button.add (*w);
|
2006-10-21 15:01:50 -04:00
|
|
|
w = manage (new Image (get_icon (X_("transport_range"))));
|
2005-12-04 23:11:08 -05:00
|
|
|
w->show();
|
|
|
|
play_selection_button.add (*w);
|
2006-10-21 15:01:50 -04:00
|
|
|
w = manage (new Image (get_icon (X_("transport_record"))));
|
2005-12-04 23:11:08 -05:00
|
|
|
w->show();
|
|
|
|
rec_button.add (*w);
|
2006-10-21 15:01:50 -04:00
|
|
|
w = manage (new Image (get_icon (X_("transport_loop"))));
|
2005-12-04 23:11:08 -05:00
|
|
|
w->show();
|
|
|
|
auto_loop_button.add (*w);
|
|
|
|
|
|
|
|
RefPtr<Action> act;
|
|
|
|
|
2005-12-29 19:34:21 -05:00
|
|
|
act = ActionManager::get_action (X_("Transport"), X_("Stop"));
|
2005-12-04 23:11:08 -05:00
|
|
|
act->connect_proxy (stop_button);
|
2005-12-29 19:34:21 -05:00
|
|
|
act = ActionManager::get_action (X_("Transport"), X_("Roll"));
|
2005-12-04 23:11:08 -05:00
|
|
|
act->connect_proxy (roll_button);
|
2005-12-29 19:34:21 -05:00
|
|
|
act = ActionManager::get_action (X_("Transport"), X_("Record"));
|
2005-12-04 23:11:08 -05:00
|
|
|
act->connect_proxy (rec_button);
|
2005-12-29 19:34:21 -05:00
|
|
|
act = ActionManager::get_action (X_("Transport"), X_("GotoStart"));
|
2005-12-04 23:11:08 -05:00
|
|
|
act->connect_proxy (goto_start_button);
|
2005-12-29 19:34:21 -05:00
|
|
|
act = ActionManager::get_action (X_("Transport"), X_("GotoEnd"));
|
2005-12-04 23:11:08 -05:00
|
|
|
act->connect_proxy (goto_end_button);
|
2005-12-29 19:34:21 -05:00
|
|
|
act = ActionManager::get_action (X_("Transport"), X_("Loop"));
|
2005-12-04 23:11:08 -05:00
|
|
|
act->connect_proxy (auto_loop_button);
|
2005-12-29 19:34:21 -05:00
|
|
|
act = ActionManager::get_action (X_("Transport"), X_("PlaySelection"));
|
2005-12-21 16:37:18 -05:00
|
|
|
act->connect_proxy (play_selection_button);
|
2005-12-31 13:20:42 -05:00
|
|
|
act = ActionManager::get_action (X_("Transport"), X_("ToggleTimeMaster"));
|
|
|
|
act->connect_proxy (time_master_button);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
ARDOUR_UI::instance()->tooltips().set_tip (roll_button, _("Play from playhead"));
|
|
|
|
ARDOUR_UI::instance()->tooltips().set_tip (stop_button, _("Stop playback"));
|
|
|
|
ARDOUR_UI::instance()->tooltips().set_tip (play_selection_button, _("Play range/selection"));
|
|
|
|
ARDOUR_UI::instance()->tooltips().set_tip (goto_start_button, _("Go to start of session"));
|
|
|
|
ARDOUR_UI::instance()->tooltips().set_tip (goto_end_button, _("Go to end of session"));
|
|
|
|
ARDOUR_UI::instance()->tooltips().set_tip (auto_loop_button, _("Play loop range"));
|
|
|
|
ARDOUR_UI::instance()->tooltips().set_tip (auto_return_button, _("Return to last playback start when stopped"));
|
|
|
|
ARDOUR_UI::instance()->tooltips().set_tip (auto_play_button, _("Start playback after any locate"));
|
|
|
|
ARDOUR_UI::instance()->tooltips().set_tip (auto_input_button, _("Be sensible about input monitoring"));
|
|
|
|
ARDOUR_UI::instance()->tooltips().set_tip (punch_in_button, _("Start recording at auto-punch start"));
|
|
|
|
ARDOUR_UI::instance()->tooltips().set_tip (punch_out_button, _("Stop recording at auto-punch end"));
|
|
|
|
ARDOUR_UI::instance()->tooltips().set_tip (click_button, _("Enable/Disable audio click"));
|
2006-01-08 01:08:15 -05:00
|
|
|
ARDOUR_UI::instance()->tooltips().set_tip (sync_option_combo, _("Positional sync source"));
|
2005-12-31 13:20:42 -05:00
|
|
|
ARDOUR_UI::instance()->tooltips().set_tip (time_master_button, _("Does Ardour control the time?"));
|
2005-09-25 14:42:24 -04:00
|
|
|
ARDOUR_UI::instance()->tooltips().set_tip (shuttle_box, _("Shuttle speed control"));
|
|
|
|
ARDOUR_UI::instance()->tooltips().set_tip (shuttle_units_button, _("Select semitones or %%-age for speed display"));
|
|
|
|
ARDOUR_UI::instance()->tooltips().set_tip (speed_display_box, _("Current transport speed"));
|
|
|
|
|
2005-10-09 01:03:29 -04:00
|
|
|
shuttle_box.set_flags (CAN_FOCUS);
|
2006-04-09 22:14:05 -04:00
|
|
|
shuttle_box.add_events (Gdk::ENTER_NOTIFY_MASK|Gdk::LEAVE_NOTIFY_MASK|Gdk::BUTTON_RELEASE_MASK|Gdk::BUTTON_PRESS_MASK|Gdk::POINTER_MOTION_MASK|Gdk::SCROLL_MASK);
|
2005-09-25 16:33:00 -04:00
|
|
|
shuttle_box.set_size_request (100, 15);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-09-26 14:24:59 -04:00
|
|
|
shuttle_box.signal_button_press_event().connect (mem_fun(*this, &ARDOUR_UI::shuttle_box_button_press));
|
|
|
|
shuttle_box.signal_button_release_event().connect (mem_fun(*this, &ARDOUR_UI::shuttle_box_button_release));
|
2006-04-09 22:14:05 -04:00
|
|
|
shuttle_box.signal_scroll_event().connect (mem_fun(*this, &ARDOUR_UI::shuttle_box_scroll));
|
2005-09-26 14:24:59 -04:00
|
|
|
shuttle_box.signal_motion_notify_event().connect (mem_fun(*this, &ARDOUR_UI::shuttle_box_motion));
|
|
|
|
shuttle_box.signal_expose_event().connect (mem_fun(*this, &ARDOUR_UI::shuttle_box_expose));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
/* clocks, etc. */
|
|
|
|
|
2005-09-25 17:19:23 -04:00
|
|
|
ARDOUR_UI::Clock.connect (bind (mem_fun (primary_clock, &AudioClock::set), false));
|
|
|
|
ARDOUR_UI::Clock.connect (bind (mem_fun (secondary_clock, &AudioClock::set), false));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-09-25 17:19:23 -04:00
|
|
|
primary_clock.ValueChanged.connect (mem_fun(*this, &ARDOUR_UI::primary_clock_value_changed));
|
|
|
|
secondary_clock.ValueChanged.connect (mem_fun(*this, &ARDOUR_UI::secondary_clock_value_changed));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
ARDOUR_UI::instance()->tooltips().set_tip (primary_clock, _("Primary clock"));
|
|
|
|
ARDOUR_UI::instance()->tooltips().set_tip (secondary_clock, _("secondary clock"));
|
|
|
|
|
2006-01-08 00:19:38 -05:00
|
|
|
ActionManager::get_action ("Transport", "ToggleAutoReturn")->connect_proxy (auto_return_button);
|
|
|
|
ActionManager::get_action ("Transport", "ToggleAutoPlay")->connect_proxy (auto_play_button);
|
|
|
|
ActionManager::get_action ("Transport", "ToggleAutoInput")->connect_proxy (auto_input_button);
|
|
|
|
ActionManager::get_action ("Transport", "ToggleClick")->connect_proxy (click_button);
|
|
|
|
ActionManager::get_action ("Transport", "TogglePunchIn")->connect_proxy (punch_in_button);
|
|
|
|
ActionManager::get_action ("Transport", "TogglePunchOut")->connect_proxy (punch_out_button);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-12-21 16:37:18 -05:00
|
|
|
preroll_button.unset_flags (CAN_FOCUS);
|
2005-10-09 01:03:29 -04:00
|
|
|
preroll_button.set_events (preroll_button.get_events() & ~(Gdk::ENTER_NOTIFY_MASK|Gdk::LEAVE_NOTIFY_MASK));
|
2005-09-25 14:42:24 -04:00
|
|
|
preroll_button.set_name ("TransportButton");
|
|
|
|
|
2005-12-21 16:37:18 -05:00
|
|
|
postroll_button.unset_flags (CAN_FOCUS);
|
2005-10-09 01:03:29 -04:00
|
|
|
postroll_button.set_events (postroll_button.get_events() & ~(Gdk::ENTER_NOTIFY_MASK|Gdk::LEAVE_NOTIFY_MASK));
|
2005-09-25 14:42:24 -04:00
|
|
|
postroll_button.set_name ("TransportButton");
|
|
|
|
|
|
|
|
preroll_clock.set_mode (AudioClock::MinSec);
|
|
|
|
preroll_clock.set_name ("TransportClockDisplay");
|
|
|
|
postroll_clock.set_mode (AudioClock::MinSec);
|
|
|
|
postroll_clock.set_name ("TransportClockDisplay");
|
|
|
|
|
|
|
|
/* alerts */
|
|
|
|
|
|
|
|
/* CANNOT bind these to clicked or toggled, must use pressed or released */
|
|
|
|
|
|
|
|
solo_alert_button.set_name ("TransportSoloAlert");
|
2005-10-09 01:03:29 -04:00
|
|
|
solo_alert_button.signal_pressed().connect (mem_fun(*this,&ARDOUR_UI::solo_alert_toggle));
|
2005-09-25 14:42:24 -04:00
|
|
|
auditioning_alert_button.set_name ("TransportAuditioningAlert");
|
2005-10-09 01:03:29 -04:00
|
|
|
auditioning_alert_button.signal_pressed().connect (mem_fun(*this,&ARDOUR_UI::audition_alert_toggle));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-10-21 15:01:50 -04:00
|
|
|
tooltips().set_tip (solo_alert_button, _("When active, something is soloed.\nClick to de-solo everything"));
|
|
|
|
tooltips().set_tip (auditioning_alert_button, _("When active, auditioning is taking place\nClick to stop the audition"));
|
|
|
|
|
2006-06-30 04:03:43 -04:00
|
|
|
alert_box.pack_start (solo_alert_button, false, false);
|
|
|
|
alert_box.pack_start (auditioning_alert_button, false, false);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-06-30 13:15:45 -04:00
|
|
|
transport_tearoff_hbox.set_border_width (3);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
transport_tearoff_hbox.pack_start (goto_start_button, false, false);
|
|
|
|
transport_tearoff_hbox.pack_start (goto_end_button, false, false);
|
|
|
|
|
2005-12-21 16:37:18 -05:00
|
|
|
Frame* sframe = manage (new Frame);
|
|
|
|
VBox* svbox = manage (new VBox);
|
|
|
|
HBox* shbox = manage (new HBox);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-12-21 16:37:18 -05:00
|
|
|
sframe->set_shadow_type (SHADOW_IN);
|
2005-09-25 14:42:24 -04:00
|
|
|
sframe->add (shuttle_box);
|
|
|
|
|
|
|
|
shuttle_box.set_name (X_("ShuttleControl"));
|
|
|
|
|
|
|
|
speed_display_box.add (speed_display_label);
|
|
|
|
speed_display_box.set_name (X_("ShuttleDisplay"));
|
|
|
|
|
|
|
|
shuttle_units_button.set_name (X_("ShuttleButton"));
|
2005-09-25 17:19:23 -04:00
|
|
|
shuttle_units_button.signal_clicked().connect (mem_fun(*this, &ARDOUR_UI::shuttle_unit_clicked));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
shuttle_style_button.set_name (X_("ShuttleButton"));
|
|
|
|
|
2005-12-21 16:37:18 -05:00
|
|
|
vector<string> shuttle_strings;
|
|
|
|
shuttle_strings.push_back (_("sprung"));
|
|
|
|
shuttle_strings.push_back (_("wheel"));
|
|
|
|
set_popdown_strings (shuttle_style_button, shuttle_strings);
|
|
|
|
shuttle_style_button.signal_changed().connect (mem_fun (*this, &ARDOUR_UI::shuttle_style_changed));
|
|
|
|
|
|
|
|
Frame* sdframe = manage (new Frame);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-12-21 16:37:18 -05:00
|
|
|
sdframe->set_shadow_type (SHADOW_IN);
|
2005-09-25 14:42:24 -04:00
|
|
|
sdframe->add (speed_display_box);
|
|
|
|
|
2006-01-07 21:56:49 -05:00
|
|
|
mtc_port_changed ();
|
2005-12-31 13:20:42 -05:00
|
|
|
sync_option_combo.signal_changed().connect (mem_fun (*this, &ARDOUR_UI::sync_option_changed));
|
2006-10-21 15:01:50 -04:00
|
|
|
const guint32 FUDGE = 25; // Combo's are stupid - they steal space from the entry for the button
|
|
|
|
set_size_request_to_display_given_text (sync_option_combo, X_("Igternal"), 2+FUDGE, 10);
|
2005-12-31 13:20:42 -05:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
shbox->pack_start (*sdframe, false, false);
|
|
|
|
shbox->pack_start (shuttle_units_button, true, true);
|
|
|
|
shbox->pack_start (shuttle_style_button, false, false);
|
|
|
|
|
|
|
|
svbox->pack_start (*sframe, false, false);
|
|
|
|
svbox->pack_start (*shbox, false, false);
|
|
|
|
|
2006-06-30 13:15:45 -04:00
|
|
|
transport_tearoff_hbox.pack_start (*svbox, false, false, 3);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
transport_tearoff_hbox.pack_start (auto_loop_button, false, false);
|
|
|
|
transport_tearoff_hbox.pack_start (play_selection_button, false, false);
|
|
|
|
transport_tearoff_hbox.pack_start (roll_button, false, false);
|
|
|
|
transport_tearoff_hbox.pack_start (stop_button, false, false);
|
2006-06-30 13:15:45 -04:00
|
|
|
transport_tearoff_hbox.pack_start (rec_button, false, false, 6);
|
2006-06-28 03:08:10 -04:00
|
|
|
|
|
|
|
HBox* clock_box = manage (new HBox);
|
|
|
|
clock_box->pack_start (primary_clock, false, false);
|
|
|
|
clock_box->pack_start (secondary_clock, false, false);
|
|
|
|
VBox* time_controls_box = manage (new VBox);
|
|
|
|
time_controls_box->pack_start (sync_option_combo, false, false);
|
|
|
|
time_controls_box->pack_start (time_master_button, false, false);
|
2006-06-30 13:15:45 -04:00
|
|
|
clock_box->pack_start (*time_controls_box, false, false, 1);
|
|
|
|
transport_tearoff_hbox.pack_start (*clock_box, false, false, 0);
|
|
|
|
|
|
|
|
HBox* toggle_box = manage(new HBox);
|
2006-06-28 03:08:10 -04:00
|
|
|
|
|
|
|
VBox* punch_box = manage (new VBox);
|
|
|
|
punch_box->pack_start (punch_in_button, false, false);
|
|
|
|
punch_box->pack_start (punch_out_button, false, false);
|
2006-06-30 13:15:45 -04:00
|
|
|
toggle_box->pack_start (*punch_box, false, false);
|
2006-06-28 03:08:10 -04:00
|
|
|
|
|
|
|
VBox* auto_box = manage (new VBox);
|
|
|
|
auto_box->pack_start (auto_play_button, false, false);
|
|
|
|
auto_box->pack_start (auto_return_button, false, false);
|
2006-06-30 13:15:45 -04:00
|
|
|
toggle_box->pack_start (*auto_box, false, false);
|
2006-06-28 03:08:10 -04:00
|
|
|
|
|
|
|
VBox* io_box = manage (new VBox);
|
|
|
|
io_box->pack_start (auto_input_button, false, false);
|
|
|
|
io_box->pack_start (click_button, false, false);
|
2006-06-30 13:15:45 -04:00
|
|
|
toggle_box->pack_start (*io_box, false, false);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
/* desensitize */
|
|
|
|
|
|
|
|
set_transport_sensitivity (false);
|
|
|
|
|
2006-06-30 13:15:45 -04:00
|
|
|
// toggle_box->pack_start (preroll_button, false, false);
|
|
|
|
// toggle_box->pack_start (preroll_clock, false, false);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-06-30 13:15:45 -04:00
|
|
|
// toggle_box->pack_start (postroll_button, false, false);
|
|
|
|
// toggle_box->pack_start (postroll_clock, false, false);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-06-30 13:15:45 -04:00
|
|
|
transport_tearoff_hbox.pack_start (*toggle_box, false, false, 4);
|
|
|
|
transport_tearoff_hbox.pack_start (alert_box, false, false);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2005-11-27 12:59:03 -05:00
|
|
|
void
|
|
|
|
ARDOUR_UI::manage_window (Window& win)
|
|
|
|
{
|
|
|
|
win.signal_delete_event().connect (bind (sigc::ptr_fun (just_hide_it), &win));
|
|
|
|
win.signal_enter_notify_event().connect (bind (mem_fun (Keyboard::the_keyboard(), &Keyboard::enter_window), &win));
|
|
|
|
win.signal_leave_notify_event().connect (bind (mem_fun (Keyboard::the_keyboard(), &Keyboard::leave_window), &win));
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2005-12-21 16:37:18 -05:00
|
|
|
ARDOUR_UI::detach_tearoff (Box* b, Widget* w)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2006-01-04 00:53:51 -05:00
|
|
|
// editor->ensure_float (transport_tearoff->tearoff_window());
|
2005-09-25 14:42:24 -04:00
|
|
|
b->remove (*w);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2005-12-21 16:37:18 -05:00
|
|
|
ARDOUR_UI::reattach_tearoff (Box* b, Widget* w, int32_t n)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
b->pack_start (*w);
|
|
|
|
b->reorder_child (*w, n);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::soloing_changed (bool onoff)
|
|
|
|
{
|
|
|
|
if (solo_alert_button.get_active() != onoff) {
|
|
|
|
solo_alert_button.set_active (onoff);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::_auditioning_changed (bool onoff)
|
|
|
|
{
|
|
|
|
if (auditioning_alert_button.get_active() != onoff) {
|
|
|
|
auditioning_alert_button.set_active (onoff);
|
|
|
|
set_transport_sensitivity (!onoff);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::auditioning_changed (bool onoff)
|
|
|
|
{
|
2006-10-21 15:01:50 -04:00
|
|
|
UI::instance()->call_slot(bind (mem_fun(*this, &ARDOUR_UI::_auditioning_changed), onoff));
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::audition_alert_toggle ()
|
|
|
|
{
|
|
|
|
if (session) {
|
|
|
|
session->cancel_audition();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::solo_alert_toggle ()
|
|
|
|
{
|
|
|
|
if (session) {
|
|
|
|
session->set_all_solo (!session->soloing());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::solo_blink (bool onoff)
|
|
|
|
{
|
|
|
|
if (session == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (session->soloing()) {
|
|
|
|
if (onoff) {
|
2005-12-21 16:37:18 -05:00
|
|
|
solo_alert_button.set_state (STATE_ACTIVE);
|
2005-09-25 14:42:24 -04:00
|
|
|
} else {
|
2005-12-21 16:37:18 -05:00
|
|
|
solo_alert_button.set_state (STATE_NORMAL);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
solo_alert_button.set_active (false);
|
2005-12-21 16:37:18 -05:00
|
|
|
solo_alert_button.set_state (STATE_NORMAL);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::audition_blink (bool onoff)
|
|
|
|
{
|
|
|
|
if (session == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (session->is_auditioning()) {
|
|
|
|
if (onoff) {
|
2005-12-21 16:37:18 -05:00
|
|
|
auditioning_alert_button.set_state (STATE_ACTIVE);
|
2005-09-25 14:42:24 -04:00
|
|
|
} else {
|
2005-12-21 16:37:18 -05:00
|
|
|
auditioning_alert_button.set_state (STATE_NORMAL);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
auditioning_alert_button.set_active (false);
|
2005-12-21 16:37:18 -05:00
|
|
|
auditioning_alert_button.set_state (STATE_NORMAL);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-03-12 13:21:48 -05:00
|
|
|
void
|
|
|
|
ARDOUR_UI::build_shuttle_context_menu ()
|
|
|
|
{
|
|
|
|
using namespace Menu_Helpers;
|
|
|
|
|
|
|
|
shuttle_context_menu = new Menu();
|
|
|
|
MenuList& items = shuttle_context_menu->items();
|
|
|
|
|
|
|
|
Menu* speed_menu = manage (new Menu());
|
|
|
|
MenuList& speed_items = speed_menu->items();
|
|
|
|
|
|
|
|
RadioMenuItem::Group group;
|
|
|
|
|
|
|
|
speed_items.push_back (RadioMenuElem (group, "8", bind (mem_fun (*this, &ARDOUR_UI::set_shuttle_max_speed), 8.0f)));
|
|
|
|
if (shuttle_max_speed == 8.0) {
|
|
|
|
static_cast<RadioMenuItem*>(&speed_items.back())->set_active ();
|
|
|
|
}
|
|
|
|
speed_items.push_back (RadioMenuElem (group, "6", bind (mem_fun (*this, &ARDOUR_UI::set_shuttle_max_speed), 6.0f)));
|
|
|
|
if (shuttle_max_speed == 6.0) {
|
|
|
|
static_cast<RadioMenuItem*>(&speed_items.back())->set_active ();
|
|
|
|
}
|
|
|
|
speed_items.push_back (RadioMenuElem (group, "4", bind (mem_fun (*this, &ARDOUR_UI::set_shuttle_max_speed), 4.0f)));
|
|
|
|
if (shuttle_max_speed == 4.0) {
|
|
|
|
static_cast<RadioMenuItem*>(&speed_items.back())->set_active ();
|
|
|
|
}
|
|
|
|
speed_items.push_back (RadioMenuElem (group, "3", bind (mem_fun (*this, &ARDOUR_UI::set_shuttle_max_speed), 3.0f)));
|
|
|
|
if (shuttle_max_speed == 3.0) {
|
|
|
|
static_cast<RadioMenuItem*>(&speed_items.back())->set_active ();
|
|
|
|
}
|
|
|
|
speed_items.push_back (RadioMenuElem (group, "2", bind (mem_fun (*this, &ARDOUR_UI::set_shuttle_max_speed), 2.0f)));
|
|
|
|
if (shuttle_max_speed == 2.0) {
|
|
|
|
static_cast<RadioMenuItem*>(&speed_items.back())->set_active ();
|
|
|
|
}
|
|
|
|
speed_items.push_back (RadioMenuElem (group, "1.5", bind (mem_fun (*this, &ARDOUR_UI::set_shuttle_max_speed), 1.5f)));
|
|
|
|
if (shuttle_max_speed == 1.5) {
|
|
|
|
static_cast<RadioMenuItem*>(&speed_items.back())->set_active ();
|
|
|
|
}
|
|
|
|
|
|
|
|
items.push_back (MenuElem (_("Maximum speed"), *speed_menu));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::show_shuttle_context_menu ()
|
|
|
|
{
|
|
|
|
if (shuttle_context_menu == 0) {
|
|
|
|
build_shuttle_context_menu ();
|
|
|
|
}
|
|
|
|
|
2007-01-09 18:24:54 -05:00
|
|
|
shuttle_context_menu->popup (1, gtk_get_current_event_time());
|
2006-03-12 13:21:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::set_shuttle_max_speed (float speed)
|
|
|
|
{
|
|
|
|
shuttle_max_speed = speed;
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
gint
|
|
|
|
ARDOUR_UI::shuttle_box_button_press (GdkEventButton* ev)
|
|
|
|
{
|
|
|
|
if (!session) {
|
2006-03-12 13:21:48 -05:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Keyboard::is_context_menu_event (ev)) {
|
|
|
|
show_shuttle_context_menu ();
|
|
|
|
return true;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
switch (ev->button) {
|
|
|
|
case 1:
|
2005-10-10 16:38:53 -04:00
|
|
|
shuttle_box.add_modal_grab ();
|
2005-09-25 14:42:24 -04:00
|
|
|
shuttle_grabbed = true;
|
|
|
|
mouse_shuttle (ev->x, true);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
case 3:
|
2006-03-12 13:21:48 -05:00
|
|
|
return true;
|
2005-09-25 14:42:24 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2006-03-12 13:21:48 -05:00
|
|
|
return true;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
ARDOUR_UI::shuttle_box_button_release (GdkEventButton* ev)
|
|
|
|
{
|
|
|
|
if (!session) {
|
2006-03-12 13:21:48 -05:00
|
|
|
return true;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
2006-03-12 13:21:48 -05:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
switch (ev->button) {
|
|
|
|
case 1:
|
|
|
|
mouse_shuttle (ev->x, true);
|
|
|
|
shuttle_grabbed = false;
|
2005-10-10 16:38:53 -04:00
|
|
|
shuttle_box.remove_modal_grab ();
|
2006-10-21 15:01:50 -04:00
|
|
|
if (Config->get_shuttle_behaviour() == Sprung) {
|
|
|
|
if (Config->get_auto_play() || roll_button.get_state()) {
|
2006-06-13 03:27:52 -04:00
|
|
|
shuttle_fract = SHUTTLE_FRACT_SPEED1;
|
|
|
|
session->request_transport_speed (1.0);
|
|
|
|
stop_button.set_active (false);
|
|
|
|
roll_button.set_active (true);
|
|
|
|
} else {
|
|
|
|
shuttle_fract = 0;
|
|
|
|
session->request_transport_speed (0.0);
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
shuttle_box.queue_draw ();
|
|
|
|
}
|
2006-03-12 13:21:48 -05:00
|
|
|
return true;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
case 2:
|
|
|
|
if (session->transport_rolling()) {
|
|
|
|
shuttle_fract = SHUTTLE_FRACT_SPEED1;
|
|
|
|
session->request_transport_speed (1.0);
|
2006-06-13 03:27:52 -04:00
|
|
|
stop_button.set_active (false);
|
|
|
|
roll_button.set_active (true);
|
2005-09-25 14:42:24 -04:00
|
|
|
} else {
|
|
|
|
shuttle_fract = 0;
|
|
|
|
}
|
|
|
|
shuttle_box.queue_draw ();
|
2006-03-12 13:21:48 -05:00
|
|
|
return true;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
case 3:
|
2006-03-12 13:21:48 -05:00
|
|
|
return true;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
case 4:
|
|
|
|
shuttle_fract += 0.005;
|
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
shuttle_fract -= 0.005;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
use_shuttle_fract (true);
|
2006-04-09 22:14:05 -04:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
ARDOUR_UI::shuttle_box_scroll (GdkEventScroll* ev)
|
|
|
|
{
|
|
|
|
if (!session) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (ev->direction) {
|
|
|
|
|
|
|
|
case GDK_SCROLL_UP:
|
|
|
|
shuttle_fract += 0.005;
|
|
|
|
break;
|
|
|
|
case GDK_SCROLL_DOWN:
|
|
|
|
shuttle_fract -= 0.005;
|
|
|
|
break;
|
2006-04-20 14:14:00 -04:00
|
|
|
default:
|
|
|
|
/* scroll left/right */
|
|
|
|
return false;
|
2006-04-09 22:14:05 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
use_shuttle_fract (true);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-03-12 13:21:48 -05:00
|
|
|
return true;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
ARDOUR_UI::shuttle_box_motion (GdkEventMotion* ev)
|
|
|
|
{
|
|
|
|
if (!session || !shuttle_grabbed) {
|
2006-03-12 13:21:48 -05:00
|
|
|
return true;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return mouse_shuttle (ev->x, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
ARDOUR_UI::mouse_shuttle (double x, bool force)
|
|
|
|
{
|
2005-10-09 01:03:29 -04:00
|
|
|
double half_width = shuttle_box.get_width() / 2.0;
|
2005-09-25 14:42:24 -04:00
|
|
|
double distance = x - half_width;
|
|
|
|
|
|
|
|
if (distance > 0) {
|
|
|
|
distance = min (distance, half_width);
|
|
|
|
} else {
|
|
|
|
distance = max (distance, -half_width);
|
|
|
|
}
|
|
|
|
|
|
|
|
shuttle_fract = distance / half_width;
|
|
|
|
use_shuttle_fract (force);
|
2006-03-12 13:21:48 -05:00
|
|
|
return true;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::use_shuttle_fract (bool force)
|
|
|
|
{
|
|
|
|
struct timeval now;
|
|
|
|
struct timeval diff;
|
|
|
|
|
|
|
|
/* do not attempt to submit a motion-driven transport speed request
|
|
|
|
more than once per process cycle.
|
|
|
|
*/
|
|
|
|
|
|
|
|
gettimeofday (&now, 0);
|
|
|
|
timersub (&now, &last_shuttle_request, &diff);
|
|
|
|
|
|
|
|
if (!force && (diff.tv_usec + (diff.tv_sec * 1000000)) < engine->usecs_per_cycle()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
last_shuttle_request = now;
|
|
|
|
|
|
|
|
bool neg = (shuttle_fract < 0.0);
|
|
|
|
|
|
|
|
double fract = 1 - sqrt (1 - (shuttle_fract * shuttle_fract)); // Formula A1
|
|
|
|
|
|
|
|
if (neg) {
|
|
|
|
fract = -fract;
|
|
|
|
}
|
|
|
|
|
2006-03-12 13:21:48 -05:00
|
|
|
session->request_transport_speed (shuttle_max_speed * fract); // Formula A2
|
2005-09-25 14:42:24 -04:00
|
|
|
shuttle_box.queue_draw ();
|
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
ARDOUR_UI::shuttle_box_expose (GdkEventExpose* event)
|
|
|
|
{
|
|
|
|
gint x;
|
2005-10-10 16:38:53 -04:00
|
|
|
Glib::RefPtr<Gdk::Window> win (shuttle_box.get_window());
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
/* redraw the background */
|
|
|
|
|
2005-10-10 16:38:53 -04:00
|
|
|
win->draw_rectangle (shuttle_box.get_style()->get_bg_gc (shuttle_box.get_state()),
|
|
|
|
true,
|
|
|
|
event->area.x, event->area.y,
|
|
|
|
event->area.width, event->area.height);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
|
2005-10-09 01:03:29 -04:00
|
|
|
x = (gint) floor ((shuttle_box.get_width() / 2.0) + (0.5 * (shuttle_box.get_width() * shuttle_fract)));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
/* draw line */
|
|
|
|
|
2005-10-10 16:38:53 -04:00
|
|
|
win->draw_line (shuttle_box.get_style()->get_fg_gc (shuttle_box.get_state()),
|
|
|
|
x,
|
|
|
|
0,
|
|
|
|
x,
|
|
|
|
shuttle_box.get_height());
|
2006-03-12 13:21:48 -05:00
|
|
|
return true;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::shuttle_unit_clicked ()
|
|
|
|
{
|
2005-11-28 10:29:49 -05:00
|
|
|
if (shuttle_unit_menu == 0) {
|
2005-12-11 23:42:39 -05:00
|
|
|
shuttle_unit_menu = dynamic_cast<Menu*> (ActionManager::get_widget ("/ShuttleUnitPopup"));
|
2005-11-28 10:29:49 -05:00
|
|
|
}
|
2007-01-09 18:24:54 -05:00
|
|
|
shuttle_unit_menu->popup (1, gtk_get_current_event_time());
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2005-12-21 16:37:18 -05:00
|
|
|
void
|
|
|
|
ARDOUR_UI::shuttle_style_changed ()
|
|
|
|
{
|
|
|
|
ustring str = shuttle_style_button.get_active_text ();
|
|
|
|
|
|
|
|
if (str == _("sprung")) {
|
2006-10-21 15:01:50 -04:00
|
|
|
Config->set_shuttle_behaviour (Sprung);
|
2005-12-21 16:37:18 -05:00
|
|
|
} else if (str == _("wheel")) {
|
2006-10-21 15:01:50 -04:00
|
|
|
Config->set_shuttle_behaviour (Wheel);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::update_speed_display ()
|
|
|
|
{
|
|
|
|
if (!session) {
|
2006-01-01 12:06:15 -05:00
|
|
|
if (last_speed_displayed != 0) {
|
2006-06-30 13:15:45 -04:00
|
|
|
speed_display_label.set_text (_("stop"));
|
2006-01-01 12:06:15 -05:00
|
|
|
last_speed_displayed = 0;
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
char buf[32];
|
|
|
|
float x = session->transport_speed ();
|
|
|
|
|
2006-01-01 12:06:15 -05:00
|
|
|
if (x != last_speed_displayed) {
|
|
|
|
|
|
|
|
if (x != 0) {
|
2006-10-21 15:01:50 -04:00
|
|
|
if (Config->get_shuttle_units() == Percentage) {
|
2006-06-30 13:15:45 -04:00
|
|
|
snprintf (buf, sizeof (buf), "%.2f", x);
|
2005-09-25 14:42:24 -04:00
|
|
|
} else {
|
2006-01-01 12:06:15 -05:00
|
|
|
if (x < 0) {
|
|
|
|
snprintf (buf, sizeof (buf), "< %.1f", 12.0 * fast_log2 (-x));
|
|
|
|
} else {
|
|
|
|
snprintf (buf, sizeof (buf), "> %.1f", 12.0 * fast_log2 (x));
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
2006-01-01 12:06:15 -05:00
|
|
|
speed_display_label.set_text (buf);
|
|
|
|
} else {
|
2006-06-30 13:15:45 -04:00
|
|
|
speed_display_label.set_text (_("stop"));
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
2006-01-01 12:06:15 -05:00
|
|
|
|
|
|
|
last_speed_displayed = x;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::set_transport_sensitivity (bool yn)
|
|
|
|
{
|
2005-12-21 16:37:18 -05:00
|
|
|
ActionManager::set_sensitive (ActionManager::transport_sensitive_actions, yn);
|
2005-09-25 14:42:24 -04:00
|
|
|
shuttle_box.set_sensitive (yn);
|
|
|
|
}
|
2005-12-21 16:37:18 -05:00
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::editor_realized ()
|
|
|
|
{
|
2006-10-21 15:01:50 -04:00
|
|
|
Config->map_parameters (mem_fun (*this, &ARDOUR_UI::parameter_changed));
|
|
|
|
|
2006-06-30 13:15:45 -04:00
|
|
|
set_size_request_to_display_given_text (speed_display_box, _("-0.55"), 2, 2);
|
2006-10-21 15:01:50 -04:00
|
|
|
const guint32 FUDGE = 25; // Combo's are stupid - they steal space from the entry for the button
|
2005-12-21 16:37:18 -05:00
|
|
|
set_size_request_to_display_given_text (shuttle_style_button, _("sprung"), 2+FUDGE, 10);
|
|
|
|
}
|
2005-12-31 13:20:42 -05:00
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::sync_option_changed ()
|
|
|
|
{
|
2006-10-21 15:01:50 -04:00
|
|
|
if (session) {
|
|
|
|
session->request_slave_source (string_to_slave_source (sync_option_combo.get_active_text()));
|
2005-12-31 13:20:42 -05:00
|
|
|
}
|
|
|
|
}
|
2006-01-19 13:05:31 -05:00
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::maximise_editing_space ()
|
|
|
|
{
|
|
|
|
if (!editor) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
transport_tearoff->set_visible (false);
|
|
|
|
editor->maximise_editing_space ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::restore_editing_space ()
|
|
|
|
{
|
|
|
|
if (!editor) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
transport_tearoff->set_visible (true);
|
|
|
|
editor->restore_editing_space ();
|
|
|
|
}
|