2005-09-25 14:42:24 -04:00
|
|
|
/*
|
|
|
|
Copyright (C) 2000-2003 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$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ardour_editor_h__
|
|
|
|
#define __ardour_editor_h__
|
|
|
|
|
|
|
|
#include <list>
|
|
|
|
#include <map>
|
|
|
|
#include <set>
|
|
|
|
#include <string>
|
|
|
|
#include <sys/time.h>
|
|
|
|
|
2005-11-14 11:24:21 -05:00
|
|
|
#include <libgnomecanvasmm/canvas.h>
|
|
|
|
#include <libgnomecanvasmm/group.h>
|
|
|
|
#include <libgnomecanvasmm/line.h>
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
#include <cmath>
|
|
|
|
|
2005-09-25 16:33:00 -04:00
|
|
|
#include <gtkmm/layout.h>
|
2005-09-26 10:33:53 -04:00
|
|
|
#include <gtkmm/comboboxtext.h>
|
2005-10-22 11:30:17 -04:00
|
|
|
|
2005-09-25 16:33:00 -04:00
|
|
|
#include <gtkmm2ext/selector.h>
|
|
|
|
#include <gtkmm2ext/click_box.h>
|
2005-12-29 19:34:21 -05:00
|
|
|
#include <gtkmm2ext/dndtreeview.h>
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-08-03 22:18:45 -04:00
|
|
|
#include <pbd/stateful.h>
|
2005-09-25 14:42:24 -04:00
|
|
|
#include <ardour/session.h>
|
|
|
|
#include <ardour/tempo.h>
|
|
|
|
#include <ardour/location.h>
|
2007-01-17 13:42:21 -05:00
|
|
|
#include <ardour/audioregion.h>
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#include "audio_clock.h"
|
|
|
|
#include "gtk-custom-ruler.h"
|
|
|
|
#include "ardour_dialog.h"
|
|
|
|
#include "public_editor.h"
|
|
|
|
#include "editing.h"
|
|
|
|
#include "enums.h"
|
2006-05-17 22:19:27 -04:00
|
|
|
#include "editor_items.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
#include "region_selection.h"
|
2005-11-14 11:24:21 -05:00
|
|
|
#include "canvas.h"
|
2006-03-07 21:50:53 -05:00
|
|
|
#include "draginfo.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-09-25 16:33:00 -04:00
|
|
|
namespace Gtkmm2ext {
|
2005-09-25 14:42:24 -04:00
|
|
|
class TearOff;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace LinuxAudioSystems {
|
|
|
|
class AudioEngine;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace ARDOUR {
|
2006-06-22 19:40:55 -04:00
|
|
|
class AudioDiskstream;
|
2005-09-25 14:42:24 -04:00
|
|
|
class RouteGroup;
|
|
|
|
class Playlist;
|
2006-08-03 22:18:45 -04:00
|
|
|
class AudioPlaylist;
|
2005-09-25 14:42:24 -04:00
|
|
|
class Region;
|
|
|
|
class Location;
|
|
|
|
class TempoSection;
|
|
|
|
class NamedSelection;
|
|
|
|
class Session;
|
|
|
|
class AudioFilter;
|
|
|
|
class Crossfade;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace LADSPA {
|
|
|
|
class Plugin;
|
|
|
|
}
|
|
|
|
|
|
|
|
class TimeAxisView;
|
2006-08-03 22:18:45 -04:00
|
|
|
class RouteTimeAxisView;
|
2005-09-25 14:42:24 -04:00
|
|
|
class AudioTimeAxisView;
|
|
|
|
class AutomationTimeAxisView;
|
|
|
|
class AudioRegionView;
|
|
|
|
class CrossfadeView;
|
|
|
|
class PluginSelector;
|
|
|
|
class PlaylistSelector;
|
|
|
|
class Marker;
|
|
|
|
class GroupedButtons;
|
|
|
|
class AutomationLine;
|
|
|
|
class UIExportSpecification;
|
|
|
|
class ExportDialog;
|
|
|
|
class Selection;
|
|
|
|
class TimeSelection;
|
|
|
|
class TrackSelection;
|
|
|
|
class AutomationSelection;
|
|
|
|
class MixerStrip;
|
|
|
|
class StreamView;
|
2006-08-03 22:18:45 -04:00
|
|
|
class AudioStreamView;
|
2005-09-25 14:42:24 -04:00
|
|
|
class ControlPoint;
|
2006-03-12 22:27:58 -05:00
|
|
|
#ifdef FFT_ANALYSIS
|
2006-03-12 17:06:41 -05:00
|
|
|
class AnalysisWindow;
|
2006-03-12 22:27:58 -05:00
|
|
|
#endif
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
/* <CMT Additions> */
|
|
|
|
class ImageFrameView;
|
|
|
|
class ImageFrameTimeAxisView;
|
|
|
|
class ImageFrameTimeAxis;
|
|
|
|
class MarkerTimeAxis ;
|
|
|
|
class MarkerView ;
|
|
|
|
class ImageFrameSocketHandler ;
|
|
|
|
class TimeAxisViewItem ;
|
|
|
|
/* </CMT Additions> */
|
|
|
|
|
|
|
|
|
|
|
|
class Editor : public PublicEditor
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Editor (ARDOUR::AudioEngine&);
|
|
|
|
~Editor ();
|
|
|
|
|
|
|
|
void connect_to_session (ARDOUR::Session *);
|
|
|
|
ARDOUR::Session* current_session() const { return session; }
|
|
|
|
|
2006-09-28 13:23:52 -04:00
|
|
|
nframes_t leftmost_position() const { return leftmost_frame; }
|
|
|
|
nframes_t current_page_frames() const {
|
|
|
|
return (nframes_t) floor (canvas_width * frames_per_unit);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void set_snap_to (Editing::SnapType);
|
|
|
|
void set_snap_mode (Editing::SnapMode);
|
|
|
|
void set_snap_threshold (double pixel_distance) {snap_threshold = pixel_distance;}
|
|
|
|
|
|
|
|
void undo (uint32_t n = 1);
|
|
|
|
void redo (uint32_t n = 1);
|
|
|
|
|
|
|
|
XMLNode& get_state ();
|
|
|
|
int set_state (const XMLNode& );
|
|
|
|
|
|
|
|
void set_mouse_mode (Editing::MouseMode, bool force=true);
|
|
|
|
void step_mouse_mode (bool next);
|
|
|
|
Editing::MouseMode current_mouse_mode () { return mouse_mode; }
|
|
|
|
|
2005-12-22 07:23:54 -05:00
|
|
|
void add_imageframe_time_axis(const string & track_name, void*) ;
|
|
|
|
void add_imageframe_marker_time_axis(const string & track_name, TimeAxisView* marked_track, void*) ;
|
2005-09-25 14:42:24 -04:00
|
|
|
void connect_to_image_compositor() ;
|
|
|
|
void scroll_timeaxis_to_imageframe_item(const TimeAxisViewItem* item) ;
|
2005-12-22 07:23:54 -05:00
|
|
|
TimeAxisView* get_named_time_axis(const string & name) ;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-08-24 21:07:15 -04:00
|
|
|
void consider_auditioning (boost::shared_ptr<ARDOUR::Region>);
|
|
|
|
void hide_a_region (boost::shared_ptr<ARDOUR::Region>);
|
|
|
|
void remove_a_region (boost::shared_ptr<ARDOUR::Region>);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
/* option editor-access */
|
|
|
|
|
|
|
|
void set_show_waveforms (bool yn);
|
|
|
|
bool show_waveforms() const { return _show_waveforms; }
|
|
|
|
|
|
|
|
void set_show_waveforms_recording (bool yn);
|
|
|
|
bool show_waveforms_recording() const { return _show_waveforms_recording; }
|
|
|
|
|
|
|
|
/* things that need to be public to be used in the main menubar */
|
|
|
|
|
|
|
|
void new_region_from_selection ();
|
|
|
|
void separate_region_from_selection ();
|
2006-03-31 19:21:25 -05:00
|
|
|
void separate_regions_using_location (ARDOUR::Location&);
|
2005-09-25 14:42:24 -04:00
|
|
|
void toggle_playback (bool with_abort);
|
2007-01-23 17:29:45 -05:00
|
|
|
void transition_to_rolling (bool forward);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
/* undo related */
|
|
|
|
|
2006-09-28 13:23:52 -04:00
|
|
|
nframes_t unit_to_frame (double unit) {
|
|
|
|
return (nframes_t) rint (unit * frames_per_unit);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2006-09-28 13:23:52 -04:00
|
|
|
double frame_to_unit (nframes_t frame) {
|
2005-09-25 14:42:24 -04:00
|
|
|
return rint ((double) frame / (double) frames_per_unit);
|
|
|
|
}
|
|
|
|
|
|
|
|
double frame_to_unit (double frame) {
|
|
|
|
return rint (frame / frames_per_unit);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* NOTE: these functions assume that the "pixel" coordinate is
|
|
|
|
the result of using the world->canvas affine transform on a
|
|
|
|
world coordinate. These coordinates already take into
|
|
|
|
account any scrolling carried out by adjusting the
|
|
|
|
xscroll_adjustment.
|
|
|
|
*/
|
|
|
|
|
2006-09-28 13:23:52 -04:00
|
|
|
nframes_t pixel_to_frame (double pixel) {
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
/* pixel can be less than zero when motion events
|
|
|
|
are processed. since we've already run the world->canvas
|
|
|
|
affine, that means that the location *really* is "off
|
|
|
|
to the right" and thus really is "before the start".
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (pixel >= 0) {
|
2006-09-28 13:23:52 -04:00
|
|
|
return (nframes_t) rint (pixel * frames_per_unit * GNOME_CANVAS(track_canvas.gobj())->pixels_per_unit);
|
2005-09-25 14:42:24 -04:00
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-09-28 13:23:52 -04:00
|
|
|
gulong frame_to_pixel (nframes_t frame) {
|
2005-10-22 11:30:17 -04:00
|
|
|
return (gulong) rint ((frame / (frames_per_unit * GNOME_CANVAS(track_canvas.gobj())->pixels_per_unit)));
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* selection */
|
|
|
|
|
|
|
|
Selection& get_selection() const { return *selection; }
|
|
|
|
Selection& get_cut_buffer() const { return *cut_buffer; }
|
|
|
|
|
2006-12-19 15:11:42 -05:00
|
|
|
bool extend_selection_to_track (TimeAxisView&);
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void play_selection ();
|
2006-03-05 14:39:16 -05:00
|
|
|
void select_all_in_track (Selection::Operation op);
|
|
|
|
void select_all (Selection::Operation op);
|
2005-09-25 14:42:24 -04:00
|
|
|
void invert_selection_in_track ();
|
|
|
|
void invert_selection ();
|
|
|
|
|
|
|
|
/* tempo */
|
|
|
|
|
|
|
|
void set_show_measures (bool yn);
|
|
|
|
bool show_measures () const { return _show_measures; }
|
2006-09-10 13:49:03 -04:00
|
|
|
bool initial_ruler_update_required;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-03-12 22:27:58 -05:00
|
|
|
#ifdef FFT_ANALYSIS
|
2006-03-12 17:06:41 -05:00
|
|
|
/* analysis window */
|
2006-03-12 17:35:39 -05:00
|
|
|
void analyze_region_selection();
|
|
|
|
void analyze_range_selection();
|
2006-03-12 22:27:58 -05:00
|
|
|
#endif
|
2006-03-12 17:06:41 -05:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
/* export */
|
|
|
|
|
|
|
|
/* these initiate export ... */
|
|
|
|
|
|
|
|
void export_session();
|
|
|
|
void export_selection();
|
|
|
|
|
|
|
|
|
|
|
|
void add_toplevel_controls (Gtk::Container&);
|
|
|
|
|
|
|
|
void set_zoom_focus (Editing::ZoomFocus);
|
|
|
|
Editing::ZoomFocus get_zoom_focus () const { return zoom_focus; }
|
|
|
|
gdouble get_current_zoom () { return frames_per_unit; }
|
|
|
|
|
|
|
|
void temporal_zoom_step (bool coarser);
|
|
|
|
|
|
|
|
/* stuff that AudioTimeAxisView and related classes use */
|
|
|
|
|
|
|
|
PlaylistSelector& playlist_selector() const;
|
|
|
|
void route_name_changed (TimeAxisView *);
|
|
|
|
gdouble frames_per_unit;
|
2006-09-28 13:23:52 -04:00
|
|
|
nframes_t leftmost_frame;
|
2006-12-14 09:15:43 -05:00
|
|
|
void clear_playlist (boost::shared_ptr<ARDOUR::Playlist>);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-03-07 21:50:53 -05:00
|
|
|
void new_playlists ();
|
|
|
|
void copy_playlists ();
|
|
|
|
void clear_playlists ();
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
TrackViewList* get_valid_views (TimeAxisView*, ARDOUR::RouteGroup* grp = 0);
|
|
|
|
|
|
|
|
Width editor_mixer_strip_width;
|
|
|
|
void show_editor_mixer (bool yn);
|
|
|
|
void set_selected_mixer_strip (TimeAxisView&);
|
2006-01-09 23:25:47 -05:00
|
|
|
void hide_track_in_display (TimeAxisView& tv);
|
|
|
|
void show_track_in_display (TimeAxisView& tv);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
/* nudge is initiated by transport controls owned by ARDOUR_UI */
|
|
|
|
|
|
|
|
void nudge_forward (bool next);
|
|
|
|
void nudge_backward (bool next);
|
|
|
|
|
|
|
|
/* nudge initiated from context menu */
|
|
|
|
|
|
|
|
void nudge_forward_capture_offset ();
|
|
|
|
void nudge_backward_capture_offset ();
|
|
|
|
|
|
|
|
/* playhead/screen stuff */
|
|
|
|
|
|
|
|
void set_follow_playhead (bool yn);
|
|
|
|
void toggle_follow_playhead ();
|
|
|
|
bool follow_playhead() const { return _follow_playhead; }
|
2006-12-01 12:32:41 -05:00
|
|
|
bool dragging_playhead () const { return _dragging_playhead; }
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-01-07 21:56:49 -05:00
|
|
|
void toggle_waveform_visibility ();
|
|
|
|
void toggle_waveforms_while_recording ();
|
|
|
|
void toggle_measure_visibility ();
|
|
|
|
|
2006-09-18 12:50:42 -04:00
|
|
|
/* SMPTE timecode & video sync */
|
|
|
|
|
2007-01-02 08:57:06 -05:00
|
|
|
void smpte_fps_chosen (ARDOUR::SmpteFormat format);
|
2006-09-18 12:50:42 -04:00
|
|
|
void video_pullup_chosen (ARDOUR::Session::PullupFormat pullup);
|
2006-11-20 09:27:56 -05:00
|
|
|
void subframes_per_frame_chosen (uint32_t);
|
2006-09-18 12:50:42 -04:00
|
|
|
|
|
|
|
void update_smpte_mode();
|
|
|
|
void update_video_pullup();
|
2006-11-20 09:27:56 -05:00
|
|
|
void update_subframes_per_frame ();
|
2005-09-25 14:42:24 -04:00
|
|
|
/* xfades */
|
|
|
|
|
2006-03-21 10:27:57 -05:00
|
|
|
void toggle_auto_xfade ();
|
|
|
|
void toggle_xfades_active ();
|
2005-09-25 14:42:24 -04:00
|
|
|
void toggle_xfade_visibility ();
|
|
|
|
bool xfade_visibility() const { return _xfade_visibility; }
|
2006-03-21 10:27:57 -05:00
|
|
|
void update_crossfade_model ();
|
|
|
|
void set_crossfade_model (ARDOUR::CrossfadeModel);
|
|
|
|
|
2006-09-18 12:50:42 -04:00
|
|
|
/* layers */
|
2006-09-25 17:24:00 -04:00
|
|
|
void set_layer_model (ARDOUR::LayerModel);
|
2006-03-21 10:27:57 -05:00
|
|
|
void update_layering_model ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
/* redirect shared ops menu. caller must free returned menu */
|
|
|
|
|
|
|
|
Gtk::Menu* redirect_menu ();
|
|
|
|
|
|
|
|
/* floating windows/transient */
|
|
|
|
|
|
|
|
void ensure_float (Gtk::Window&);
|
|
|
|
|
|
|
|
void show_window ();
|
2006-04-06 12:51:27 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void scroll_tracks_down_line ();
|
|
|
|
void scroll_tracks_up_line ();
|
|
|
|
|
|
|
|
bool new_regionviews_display_gain () { return _new_regionviews_show_envelope; }
|
|
|
|
void prepare_for_cleanup ();
|
|
|
|
|
2006-01-19 13:05:31 -05:00
|
|
|
void maximise_editing_space();
|
|
|
|
void restore_editing_space();
|
|
|
|
|
2007-01-10 21:30:56 -05:00
|
|
|
void reset_x_origin (nframes_t);
|
|
|
|
void reset_zoom (double);
|
|
|
|
void reposition_and_zoom (nframes_t, double);
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
protected:
|
|
|
|
void map_transport_state ();
|
2006-09-28 13:23:52 -04:00
|
|
|
void map_position_change (nframes_t);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-09-25 22:48:59 -04:00
|
|
|
void on_realize();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
ARDOUR::Session *session;
|
|
|
|
ARDOUR::AudioEngine& engine;
|
|
|
|
bool constructed;
|
|
|
|
|
|
|
|
PlaylistSelector* _playlist_selector;
|
|
|
|
|
|
|
|
void set_frames_per_unit (double);
|
|
|
|
|
|
|
|
Editing::MouseMode mouse_mode;
|
|
|
|
|
2006-11-17 15:37:57 -05:00
|
|
|
int post_maximal_editor_width;
|
|
|
|
int post_maximal_pane_position;
|
2006-01-19 13:05:31 -05:00
|
|
|
int pre_maximal_pane_position;
|
2006-11-16 13:42:48 -05:00
|
|
|
int pre_maximal_editor_width;
|
2005-11-12 17:07:07 -05:00
|
|
|
void pane_allocation_handler (Gtk::Allocation&, Gtk::Paned*);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-12-07 12:15:37 -05:00
|
|
|
Gtk::Notebook the_notebook;
|
|
|
|
Gtk::HPaned edit_pane;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
Gtk::EventBox meter_base;
|
|
|
|
Gtk::HBox meter_box;
|
|
|
|
Gtk::EventBox marker_base;
|
|
|
|
Gtk::HBox marker_box;
|
|
|
|
Gtk::VBox scrollers_rulers_markers_box;
|
|
|
|
|
|
|
|
void location_changed (ARDOUR::Location *);
|
|
|
|
void location_flags_changed (ARDOUR::Location *, void *);
|
|
|
|
void refresh_location_display ();
|
|
|
|
void refresh_location_display_s (ARDOUR::Change);
|
|
|
|
void refresh_location_display_internal (ARDOUR::Locations::LocationList&);
|
|
|
|
void add_new_location (ARDOUR::Location *);
|
|
|
|
void location_gone (ARDOUR::Location *);
|
2005-11-14 11:24:21 -05:00
|
|
|
void remove_marker (ArdourCanvas::Item&, GdkEvent*);
|
2005-09-25 14:42:24 -04:00
|
|
|
gint really_remove_marker (ARDOUR::Location* loc);
|
|
|
|
|
|
|
|
uint32_t location_marker_color;
|
|
|
|
uint32_t location_range_color;
|
|
|
|
uint32_t location_loop_color;
|
|
|
|
uint32_t location_punch_color;
|
|
|
|
uint32_t location_cd_marker_color;
|
|
|
|
|
|
|
|
struct LocationMarkers {
|
|
|
|
Marker* start;
|
|
|
|
Marker* end;
|
|
|
|
|
|
|
|
~LocationMarkers ();
|
|
|
|
|
|
|
|
void hide();
|
|
|
|
void show ();
|
|
|
|
void set_name (const string&);
|
2006-09-28 13:23:52 -04:00
|
|
|
void set_position (nframes_t start, nframes_t end = 0);
|
2005-09-25 14:42:24 -04:00
|
|
|
void set_color_rgba (uint32_t);
|
|
|
|
};
|
|
|
|
|
|
|
|
LocationMarkers *find_location_markers (ARDOUR::Location *);
|
|
|
|
ARDOUR::Location* find_location_from_marker (Marker *, bool& is_start);
|
|
|
|
|
2005-10-05 09:48:09 -04:00
|
|
|
typedef std::map<ARDOUR::Location*,LocationMarkers *> LocationMarkerMap;
|
2005-09-25 14:42:24 -04:00
|
|
|
LocationMarkerMap location_markers;
|
|
|
|
|
2005-11-14 11:24:21 -05:00
|
|
|
void hide_marker (ArdourCanvas::Item*, GdkEvent*);
|
2005-09-25 14:42:24 -04:00
|
|
|
void clear_marker_display ();
|
2006-09-28 13:23:52 -04:00
|
|
|
void mouse_add_new_marker (nframes_t where);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
TimeAxisView* clicked_trackview;
|
|
|
|
AudioTimeAxisView* clicked_audio_trackview;
|
2006-08-03 22:18:45 -04:00
|
|
|
RegionView* clicked_regionview;
|
|
|
|
RegionView* latest_regionview;
|
2005-09-25 14:42:24 -04:00
|
|
|
uint32_t clicked_selection;
|
|
|
|
CrossfadeView* clicked_crossfadeview;
|
|
|
|
ControlPoint* clicked_control_point;
|
|
|
|
|
2007-01-16 20:42:44 -05:00
|
|
|
void sort_track_selection ();
|
|
|
|
|
2006-11-09 15:38:39 -05:00
|
|
|
void get_relevant_audio_tracks (std::set<AudioTimeAxisView*>& relevant_tracks);
|
2007-01-18 11:45:29 -05:00
|
|
|
void get_equivalent_regions (RegionView* rv, std::vector<RegionView*>&);
|
2006-03-07 21:50:53 -05:00
|
|
|
void mapover_audio_tracks (sigc::slot<void,AudioTimeAxisView&,uint32_t> sl);
|
2006-03-05 14:39:16 -05:00
|
|
|
|
|
|
|
/* functions to be passed to mapover_audio_tracks(), possibly with sigc::bind()-supplied arguments */
|
|
|
|
|
2007-01-18 11:45:29 -05:00
|
|
|
void mapped_get_equivalent_regions (RouteTimeAxisView&, uint32_t, RegionView*, vector<RegionView*>*);
|
2006-03-07 21:50:53 -05:00
|
|
|
void mapped_use_new_playlist (AudioTimeAxisView&, uint32_t);
|
|
|
|
void mapped_use_copy_playlist (AudioTimeAxisView&, uint32_t);
|
|
|
|
void mapped_clear_playlist (AudioTimeAxisView&, uint32_t);
|
2006-03-05 14:39:16 -05:00
|
|
|
|
|
|
|
/* end */
|
|
|
|
|
2006-05-30 22:46:04 -04:00
|
|
|
void button_selection (ArdourCanvas::Item* item, GdkEvent* event, ItemType item_type);
|
|
|
|
bool button_release_can_deselect;
|
|
|
|
|
2006-08-03 22:18:45 -04:00
|
|
|
void catch_vanishing_regionview (RegionView *);
|
2006-05-30 22:46:04 -04:00
|
|
|
|
2006-11-02 00:13:53 -05:00
|
|
|
bool set_selected_track (TimeAxisView&, Selection::Operation op = Selection::Set, bool no_remove=false);
|
2007-02-06 10:50:05 -05:00
|
|
|
void select_all_tracks ();
|
2006-11-02 00:13:53 -05:00
|
|
|
|
|
|
|
bool set_selected_control_point_from_click (Selection::Operation op = Selection::Set, bool no_remove=false);
|
2007-01-17 22:06:15 -05:00
|
|
|
bool set_selected_track_from_click (bool press, Selection::Operation op = Selection::Set, bool no_remove=false);
|
2006-05-30 22:46:04 -04:00
|
|
|
bool set_selected_regionview_from_click (bool press, Selection::Operation op = Selection::Set, bool no_track_remove=false);
|
|
|
|
|
2006-08-24 21:07:15 -04:00
|
|
|
void set_selected_regionview_from_region_list (boost::shared_ptr<ARDOUR::Region> region, Selection::Operation op = Selection::Set);
|
2006-10-21 01:12:11 -04:00
|
|
|
bool set_selected_regionview_from_map_event (GdkEventAny*, StreamView*, boost::weak_ptr<ARDOUR::Region>);
|
2006-08-03 22:18:45 -04:00
|
|
|
void collect_new_region_view (RegionView *);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
Gtk::Menu track_context_menu;
|
|
|
|
Gtk::Menu track_region_context_menu;
|
|
|
|
Gtk::Menu track_selection_context_menu;
|
|
|
|
Gtk::Menu track_crossfade_context_menu;
|
|
|
|
|
|
|
|
Gtk::MenuItem* region_edit_menu_split_item;
|
|
|
|
Gtk::MenuItem* region_edit_menu_split_multichannel_item;
|
|
|
|
Gtk::Menu * track_region_edit_playlist_menu;
|
|
|
|
Gtk::Menu * track_edit_playlist_submenu;
|
|
|
|
Gtk::Menu * track_selection_edit_playlist_submenu;
|
|
|
|
|
2006-09-28 13:23:52 -04:00
|
|
|
void popup_track_context_menu (int, int, ItemType, bool, nframes_t);
|
|
|
|
Gtk::Menu* build_track_context_menu (nframes_t);
|
|
|
|
Gtk::Menu* build_track_bus_context_menu (nframes_t);
|
|
|
|
Gtk::Menu* build_track_region_context_menu (nframes_t frame);
|
|
|
|
Gtk::Menu* build_track_crossfade_context_menu (nframes_t);
|
|
|
|
Gtk::Menu* build_track_selection_context_menu (nframes_t);
|
2005-09-25 14:42:24 -04:00
|
|
|
void add_dstream_context_items (Gtk::Menu_Helpers::MenuList&);
|
|
|
|
void add_bus_context_items (Gtk::Menu_Helpers::MenuList&);
|
2006-08-24 21:07:15 -04:00
|
|
|
void add_region_context_items (AudioStreamView*, boost::shared_ptr<ARDOUR::Region>, Gtk::Menu_Helpers::MenuList&);
|
2007-01-10 11:19:13 -05:00
|
|
|
void add_crossfade_context_items (AudioStreamView*, boost::shared_ptr<ARDOUR::Crossfade>, Gtk::Menu_Helpers::MenuList&, bool many);
|
2005-09-25 14:42:24 -04:00
|
|
|
void add_selection_context_items (Gtk::Menu_Helpers::MenuList&);
|
|
|
|
|
2006-08-16 22:12:20 -04:00
|
|
|
void handle_new_route (ARDOUR::Session::RouteList&);
|
2005-09-25 14:42:24 -04:00
|
|
|
void remove_route (TimeAxisView *);
|
|
|
|
bool route_removal;
|
|
|
|
|
|
|
|
Gtk::HBox global_hpacker;
|
|
|
|
Gtk::VBox global_vpacker;
|
|
|
|
Gtk::VBox vpacker;
|
|
|
|
|
2005-10-28 18:19:45 -04:00
|
|
|
Gdk::Cursor* current_canvas_cursor;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-11-14 11:24:21 -05:00
|
|
|
ArdourCanvas::CanvasAA track_canvas;
|
|
|
|
ArdourCanvas::CanvasAA time_canvas;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-11-14 11:24:21 -05:00
|
|
|
ArdourCanvas::Text* first_action_message;
|
|
|
|
ArdourCanvas::Text* verbose_canvas_cursor;
|
2005-10-12 12:28:26 -04:00
|
|
|
bool verbose_cursor_visible;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-09-25 17:24:00 -04:00
|
|
|
void parameter_changed (const char *);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-11-14 11:24:21 -05:00
|
|
|
bool track_canvas_motion (GdkEvent*);
|
|
|
|
|
2005-12-22 07:23:54 -05:00
|
|
|
void set_verbose_canvas_cursor (const string &, double x, double y);
|
|
|
|
void set_verbose_canvas_cursor_text (const string &);
|
2005-09-25 14:42:24 -04:00
|
|
|
void show_verbose_canvas_cursor();
|
|
|
|
void hide_verbose_canvas_cursor();
|
|
|
|
|
|
|
|
bool verbose_cursor_on; // so far unused
|
|
|
|
|
|
|
|
Gtk::EventBox time_canvas_event_box;
|
|
|
|
Gtk::EventBox track_canvas_event_box;
|
|
|
|
Gtk::EventBox time_button_event_box;
|
|
|
|
|
2005-11-14 11:24:21 -05:00
|
|
|
ArdourCanvas::Group *minsec_group;
|
|
|
|
ArdourCanvas::Group *bbt_group;
|
|
|
|
ArdourCanvas::Group *smpte_group;
|
|
|
|
ArdourCanvas::Group *frame_group;
|
|
|
|
ArdourCanvas::Group *tempo_group;
|
|
|
|
ArdourCanvas::Group *meter_group;
|
|
|
|
ArdourCanvas::Group *marker_group;
|
|
|
|
ArdourCanvas::Group *range_marker_group;
|
|
|
|
ArdourCanvas::Group *transport_marker_group;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
enum {
|
|
|
|
ruler_metric_smpte = 0,
|
|
|
|
ruler_metric_bbt = 1,
|
|
|
|
ruler_metric_frames = 2,
|
|
|
|
ruler_metric_minsec = 3,
|
|
|
|
|
|
|
|
ruler_time_tempo = 4,
|
|
|
|
ruler_time_meter = 5,
|
|
|
|
ruler_time_marker = 6,
|
|
|
|
ruler_time_range_marker = 7,
|
|
|
|
ruler_time_transport_marker = 8,
|
|
|
|
};
|
|
|
|
|
|
|
|
static GtkCustomMetric ruler_metrics[4];
|
|
|
|
bool ruler_shown[9];
|
|
|
|
bool no_ruler_shown_update;
|
|
|
|
|
|
|
|
gint ruler_button_press (GdkEventButton*);
|
|
|
|
gint ruler_button_release (GdkEventButton*);
|
|
|
|
gint ruler_mouse_motion (GdkEventMotion*);
|
|
|
|
|
|
|
|
gint ruler_pressed_button;
|
|
|
|
Gtk::Widget * ruler_grabbed_widget;
|
|
|
|
|
|
|
|
void initialize_rulers ();
|
|
|
|
void update_just_smpte ();
|
|
|
|
void update_fixed_rulers ();
|
|
|
|
void update_tempo_based_rulers ();
|
2006-09-28 13:23:52 -04:00
|
|
|
void popup_ruler_menu (nframes_t where = 0, ItemType type = RegionItem);
|
2005-09-25 14:42:24 -04:00
|
|
|
void update_ruler_visibility ();
|
|
|
|
void ruler_toggled (int);
|
|
|
|
gint ruler_label_button_release (GdkEventButton*);
|
|
|
|
void store_ruler_visibility ();
|
|
|
|
void restore_ruler_visibility ();
|
|
|
|
|
2005-11-25 19:06:46 -05:00
|
|
|
static gint _metric_get_smpte (GtkCustomRulerMark **, gdouble, gdouble, gint);
|
|
|
|
static gint _metric_get_bbt (GtkCustomRulerMark **, gdouble, gdouble, gint);
|
|
|
|
static gint _metric_get_frames (GtkCustomRulerMark **, gdouble, gdouble, gint);
|
|
|
|
static gint _metric_get_minsec (GtkCustomRulerMark **, gdouble, gdouble, gint);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-11-25 19:06:46 -05:00
|
|
|
gint metric_get_smpte (GtkCustomRulerMark **, gdouble, gdouble, gint);
|
|
|
|
gint metric_get_bbt (GtkCustomRulerMark **, gdouble, gdouble, gint);
|
|
|
|
gint metric_get_frames (GtkCustomRulerMark **, gdouble, gdouble, gint);
|
|
|
|
gint metric_get_minsec (GtkCustomRulerMark **, gdouble, gdouble, gint);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
GtkWidget *_smpte_ruler;
|
|
|
|
GtkWidget *_bbt_ruler;
|
|
|
|
GtkWidget *_frames_ruler;
|
|
|
|
GtkWidget *_minsec_ruler;
|
|
|
|
Gtk::Widget *smpte_ruler;
|
|
|
|
Gtk::Widget *bbt_ruler;
|
|
|
|
Gtk::Widget *frames_ruler;
|
|
|
|
Gtk::Widget *minsec_ruler;
|
|
|
|
static Editor *ruler_editor;
|
|
|
|
|
|
|
|
static const double timebar_height;
|
|
|
|
guint32 visible_timebars;
|
|
|
|
Gtk::Menu *editor_ruler_menu;
|
|
|
|
|
2005-11-14 11:24:21 -05:00
|
|
|
ArdourCanvas::SimpleRect* tempo_bar;
|
|
|
|
ArdourCanvas::SimpleRect* meter_bar;
|
|
|
|
ArdourCanvas::SimpleRect* marker_bar;
|
|
|
|
ArdourCanvas::SimpleRect* range_marker_bar;
|
|
|
|
ArdourCanvas::SimpleRect* transport_marker_bar;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
|
2005-11-27 09:09:50 -05:00
|
|
|
ArdourCanvas::SimpleLine* tempo_line;
|
|
|
|
ArdourCanvas::SimpleLine* meter_line;
|
|
|
|
ArdourCanvas::SimpleLine* marker_line;
|
|
|
|
ArdourCanvas::SimpleLine* range_marker_line;
|
|
|
|
ArdourCanvas::SimpleLine* transport_marker_line;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
Gtk::Label minsec_label;
|
|
|
|
Gtk::Label bbt_label;
|
|
|
|
Gtk::Label smpte_label;
|
|
|
|
Gtk::Label frame_label;
|
|
|
|
Gtk::Label tempo_label;
|
|
|
|
Gtk::Label meter_label;
|
|
|
|
Gtk::Label mark_label;
|
|
|
|
Gtk::Label range_mark_label;
|
|
|
|
Gtk::Label transport_mark_label;
|
|
|
|
|
|
|
|
|
|
|
|
Gtk::VBox time_button_vbox;
|
|
|
|
Gtk::HBox time_button_hbox;
|
|
|
|
|
|
|
|
struct Cursor {
|
2005-11-12 17:07:07 -05:00
|
|
|
Editor& editor;
|
2005-11-22 00:10:12 -05:00
|
|
|
ArdourCanvas::Points points;
|
|
|
|
ArdourCanvas::Line canvas_item;
|
2006-09-28 13:23:52 -04:00
|
|
|
nframes_t current_frame;
|
2005-11-12 17:07:07 -05:00
|
|
|
double length;
|
|
|
|
|
2005-11-15 22:09:36 -05:00
|
|
|
Cursor (Editor&, const string& color, bool (Editor::*)(GdkEvent*,ArdourCanvas::Item*));
|
2005-09-25 14:42:24 -04:00
|
|
|
~Cursor ();
|
|
|
|
|
2006-09-28 13:23:52 -04:00
|
|
|
void set_position (nframes_t);
|
2005-09-25 14:42:24 -04:00
|
|
|
void set_length (double units);
|
2005-11-12 17:07:07 -05:00
|
|
|
void set_y_axis (double position);
|
2005-09-25 14:42:24 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
friend struct Cursor; /* it needs access to several private
|
|
|
|
fields. XXX fix me.
|
|
|
|
*/
|
|
|
|
|
|
|
|
Cursor* playhead_cursor;
|
|
|
|
Cursor* edit_cursor;
|
2005-11-14 11:24:21 -05:00
|
|
|
ArdourCanvas::Group* cursor_group;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void cursor_to_next_region_point (Cursor*, ARDOUR::RegionPoint);
|
|
|
|
void cursor_to_previous_region_point (Cursor*, ARDOUR::RegionPoint);
|
|
|
|
void cursor_to_region_point (Cursor*, ARDOUR::RegionPoint, int32_t dir);
|
|
|
|
void cursor_to_selection_start (Cursor *);
|
|
|
|
void cursor_to_selection_end (Cursor *);
|
2006-02-15 07:15:29 -05:00
|
|
|
void select_all_selectables_using_cursor (Cursor *, bool);
|
2006-03-31 19:21:25 -05:00
|
|
|
void select_all_selectables_between_cursors (Cursor *, Cursor *);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-09-28 13:23:52 -04:00
|
|
|
boost::shared_ptr<ARDOUR::Region> find_next_region (nframes_t, ARDOUR::RegionPoint, int32_t dir, TrackViewList&, TimeAxisView ** = 0);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-09-28 13:23:52 -04:00
|
|
|
vector<nframes_t> region_boundary_cache;
|
2005-09-25 14:42:24 -04:00
|
|
|
void build_region_boundary_cache ();
|
|
|
|
|
|
|
|
Gtk::VBox trackview_vpacker;
|
|
|
|
|
|
|
|
Gtk::HBox top_hbox;
|
|
|
|
Gtk::HBox bottom_hbox;
|
|
|
|
|
|
|
|
Gtk::Table edit_packer;
|
|
|
|
Gtk::VScrollbar edit_vscrollbar;
|
|
|
|
|
2005-12-12 15:54:55 -05:00
|
|
|
Gtk::Adjustment vertical_adjustment;
|
|
|
|
Gtk::Adjustment horizontal_adjustment;
|
|
|
|
|
|
|
|
Gtk::Layout controls_layout;
|
2006-01-10 07:33:26 -05:00
|
|
|
bool control_layout_scroll (GdkEventScroll* ev);
|
2006-01-08 09:50:41 -05:00
|
|
|
void controls_layout_size_request (Gtk::Requisition*);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
Gtk::HScrollbar edit_hscrollbar;
|
2007-01-31 13:51:33 -05:00
|
|
|
bool _dragging_hscrollbar;
|
2006-04-18 22:11:39 -04:00
|
|
|
|
|
|
|
void reset_hscrollbar_stepping ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-12-12 15:54:55 -05:00
|
|
|
bool hscrollbar_button_press (GdkEventButton*);
|
|
|
|
bool hscrollbar_button_release (GdkEventButton*);
|
|
|
|
void hscrollbar_allocate (Gtk::Allocation &alloc);
|
|
|
|
|
2005-12-07 12:15:37 -05:00
|
|
|
double canvas_width;
|
|
|
|
double canvas_height;
|
2006-12-04 17:18:21 -05:00
|
|
|
double full_canvas_height;
|
2006-09-28 13:23:52 -04:00
|
|
|
nframes_t last_canvas_frame;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-11-28 23:41:15 -05:00
|
|
|
bool track_canvas_map_handler (GdkEventAny*);
|
|
|
|
bool time_canvas_map_handler (GdkEventAny*);
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
gint edit_controls_button_release (GdkEventButton*);
|
|
|
|
Gtk::Menu *edit_controls_left_menu;
|
|
|
|
Gtk::Menu *edit_controls_right_menu;
|
|
|
|
|
|
|
|
Gtk::VBox track_canvas_vbox;
|
|
|
|
Gtk::VBox time_canvas_vbox;
|
|
|
|
Gtk::VBox edit_controls_vbox;
|
|
|
|
Gtk::HBox edit_controls_hbox;
|
|
|
|
|
2006-04-06 12:51:27 -04:00
|
|
|
void control_scroll (float);
|
2006-09-28 13:23:52 -04:00
|
|
|
bool deferred_control_scroll (nframes_t);
|
2006-04-06 12:51:27 -04:00
|
|
|
sigc::connection control_scroll_connection;
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void tie_vertical_scrolling ();
|
|
|
|
void canvas_horizontally_scrolled ();
|
2006-09-04 12:04:09 -04:00
|
|
|
|
2007-01-10 21:30:56 -05:00
|
|
|
struct VisualChange {
|
|
|
|
enum Type {
|
|
|
|
TimeOrigin = 0x1,
|
|
|
|
ZoomLevel = 0x2
|
|
|
|
};
|
|
|
|
|
|
|
|
Type pending;
|
|
|
|
nframes_t time_origin;
|
|
|
|
double frames_per_unit;
|
|
|
|
|
|
|
|
int idle_handler_id;
|
|
|
|
|
|
|
|
VisualChange() : pending ((VisualChange::Type) 0), time_origin (0), frames_per_unit (0), idle_handler_id (-1) {}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
VisualChange pending_visual_change;
|
|
|
|
|
|
|
|
static int _idle_visual_changer (void *arg);
|
|
|
|
int idle_visual_changer ();
|
|
|
|
|
|
|
|
void queue_visual_change (nframes_t);
|
|
|
|
void queue_visual_change (double);
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void end_location_changed (ARDOUR::Location*);
|
|
|
|
|
2005-10-09 01:03:29 -04:00
|
|
|
struct RegionListDisplayModelColumns : public Gtk::TreeModel::ColumnRecord {
|
|
|
|
RegionListDisplayModelColumns() {
|
|
|
|
add (name);
|
|
|
|
add (region);
|
2006-01-01 10:31:59 -05:00
|
|
|
add (color_);
|
2005-10-09 01:03:29 -04:00
|
|
|
}
|
|
|
|
Gtk::TreeModelColumn<Glib::ustring> name;
|
2006-08-24 21:07:15 -04:00
|
|
|
Gtk::TreeModelColumn<boost::shared_ptr<ARDOUR::Region> > region;
|
2006-09-20 12:24:24 -04:00
|
|
|
Gtk::TreeModelColumn<Gdk::Color> color_;
|
2005-10-09 01:03:29 -04:00
|
|
|
};
|
|
|
|
|
2006-09-20 12:24:24 -04:00
|
|
|
RegionListDisplayModelColumns region_list_columns;
|
|
|
|
Gtkmm2ext::DnDTreeView<boost::shared_ptr<ARDOUR::Region> > region_list_display;
|
|
|
|
|
|
|
|
Glib::RefPtr<Gtk::TreeStore> region_list_model;
|
|
|
|
Glib::RefPtr<Gtk::ToggleAction> toggle_full_region_list_action;
|
|
|
|
Glib::RefPtr<Gtk::ToggleAction> toggle_show_auto_regions_action;
|
2005-10-09 01:03:29 -04:00
|
|
|
|
|
|
|
void region_list_selection_changed ();
|
2006-01-04 22:18:44 -05:00
|
|
|
bool region_list_selection_filter (const Glib::RefPtr<Gtk::TreeModel>& model, const Gtk::TreeModel::Path& path, bool yn);
|
2005-10-09 01:03:29 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
Gtk::Menu *region_list_menu;
|
|
|
|
Gtk::ScrolledWindow region_list_scroller;
|
|
|
|
Gtk::Frame region_list_frame;
|
|
|
|
|
2005-10-09 01:03:29 -04:00
|
|
|
bool region_list_display_key_press (GdkEventKey *);
|
|
|
|
bool region_list_display_key_release (GdkEventKey *);
|
|
|
|
bool region_list_display_button_press (GdkEventButton *);
|
|
|
|
bool region_list_display_button_release (GdkEventButton *);
|
2005-09-25 14:42:24 -04:00
|
|
|
void region_list_clear ();
|
2006-08-24 21:07:15 -04:00
|
|
|
void region_list_selection_mapover (sigc::slot<void,boost::shared_ptr<ARDOUR::Region> >);
|
2005-09-25 14:42:24 -04:00
|
|
|
void build_region_list_menu ();
|
2005-12-31 13:20:42 -05:00
|
|
|
void show_region_list_display_context_menu (int button, int time);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
bool show_automatic_regions_in_region_list;
|
|
|
|
Editing::RegionListSortType region_list_sort_type;
|
|
|
|
|
|
|
|
void reset_region_list_sort_direction (bool);
|
|
|
|
void reset_region_list_sort_type (Editing::RegionListSortType);
|
|
|
|
|
|
|
|
void toggle_full_region_list ();
|
|
|
|
void toggle_show_auto_regions ();
|
|
|
|
|
2005-10-09 01:03:29 -04:00
|
|
|
int region_list_sorter (Gtk::TreeModel::iterator, Gtk::TreeModel::iterator);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-01-04 22:18:44 -05:00
|
|
|
/* snapshots */
|
|
|
|
|
|
|
|
Gtk::ScrolledWindow snapshot_display_scroller;
|
|
|
|
struct SnapshotDisplayModelColumns : public Gtk::TreeModel::ColumnRecord {
|
|
|
|
SnapshotDisplayModelColumns() {
|
|
|
|
add (visible_name);
|
|
|
|
add (real_name);
|
|
|
|
}
|
|
|
|
Gtk::TreeModelColumn<Glib::ustring> visible_name;
|
|
|
|
Gtk::TreeModelColumn<Glib::ustring> real_name;
|
|
|
|
};
|
|
|
|
|
|
|
|
SnapshotDisplayModelColumns snapshot_display_columns;
|
|
|
|
Glib::RefPtr<Gtk::ListStore> snapshot_display_model;
|
|
|
|
Gtk::TreeView snapshot_display;
|
|
|
|
|
|
|
|
bool snapshot_display_button_press (GdkEventButton*);
|
|
|
|
void snapshot_display_selection_changed ();
|
|
|
|
void redisplay_snapshots();
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
/* named selections */
|
|
|
|
|
2005-10-26 14:12:00 -04:00
|
|
|
struct NamedSelectionDisplayModelColumns : public Gtk::TreeModel::ColumnRecord {
|
|
|
|
NamedSelectionDisplayModelColumns() {
|
|
|
|
add (text);
|
|
|
|
add (selection);
|
|
|
|
}
|
|
|
|
Gtk::TreeModelColumn<Glib::ustring> text;
|
|
|
|
Gtk::TreeModelColumn<ARDOUR::NamedSelection*> selection;
|
|
|
|
};
|
|
|
|
|
|
|
|
NamedSelectionDisplayModelColumns named_selection_columns;
|
|
|
|
Glib::RefPtr<Gtk::TreeStore> named_selection_model;
|
|
|
|
|
2006-09-20 12:24:24 -04:00
|
|
|
Gtkmm2ext::DnDTreeView<ARDOUR::NamedSelection*> named_selection_display;
|
2005-12-29 19:34:21 -05:00
|
|
|
Gtk::ScrolledWindow named_selection_scroller;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2007-01-11 16:45:21 -05:00
|
|
|
void create_named_selection ();
|
2005-09-25 14:42:24 -04:00
|
|
|
void paste_named_selection (float times);
|
2007-01-11 16:45:21 -05:00
|
|
|
void remove_selected_named_selections ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void handle_new_named_selection ();
|
|
|
|
void add_named_selection_to_named_selection_display (ARDOUR::NamedSelection&);
|
|
|
|
void redisplay_named_selections ();
|
|
|
|
|
2007-01-11 16:45:21 -05:00
|
|
|
bool named_selection_display_button_release (GdkEventButton *ev);
|
|
|
|
bool named_selection_display_key_release (GdkEventKey *ev);
|
2005-10-26 14:12:00 -04:00
|
|
|
void named_selection_display_selection_changed ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
/* track views */
|
|
|
|
int track_spacing;
|
|
|
|
TrackViewList track_views;
|
|
|
|
TimeAxisView *trackview_by_y_position (double ypos);
|
|
|
|
|
2005-10-28 18:19:45 -04:00
|
|
|
static Gdk::Cursor* cross_hair_cursor;
|
|
|
|
static Gdk::Cursor* trimmer_cursor;
|
|
|
|
static Gdk::Cursor* selector_cursor;
|
|
|
|
static Gdk::Cursor* grabber_cursor;
|
|
|
|
static Gdk::Cursor* zoom_cursor;
|
|
|
|
static Gdk::Cursor* time_fx_cursor;
|
|
|
|
static Gdk::Cursor* fader_cursor;
|
|
|
|
static Gdk::Cursor* speaker_cursor;
|
|
|
|
static Gdk::Cursor* wait_cursor;
|
|
|
|
static Gdk::Cursor* timebar_cursor;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
static void build_cursors ();
|
|
|
|
|
2005-09-25 16:33:00 -04:00
|
|
|
sigc::connection scroll_connection;
|
2006-09-28 13:23:52 -04:00
|
|
|
nframes_t last_update_frame;
|
|
|
|
void center_screen (nframes_t);
|
|
|
|
void center_screen_internal (nframes_t, float);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void update_current_screen ();
|
|
|
|
|
|
|
|
void session_going_away ();
|
|
|
|
|
2006-09-28 13:23:52 -04:00
|
|
|
nframes_t cut_buffer_start;
|
|
|
|
nframes_t cut_buffer_length;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-11-14 11:24:21 -05:00
|
|
|
bool typed_event (ArdourCanvas::Item*, GdkEvent*, ItemType);
|
|
|
|
bool button_press_handler (ArdourCanvas::Item*, GdkEvent*, ItemType);
|
|
|
|
bool button_release_handler (ArdourCanvas::Item*, GdkEvent*, ItemType);
|
2006-05-17 22:19:27 -04:00
|
|
|
bool motion_handler (ArdourCanvas::Item*, GdkEvent*, ItemType, bool from_autoscroll = false);
|
2005-11-14 11:24:21 -05:00
|
|
|
bool enter_handler (ArdourCanvas::Item*, GdkEvent*, ItemType);
|
|
|
|
bool leave_handler (ArdourCanvas::Item*, GdkEvent*, ItemType);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
/* KEYMAP HANDLING */
|
|
|
|
|
2005-10-09 13:58:06 -04:00
|
|
|
void register_actions ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-09-28 13:23:52 -04:00
|
|
|
int ensure_cursor (nframes_t* pos);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-11-09 15:38:39 -05:00
|
|
|
void handle_new_audio_region (boost::weak_ptr<ARDOUR::AudioRegion>);
|
|
|
|
void handle_audio_region_removed (boost::weak_ptr<ARDOUR::AudioRegion>);
|
2006-08-24 21:07:15 -04:00
|
|
|
void add_audio_region_to_region_display (boost::shared_ptr<ARDOUR::AudioRegion>);
|
|
|
|
void region_hidden (boost::shared_ptr<ARDOUR::Region>);
|
2005-09-25 14:42:24 -04:00
|
|
|
void redisplay_regions ();
|
2006-08-24 21:07:15 -04:00
|
|
|
void insert_into_tmp_audio_regionlist(boost::shared_ptr<ARDOUR::AudioRegion>);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-08-24 21:07:15 -04:00
|
|
|
list<boost::shared_ptr<ARDOUR::AudioRegion> > tmp_audio_region_list;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void cut_copy (Editing::CutCopyOp);
|
|
|
|
void cut_copy_points (Editing::CutCopyOp);
|
|
|
|
void cut_copy_regions (Editing::CutCopyOp);
|
|
|
|
void cut_copy_ranges (Editing::CutCopyOp);
|
|
|
|
|
|
|
|
void mouse_paste ();
|
2006-09-28 13:23:52 -04:00
|
|
|
void paste_internal (nframes_t position, float times);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
/* EDITING OPERATIONS */
|
|
|
|
|
2006-05-19 16:10:35 -04:00
|
|
|
void reset_point_selection ();
|
2005-09-25 14:42:24 -04:00
|
|
|
void toggle_region_mute ();
|
2006-11-13 17:59:02 -05:00
|
|
|
void toggle_region_lock ();
|
2005-09-25 14:42:24 -04:00
|
|
|
void toggle_region_opaque ();
|
|
|
|
void raise_region ();
|
|
|
|
void raise_region_to_top ();
|
|
|
|
void lower_region ();
|
|
|
|
void lower_region_to_bottom ();
|
|
|
|
void split_region ();
|
2006-09-28 13:23:52 -04:00
|
|
|
void split_region_at (nframes_t);
|
|
|
|
void split_regions_at (nframes_t, RegionSelection&);
|
2005-09-25 14:42:24 -04:00
|
|
|
void crop_region_to_selection ();
|
2006-09-28 13:23:52 -04:00
|
|
|
void set_a_regions_sync_position (boost::shared_ptr<ARDOUR::Region>, nframes_t);
|
2005-09-25 14:42:24 -04:00
|
|
|
void set_region_sync_from_edit_cursor ();
|
|
|
|
void remove_region_sync();
|
2006-09-28 13:23:52 -04:00
|
|
|
void align_selection (ARDOUR::RegionPoint, nframes_t position);
|
|
|
|
void align_selection_relative (ARDOUR::RegionPoint point, nframes_t position);
|
|
|
|
void align_region (boost::shared_ptr<ARDOUR::Region>, ARDOUR::RegionPoint point, nframes_t position);
|
|
|
|
void align_region_internal (boost::shared_ptr<ARDOUR::Region>, ARDOUR::RegionPoint point, nframes_t position);
|
2005-09-25 14:42:24 -04:00
|
|
|
void remove_clicked_region ();
|
|
|
|
void destroy_clicked_region ();
|
|
|
|
void edit_region ();
|
2006-08-03 22:18:45 -04:00
|
|
|
void duplicate_some_regions (RegionSelection&, float times);
|
2005-09-25 14:42:24 -04:00
|
|
|
void duplicate_selection (float times);
|
|
|
|
void region_fill_selection ();
|
|
|
|
|
|
|
|
void region_fill_track ();
|
2006-08-24 21:07:15 -04:00
|
|
|
void audition_playlist_region_standalone (boost::shared_ptr<ARDOUR::Region>);
|
|
|
|
void audition_playlist_region_via_route (boost::shared_ptr<ARDOUR::Region>, ARDOUR::Route&);
|
2005-09-25 14:42:24 -04:00
|
|
|
void split_multichannel_region();
|
|
|
|
void reverse_region ();
|
|
|
|
void normalize_region ();
|
|
|
|
void denormalize_region ();
|
|
|
|
|
|
|
|
void audition_region_from_region_list ();
|
|
|
|
void hide_region_from_region_list ();
|
2005-10-09 13:58:06 -04:00
|
|
|
void remove_region_from_region_list ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void align (ARDOUR::RegionPoint);
|
|
|
|
void align_relative (ARDOUR::RegionPoint);
|
|
|
|
void naturalize ();
|
|
|
|
|
2007-01-17 17:17:47 -05:00
|
|
|
void reset_focus ();
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void cut ();
|
|
|
|
void copy ();
|
|
|
|
void paste (float times);
|
|
|
|
|
|
|
|
int get_prefix (float&, bool&);
|
|
|
|
|
|
|
|
void keyboard_paste ();
|
|
|
|
void keyboard_duplicate_region ();
|
|
|
|
void keyboard_duplicate_selection ();
|
|
|
|
void keyboard_insert_region_list_selection ();
|
|
|
|
|
|
|
|
void region_from_selection ();
|
2006-08-24 21:07:15 -04:00
|
|
|
void create_region_from_selection (std::vector<boost::shared_ptr<ARDOUR::AudioRegion> >&);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
bool region_renamed;
|
|
|
|
void rename_region ();
|
|
|
|
void rename_region_finished (bool);
|
|
|
|
|
|
|
|
void play_from_start ();
|
2006-11-06 12:59:03 -05:00
|
|
|
void play_from_edit_cursor ();
|
2005-09-25 14:42:24 -04:00
|
|
|
void play_selected_region ();
|
|
|
|
void audition_selected_region ();
|
|
|
|
void loop_selected_region ();
|
|
|
|
void play_location (ARDOUR::Location&);
|
|
|
|
void loop_location (ARDOUR::Location&);
|
|
|
|
|
|
|
|
Editing::ZoomFocus zoom_focus;
|
|
|
|
|
|
|
|
void temporal_zoom_selection ();
|
|
|
|
void temporal_zoom_session ();
|
|
|
|
void temporal_zoom (gdouble scale);
|
2006-09-28 13:23:52 -04:00
|
|
|
void temporal_zoom_by_frame (nframes_t start, nframes_t end, const string & op);
|
|
|
|
void temporal_zoom_to_frame (bool coarser, nframes_t frame);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void amplitude_zoom (gdouble scale);
|
|
|
|
void amplitude_zoom_step (bool in);
|
|
|
|
|
2006-08-24 21:07:15 -04:00
|
|
|
void insert_region_list_drag (boost::shared_ptr<ARDOUR::AudioRegion>, int x, int y);
|
2005-09-25 14:42:24 -04:00
|
|
|
void insert_region_list_selection (float times);
|
|
|
|
|
2006-03-22 12:03:00 -05:00
|
|
|
void add_external_audio_action (Editing::ImportMode);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-09-28 13:23:52 -04:00
|
|
|
void bring_in_external_audio (Editing::ImportMode mode, ARDOUR::AudioTrack*, nframes_t& pos, bool prompt);
|
|
|
|
void do_import (vector<Glib::ustring> paths, bool split, Editing::ImportMode mode, ARDOUR::AudioTrack*, nframes_t&, bool);
|
|
|
|
void do_embed (vector<Glib::ustring> paths, bool split, Editing::ImportMode mode, ARDOUR::AudioTrack*, nframes_t&, bool);
|
2006-12-21 13:38:00 -05:00
|
|
|
int import_sndfile (vector<Glib::ustring> paths, Editing::ImportMode mode, ARDOUR::AudioTrack* track, nframes_t& pos);
|
|
|
|
int embed_sndfile (vector<Glib::ustring> paths, bool split, bool multiple_files, bool& check_sample_rate, Editing::ImportMode mode,
|
2006-09-28 13:23:52 -04:00
|
|
|
ARDOUR::AudioTrack* track, nframes_t& pos, bool prompt);
|
|
|
|
int finish_bringing_in_audio (boost::shared_ptr<ARDOUR::AudioRegion> region, uint32_t, uint32_t, ARDOUR::AudioTrack* track, nframes_t& pos, Editing::ImportMode mode);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
/* generic interthread progress window */
|
|
|
|
|
|
|
|
ArdourDialog* interthread_progress_window;
|
|
|
|
Gtk::Label interthread_progress_label;
|
|
|
|
Gtk::VBox interthread_progress_vbox;
|
|
|
|
Gtk::ProgressBar interthread_progress_bar;
|
|
|
|
Gtk::Button interthread_cancel_button;
|
|
|
|
Gtk::Label interthread_cancel_label;
|
2005-09-25 16:33:00 -04:00
|
|
|
sigc::connection interthread_progress_connection;
|
2005-09-25 14:42:24 -04:00
|
|
|
void interthread_cancel_clicked ();
|
|
|
|
void build_interthread_progress_window ();
|
|
|
|
ARDOUR::InterThreadInfo* current_interthread_info;
|
2006-03-12 22:27:58 -05:00
|
|
|
|
|
|
|
#ifdef FFT_ANALYSIS
|
2006-03-12 17:06:41 -05:00
|
|
|
AnalysisWindow* analysis_window;
|
2006-03-12 22:27:58 -05:00
|
|
|
#endif
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
/* import specific info */
|
|
|
|
|
|
|
|
ARDOUR::Session::import_status import_status;
|
|
|
|
gint import_progress_timeout (void *);
|
|
|
|
static void *_import_thread (void *);
|
|
|
|
void* import_thread ();
|
|
|
|
|
|
|
|
/* to support this ... */
|
|
|
|
|
|
|
|
void import_audio (bool as_tracks);
|
2006-12-21 13:38:00 -05:00
|
|
|
void do_import (vector<Glib::ustring> paths, bool split, bool as_tracks);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void move_to_start ();
|
|
|
|
void move_to_end ();
|
|
|
|
void goto_frame ();
|
|
|
|
void center_playhead ();
|
|
|
|
void center_edit_cursor ();
|
|
|
|
void edit_cursor_backward ();
|
|
|
|
void edit_cursor_forward ();
|
|
|
|
void playhead_backward ();
|
|
|
|
void playhead_forward ();
|
2007-01-17 08:13:58 -05:00
|
|
|
void scroll_playhead (bool forward);
|
2005-09-25 14:42:24 -04:00
|
|
|
void scroll_backward (float pages=0.8f);
|
|
|
|
void scroll_forward (float pages=0.8f);
|
|
|
|
void scroll_tracks_down ();
|
|
|
|
void scroll_tracks_up ();
|
|
|
|
void delete_sample_forward ();
|
|
|
|
void delete_sample_backward ();
|
|
|
|
void delete_screen ();
|
|
|
|
void search_backwards ();
|
|
|
|
void search_forwards ();
|
|
|
|
void set_mark ();
|
|
|
|
void clear_markers ();
|
|
|
|
void clear_ranges ();
|
|
|
|
void clear_locations ();
|
2007-01-08 12:12:29 -05:00
|
|
|
void unhide_markers ();
|
|
|
|
void unhide_ranges ();
|
2005-09-25 14:42:24 -04:00
|
|
|
void jump_forward_to_mark ();
|
|
|
|
void jump_backward_to_mark ();
|
|
|
|
void cursor_align (bool playhead_to_edit);
|
|
|
|
|
|
|
|
void remove_last_capture ();
|
2006-02-15 07:15:29 -05:00
|
|
|
void select_all_selectables_using_time_selection ();
|
|
|
|
void select_all_selectables_using_loop();
|
|
|
|
void select_all_selectables_using_punch();
|
2005-09-25 14:42:24 -04:00
|
|
|
void set_selection_from_range (ARDOUR::Location&);
|
|
|
|
void set_selection_from_punch ();
|
|
|
|
void set_selection_from_loop ();
|
2006-03-31 18:00:40 -05:00
|
|
|
void set_selection_from_audio_region ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-03-31 18:00:40 -05:00
|
|
|
void add_location_from_audio_region ();
|
2005-09-25 14:42:24 -04:00
|
|
|
void add_location_from_selection ();
|
|
|
|
void set_route_loop_selection ();
|
|
|
|
|
|
|
|
void add_location_from_playhead_cursor ();
|
|
|
|
|
|
|
|
void reverse_selection ();
|
|
|
|
void edit_envelope ();
|
|
|
|
|
|
|
|
void start_scrolling ();
|
|
|
|
void stop_scrolling ();
|
|
|
|
|
|
|
|
void keyboard_selection_begin ();
|
|
|
|
void keyboard_selection_finish (bool add);
|
|
|
|
bool have_pending_keyboard_selection;
|
2006-09-28 13:23:52 -04:00
|
|
|
nframes_t pending_keyboard_selection_start;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-08-24 21:07:15 -04:00
|
|
|
boost::shared_ptr<ARDOUR::Region> select_region_for_operation (int dir, TimeAxisView **tv);
|
2005-09-25 14:42:24 -04:00
|
|
|
void extend_selection_to_end_of_region (bool next);
|
|
|
|
void extend_selection_to_start_of_region (bool previous);
|
|
|
|
|
|
|
|
Editing::SnapType snap_type;
|
|
|
|
Editing::SnapMode snap_mode;
|
|
|
|
double snap_threshold;
|
|
|
|
|
2005-12-22 07:23:54 -05:00
|
|
|
void handle_gui_changes (const string &, void *);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void hide_all_tracks (bool with_select);
|
|
|
|
|
2006-03-07 21:50:53 -05:00
|
|
|
DragInfo drag_info;
|
2005-09-25 14:42:24 -04:00
|
|
|
LineDragInfo current_line_drag_info;
|
|
|
|
|
2005-10-28 18:19:45 -04:00
|
|
|
void start_grab (GdkEvent*, Gdk::Cursor* cursor = 0);
|
2005-11-14 11:24:21 -05:00
|
|
|
bool end_grab (ArdourCanvas::Item*, GdkEvent*);
|
2006-05-30 22:46:04 -04:00
|
|
|
void swap_grab (ArdourCanvas::Item*, Gdk::Cursor* cursor, uint32_t time);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
Gtk::Menu fade_context_menu;
|
2005-11-14 11:24:21 -05:00
|
|
|
void popup_fade_context_menu (int, int, ArdourCanvas::Item*, ItemType);
|
|
|
|
|
|
|
|
void start_fade_in_grab (ArdourCanvas::Item*, GdkEvent*);
|
|
|
|
void start_fade_out_grab (ArdourCanvas::Item*, GdkEvent*);
|
|
|
|
void fade_in_drag_motion_callback (ArdourCanvas::Item*, GdkEvent*);
|
|
|
|
void fade_out_drag_motion_callback (ArdourCanvas::Item*, GdkEvent*);
|
|
|
|
void fade_in_drag_finished_callback (ArdourCanvas::Item*, GdkEvent*);
|
|
|
|
void fade_out_drag_finished_callback (ArdourCanvas::Item*, GdkEvent*);
|
2007-01-17 13:42:21 -05:00
|
|
|
|
|
|
|
void set_fade_in_shape (ARDOUR::AudioRegion::FadeShape);
|
|
|
|
void set_fade_out_shape (ARDOUR::AudioRegion::FadeShape);
|
|
|
|
|
|
|
|
void set_fade_in_active (bool);
|
|
|
|
void set_fade_out_active (bool);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-12-14 09:15:43 -05:00
|
|
|
std::set<boost::shared_ptr<ARDOUR::Playlist> > motion_frozen_playlists;
|
2005-11-14 11:24:21 -05:00
|
|
|
void region_drag_motion_callback (ArdourCanvas::Item*, GdkEvent*);
|
|
|
|
void region_drag_finished_callback (ArdourCanvas::Item*, GdkEvent*);
|
|
|
|
|
2006-12-01 12:32:41 -05:00
|
|
|
bool _dragging_playhead;
|
|
|
|
|
2005-11-14 11:24:21 -05:00
|
|
|
void cursor_drag_motion_callback (ArdourCanvas::Item*, GdkEvent*);
|
|
|
|
void cursor_drag_finished_callback (ArdourCanvas::Item*, GdkEvent*);
|
|
|
|
void marker_drag_motion_callback (ArdourCanvas::Item*, GdkEvent*);
|
|
|
|
void marker_drag_finished_callback (ArdourCanvas::Item*, GdkEvent*);
|
|
|
|
void control_point_drag_motion_callback (ArdourCanvas::Item*, GdkEvent*);
|
|
|
|
void control_point_drag_finished_callback (ArdourCanvas::Item*, GdkEvent*);
|
|
|
|
void line_drag_motion_callback (ArdourCanvas::Item*, GdkEvent*);
|
|
|
|
void line_drag_finished_callback (ArdourCanvas::Item*, GdkEvent*);
|
|
|
|
|
|
|
|
void tempo_marker_drag_motion_callback (ArdourCanvas::Item*, GdkEvent*);
|
|
|
|
void tempo_marker_drag_finished_callback (ArdourCanvas::Item*, GdkEvent*);
|
|
|
|
void meter_marker_drag_motion_callback (ArdourCanvas::Item*, GdkEvent*);
|
|
|
|
void meter_marker_drag_finished_callback (ArdourCanvas::Item*, GdkEvent*);
|
|
|
|
|
|
|
|
gint mouse_rename_region (ArdourCanvas::Item*, GdkEvent*);
|
|
|
|
|
|
|
|
void start_region_grab (ArdourCanvas::Item*, GdkEvent*);
|
|
|
|
void start_region_copy_grab (ArdourCanvas::Item*, GdkEvent*);
|
|
|
|
void start_region_brush_grab (ArdourCanvas::Item*, GdkEvent*);
|
|
|
|
void start_selection_grab (ArdourCanvas::Item*, GdkEvent*);
|
|
|
|
void start_cursor_grab (ArdourCanvas::Item*, GdkEvent*);
|
|
|
|
void start_marker_grab (ArdourCanvas::Item*, GdkEvent*);
|
|
|
|
void start_control_point_grab (ArdourCanvas::Item*, GdkEvent*);
|
|
|
|
void start_line_grab_from_regionview (ArdourCanvas::Item*, GdkEvent*);
|
|
|
|
void start_line_grab_from_line (ArdourCanvas::Item*, GdkEvent*);
|
2005-09-25 14:42:24 -04:00
|
|
|
void start_line_grab (AutomationLine *, GdkEvent*);
|
2005-11-14 11:24:21 -05:00
|
|
|
void start_tempo_marker_grab (ArdourCanvas::Item*, GdkEvent*);
|
2006-03-05 14:39:16 -05:00
|
|
|
void start_tempo_marker_copy_grab (ArdourCanvas::Item*, GdkEvent*);
|
2005-11-14 11:24:21 -05:00
|
|
|
void start_meter_marker_grab (ArdourCanvas::Item*, GdkEvent*);
|
2006-03-05 14:39:16 -05:00
|
|
|
void start_meter_marker_copy_grab (ArdourCanvas::Item*, GdkEvent*);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void region_view_item_click (AudioRegionView&, GdkEventButton*);
|
|
|
|
|
2005-11-14 11:24:21 -05:00
|
|
|
void remove_gain_control_point (ArdourCanvas::Item*, GdkEvent*);
|
|
|
|
void remove_control_point (ArdourCanvas::Item*, GdkEvent*);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-09-28 13:23:52 -04:00
|
|
|
void mouse_brush_insert_region (RegionView*, nframes_t pos);
|
|
|
|
void brush (nframes_t);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-09-28 13:23:52 -04:00
|
|
|
void show_verbose_time_cursor (nframes_t frame, double offset = 0, double xpos=-1, double ypos=-1);
|
|
|
|
void show_verbose_duration_cursor (nframes_t start, nframes_t end, double offset = 0, double xpos=-1, double ypos=-1);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-10-12 12:28:26 -04:00
|
|
|
/* Canvas event handlers */
|
|
|
|
|
2005-11-14 11:24:21 -05:00
|
|
|
bool canvas_control_point_event (GdkEvent* event,ArdourCanvas::Item*, ControlPoint*);
|
|
|
|
bool canvas_line_event (GdkEvent* event,ArdourCanvas::Item*, AutomationLine*);
|
|
|
|
bool canvas_selection_rect_event (GdkEvent* event,ArdourCanvas::Item*, SelectionRect*);
|
|
|
|
bool canvas_selection_start_trim_event (GdkEvent* event,ArdourCanvas::Item*, SelectionRect*);
|
|
|
|
bool canvas_selection_end_trim_event (GdkEvent* event,ArdourCanvas::Item*, SelectionRect*);
|
|
|
|
bool canvas_crossfade_view_event (GdkEvent* event,ArdourCanvas::Item*, CrossfadeView*);
|
|
|
|
bool canvas_fade_in_event (GdkEvent* event,ArdourCanvas::Item*, AudioRegionView*);
|
|
|
|
bool canvas_fade_in_handle_event (GdkEvent* event,ArdourCanvas::Item*, AudioRegionView*);
|
|
|
|
bool canvas_fade_out_event (GdkEvent* event,ArdourCanvas::Item*, AudioRegionView*);
|
|
|
|
bool canvas_fade_out_handle_event (GdkEvent* event,ArdourCanvas::Item*, AudioRegionView*);
|
2006-08-03 22:18:45 -04:00
|
|
|
bool canvas_region_view_event (GdkEvent* event,ArdourCanvas::Item*, RegionView*);
|
|
|
|
bool canvas_region_view_name_highlight_event (GdkEvent* event,ArdourCanvas::Item*, RegionView*);
|
|
|
|
bool canvas_region_view_name_event (GdkEvent* event,ArdourCanvas::Item*, RegionView*);
|
|
|
|
bool canvas_stream_view_event (GdkEvent* event,ArdourCanvas::Item*, RouteTimeAxisView*);
|
2005-11-14 11:24:21 -05:00
|
|
|
bool canvas_marker_event (GdkEvent* event,ArdourCanvas::Item*, Marker*);
|
|
|
|
bool canvas_zoom_rect_event (GdkEvent* event,ArdourCanvas::Item*);
|
|
|
|
bool canvas_tempo_marker_event (GdkEvent* event,ArdourCanvas::Item*, TempoMarker*);
|
|
|
|
bool canvas_meter_marker_event (GdkEvent* event,ArdourCanvas::Item*, MeterMarker*);
|
|
|
|
bool canvas_automation_track_event(GdkEvent* event, ArdourCanvas::Item*, AutomationTimeAxisView*) ;
|
|
|
|
|
|
|
|
bool canvas_tempo_bar_event (GdkEvent* event, ArdourCanvas::Item*);
|
|
|
|
bool canvas_meter_bar_event (GdkEvent* event, ArdourCanvas::Item*);
|
|
|
|
bool canvas_marker_bar_event (GdkEvent* event, ArdourCanvas::Item*);
|
|
|
|
bool canvas_range_marker_bar_event (GdkEvent* event, ArdourCanvas::Item*);
|
|
|
|
bool canvas_transport_marker_bar_event (GdkEvent* event, ArdourCanvas::Item*);
|
|
|
|
|
2005-11-15 22:20:54 -05:00
|
|
|
bool canvas_imageframe_item_view_event(GdkEvent* event, ArdourCanvas::Item*,ImageFrameView*);
|
|
|
|
bool canvas_imageframe_view_event(GdkEvent* event, ArdourCanvas::Item*,ImageFrameTimeAxis*);
|
|
|
|
bool canvas_imageframe_start_handle_event(GdkEvent* event, ArdourCanvas::Item*,ImageFrameView*);
|
|
|
|
bool canvas_imageframe_end_handle_event(GdkEvent* event, ArdourCanvas::Item*,ImageFrameView*);
|
|
|
|
bool canvas_marker_time_axis_view_event(GdkEvent* event, ArdourCanvas::Item*,MarkerTimeAxis*);
|
|
|
|
bool canvas_markerview_item_view_event(GdkEvent* event, ArdourCanvas::Item*,MarkerView*);
|
|
|
|
bool canvas_markerview_start_handle_event(GdkEvent* event, ArdourCanvas::Item*,MarkerView*);
|
|
|
|
bool canvas_markerview_end_handle_event(GdkEvent* event, ArdourCanvas::Item*,MarkerView*);
|
2005-10-12 12:28:26 -04:00
|
|
|
|
2005-11-14 11:24:21 -05:00
|
|
|
/* non-public event handlers */
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-11-15 22:09:36 -05:00
|
|
|
bool canvas_playhead_cursor_event (GdkEvent* event, ArdourCanvas::Item*);
|
|
|
|
bool canvas_edit_cursor_event (GdkEvent* event, ArdourCanvas::Item*);
|
2005-11-14 11:24:21 -05:00
|
|
|
bool track_canvas_event (GdkEvent* event, ArdourCanvas::Item*);
|
2005-12-23 21:17:47 -05:00
|
|
|
bool track_canvas_scroll (GdkEventScroll* event);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-11-16 13:42:48 -05:00
|
|
|
Gtk::Allocation canvas_allocation;
|
|
|
|
bool canvas_idle_queued;
|
2005-11-15 21:57:22 -05:00
|
|
|
void track_canvas_allocate (Gtk::Allocation alloc);
|
2007-01-29 15:02:43 -05:00
|
|
|
bool track_canvas_size_allocated ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void set_edit_cursor (GdkEvent* event);
|
|
|
|
void set_playhead_cursor (GdkEvent* event);
|
|
|
|
|
2005-09-25 16:33:00 -04:00
|
|
|
void kbd_driver (sigc::slot<void,GdkEvent*>, bool use_track_canvas = true, bool use_time_canvas = true, bool can_select = true);
|
2005-09-25 14:42:24 -04:00
|
|
|
void kbd_set_playhead_cursor ();
|
|
|
|
void kbd_set_edit_cursor ();
|
2006-01-22 10:46:30 -05:00
|
|
|
void kbd_mute_unmute_region ();
|
2005-09-25 14:42:24 -04:00
|
|
|
void kbd_split ();
|
2006-01-22 08:29:08 -05:00
|
|
|
void kbd_set_sync_position ();
|
2005-09-25 14:42:24 -04:00
|
|
|
void kbd_align (ARDOUR::RegionPoint);
|
|
|
|
void kbd_align_relative (ARDOUR::RegionPoint);
|
|
|
|
void kbd_brush ();
|
|
|
|
void kbd_audition ();
|
|
|
|
|
|
|
|
void kbd_do_split (GdkEvent*);
|
2006-01-22 08:29:08 -05:00
|
|
|
void kbd_do_set_sync_position (GdkEvent* ev);
|
2005-09-25 14:42:24 -04:00
|
|
|
void kbd_do_align (GdkEvent*, ARDOUR::RegionPoint);
|
|
|
|
void kbd_do_align_relative (GdkEvent*, ARDOUR::RegionPoint);
|
|
|
|
void kbd_do_brush (GdkEvent*);
|
|
|
|
void kbd_do_audition (GdkEvent*);
|
|
|
|
|
|
|
|
void handle_new_duration ();
|
|
|
|
void initialize_canvas ();
|
2005-11-15 21:57:22 -05:00
|
|
|
void reset_scrolling_region (Gtk::Allocation* alloc = 0);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
/* display control */
|
|
|
|
|
|
|
|
bool _show_measures;
|
|
|
|
bool _show_waveforms;
|
|
|
|
bool _follow_playhead;
|
|
|
|
bool _show_waveforms_recording;
|
|
|
|
|
|
|
|
ARDOUR::TempoMap::BBTPointList *current_bbt_points;
|
|
|
|
|
2005-11-27 17:35:04 -05:00
|
|
|
typedef vector<ArdourCanvas::SimpleLine*> TimeLineList;
|
2005-09-25 14:42:24 -04:00
|
|
|
TimeLineList free_measure_lines;
|
|
|
|
TimeLineList used_measure_lines;
|
|
|
|
|
2005-11-14 11:24:21 -05:00
|
|
|
ArdourCanvas::Group* time_line_group;
|
2005-11-27 17:35:04 -05:00
|
|
|
ArdourCanvas::SimpleLine* get_time_line ();
|
2005-09-25 14:42:24 -04:00
|
|
|
void hide_measures ();
|
2006-09-10 13:49:03 -04:00
|
|
|
void draw_measures ();
|
|
|
|
bool lazy_hide_and_draw_measures ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void new_tempo_section ();
|
|
|
|
|
2006-09-28 13:23:52 -04:00
|
|
|
void mouse_add_new_tempo_event (nframes_t where);
|
|
|
|
void mouse_add_new_meter_event (nframes_t where);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-11-14 11:24:21 -05:00
|
|
|
void remove_tempo_marker (ArdourCanvas::Item*);
|
|
|
|
void remove_meter_marker (ArdourCanvas::Item*);
|
2005-09-25 14:42:24 -04:00
|
|
|
gint real_remove_tempo_marker (ARDOUR::TempoSection*);
|
|
|
|
gint real_remove_meter_marker (ARDOUR::MeterSection*);
|
|
|
|
|
|
|
|
void edit_tempo_section (ARDOUR::TempoSection*);
|
|
|
|
void edit_meter_section (ARDOUR::MeterSection*);
|
2005-11-14 11:24:21 -05:00
|
|
|
void edit_tempo_marker (ArdourCanvas::Item*);
|
|
|
|
void edit_meter_marker (ArdourCanvas::Item*);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void marker_menu_edit ();
|
|
|
|
void marker_menu_remove ();
|
|
|
|
void marker_menu_rename ();
|
|
|
|
void marker_menu_hide ();
|
|
|
|
void marker_menu_loop_range ();
|
2006-02-15 07:15:29 -05:00
|
|
|
void marker_menu_select_all_selectables_using_range ();
|
2006-03-31 19:21:25 -05:00
|
|
|
void marker_menu_separate_regions_using_location ();
|
2005-09-25 14:42:24 -04:00
|
|
|
void marker_menu_play_from ();
|
2007-01-02 16:25:37 -05:00
|
|
|
void marker_menu_play_range ();
|
2005-09-25 14:42:24 -04:00
|
|
|
void marker_menu_set_playhead ();
|
|
|
|
void marker_menu_set_from_playhead ();
|
|
|
|
void marker_menu_set_from_selection ();
|
|
|
|
void new_transport_marker_menu_set_loop ();
|
|
|
|
void new_transport_marker_menu_set_punch ();
|
|
|
|
void update_loop_range_view (bool visibility=false);
|
|
|
|
void update_punch_range_view (bool visibility=false);
|
|
|
|
gint new_transport_marker_menu_popdown (GdkEventAny*);
|
2005-11-14 11:24:21 -05:00
|
|
|
void marker_context_menu (GdkEventButton*, ArdourCanvas::Item*);
|
|
|
|
void tm_marker_context_menu (GdkEventButton*, ArdourCanvas::Item*);
|
|
|
|
void transport_marker_context_menu (GdkEventButton*, ArdourCanvas::Item*);
|
|
|
|
void new_transport_marker_context_menu (GdkEventButton*, ArdourCanvas::Item*);
|
2007-01-08 12:12:29 -05:00
|
|
|
void build_range_marker_menu (bool loop_or_punch);
|
|
|
|
void build_marker_menu (bool start_or_end);
|
2005-09-25 14:42:24 -04:00
|
|
|
void build_tm_marker_menu ();
|
|
|
|
void build_new_transport_marker_menu ();
|
|
|
|
|
|
|
|
Gtk::Menu* tm_marker_menu;
|
|
|
|
Gtk::Menu* marker_menu;
|
2007-01-08 12:12:29 -05:00
|
|
|
Gtk::Menu* start_end_marker_menu;
|
2006-03-31 19:21:25 -05:00
|
|
|
Gtk::Menu* range_marker_menu;
|
2005-09-25 14:42:24 -04:00
|
|
|
Gtk::Menu* transport_marker_menu;
|
|
|
|
Gtk::Menu* new_transport_marker_menu;
|
2005-11-14 11:24:21 -05:00
|
|
|
ArdourCanvas::Item* marker_menu_item;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
typedef list<Marker*> Marks;
|
|
|
|
Marks metric_marks;
|
|
|
|
|
|
|
|
void remove_metric_marks ();
|
|
|
|
void draw_metric_marks (const ARDOUR::Metrics& metrics);
|
|
|
|
|
2007-01-29 15:02:43 -05:00
|
|
|
void tempo_map_changed (ARDOUR::Change, bool immediate_redraw);
|
2005-09-25 14:42:24 -04:00
|
|
|
void redisplay_tempo ();
|
|
|
|
|
2006-09-28 13:23:52 -04:00
|
|
|
void snap_to (nframes_t& first, int32_t direction = 0, bool for_mark = false);
|
2005-09-25 14:42:24 -04:00
|
|
|
uint32_t bbt_beat_subdivision;
|
|
|
|
|
|
|
|
/* toolbar */
|
|
|
|
|
|
|
|
Gtk::ToggleButton editor_mixer_button;
|
|
|
|
|
|
|
|
void editor_mixer_button_toggled ();
|
|
|
|
|
|
|
|
AudioClock edit_cursor_clock;
|
|
|
|
AudioClock zoom_range_clock;
|
|
|
|
Gtk::Button zoom_in_button;
|
|
|
|
Gtk::Button zoom_out_button;
|
|
|
|
Gtk::Button zoom_out_full_button;
|
|
|
|
Gtk::Button zoom_onetoone_button;
|
|
|
|
|
|
|
|
Gtk::VBox toolbar_clock_vbox;
|
|
|
|
Gtk::VBox toolbar_selection_clock_vbox;
|
|
|
|
Gtk::Table toolbar_selection_clock_table;
|
|
|
|
Gtk::Label toolbar_selection_cursor_label;
|
|
|
|
|
2006-08-03 22:18:45 -04:00
|
|
|
Gtk::HBox mouse_mode_button_box;
|
|
|
|
Gtkmm2ext::TearOff* mouse_mode_tearoff;
|
2005-09-25 14:42:24 -04:00
|
|
|
Gtk::ToggleButton mouse_select_button;
|
|
|
|
Gtk::ToggleButton mouse_move_button;
|
|
|
|
Gtk::ToggleButton mouse_gain_button;
|
|
|
|
Gtk::ToggleButton mouse_zoom_button;
|
|
|
|
Gtk::ToggleButton mouse_timefx_button;
|
|
|
|
Gtk::ToggleButton mouse_audition_button;
|
|
|
|
GroupedButtons *mouse_mode_button_set;
|
|
|
|
void mouse_mode_toggled (Editing::MouseMode m);
|
|
|
|
bool ignore_mouse_mode_toggle;
|
|
|
|
|
|
|
|
gint mouse_select_button_release (GdkEventButton*);
|
|
|
|
|
|
|
|
Gtk::VBox automation_box;
|
|
|
|
Gtk::Button automation_mode_button;
|
|
|
|
Gtk::ToggleButton global_automation_button;
|
|
|
|
|
2005-09-26 10:33:53 -04:00
|
|
|
Gtk::ComboBoxText edit_mode_selector;
|
2006-08-03 22:18:45 -04:00
|
|
|
Gtk::VBox edit_mode_box;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-11-15 21:57:22 -05:00
|
|
|
void edit_mode_selection_done ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-09-26 10:33:53 -04:00
|
|
|
Gtk::ComboBoxText snap_type_selector;
|
2006-08-03 22:18:45 -04:00
|
|
|
Gtk::ComboBoxText snap_mode_selector;
|
|
|
|
Gtk::HBox snap_box;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-11-01 12:41:28 -05:00
|
|
|
std::vector<std::string> snap_type_strings;
|
|
|
|
std::vector<std::string> snap_mode_strings;
|
|
|
|
|
2005-11-15 21:57:22 -05:00
|
|
|
void snap_type_selection_done ();
|
|
|
|
void snap_mode_selection_done ();
|
2006-11-01 12:41:28 -05:00
|
|
|
void snap_mode_chosen (Editing::SnapMode);
|
|
|
|
void snap_type_chosen (Editing::SnapType);
|
|
|
|
|
|
|
|
Glib::RefPtr<Gtk::RadioAction> snap_type_action (Editing::SnapType);
|
|
|
|
Glib::RefPtr<Gtk::RadioAction> snap_mode_action (Editing::SnapMode);
|
|
|
|
|
2005-09-26 10:33:53 -04:00
|
|
|
Gtk::ComboBoxText zoom_focus_selector;
|
2006-11-01 12:41:28 -05:00
|
|
|
Gtk::VBox zoom_focus_box;
|
|
|
|
|
|
|
|
std::vector<std::string> zoom_focus_strings;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-11-15 21:57:22 -05:00
|
|
|
void zoom_focus_selection_done ();
|
2006-11-01 12:41:28 -05:00
|
|
|
void zoom_focus_chosen (Editing::ZoomFocus);
|
|
|
|
|
|
|
|
Glib::RefPtr<Gtk::RadioAction> zoom_focus_action (Editing::ZoomFocus);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-08-03 22:18:45 -04:00
|
|
|
Gtk::HBox zoom_box;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void zoom_adjustment_changed();
|
|
|
|
|
|
|
|
void edit_cursor_clock_changed();
|
|
|
|
|
|
|
|
void setup_toolbar ();
|
|
|
|
|
2005-09-25 16:33:00 -04:00
|
|
|
Gtkmm2ext::TearOff* tools_tearoff;
|
2005-09-25 14:42:24 -04:00
|
|
|
Gtk::HBox toolbar_hbox;
|
|
|
|
Gtk::EventBox toolbar_base;
|
|
|
|
Gtk::Frame toolbar_frame;
|
|
|
|
|
|
|
|
/* selection process */
|
|
|
|
|
|
|
|
Selection* selection;
|
|
|
|
Selection* cut_buffer;
|
|
|
|
|
|
|
|
void time_selection_changed ();
|
|
|
|
void track_selection_changed ();
|
|
|
|
void region_selection_changed ();
|
|
|
|
void point_selection_changed ();
|
|
|
|
|
|
|
|
enum SelectionOp {
|
|
|
|
CreateSelection,
|
|
|
|
SelectionStartTrim,
|
|
|
|
SelectionEndTrim,
|
|
|
|
SelectionMove
|
|
|
|
} selection_op;
|
|
|
|
|
2005-11-14 11:24:21 -05:00
|
|
|
void start_selection_op (ArdourCanvas::Item* item, GdkEvent* event, SelectionOp);
|
|
|
|
void drag_selection (ArdourCanvas::Item* item, GdkEvent* event);
|
|
|
|
void end_selection_op (ArdourCanvas::Item* item, GdkEvent* event);
|
2005-09-25 14:42:24 -04:00
|
|
|
void cancel_selection ();
|
|
|
|
|
|
|
|
void region_selection_op (void (ARDOUR::Region::*pmf)(void));
|
|
|
|
void region_selection_op (void (ARDOUR::Region::*pmf)(void*), void*);
|
|
|
|
void region_selection_op (void (ARDOUR::Region::*pmf)(bool), bool);
|
|
|
|
|
2006-09-28 13:23:52 -04:00
|
|
|
bool audio_region_selection_covers (nframes_t where);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
/* transport range select process */
|
|
|
|
enum RangeMarkerOp {
|
|
|
|
CreateRangeMarker,
|
|
|
|
CreateTransportMarker
|
|
|
|
} range_marker_op;
|
|
|
|
|
2005-11-14 11:24:21 -05:00
|
|
|
void start_range_markerbar_op (ArdourCanvas::Item* item, GdkEvent* event, RangeMarkerOp);
|
|
|
|
void drag_range_markerbar_op (ArdourCanvas::Item* item, GdkEvent* event);
|
|
|
|
void end_range_markerbar_op (ArdourCanvas::Item* item, GdkEvent* event);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-11-25 19:06:46 -05:00
|
|
|
ArdourCanvas::SimpleRect* range_bar_drag_rect;
|
|
|
|
ArdourCanvas::SimpleRect* transport_bar_drag_rect;
|
|
|
|
ArdourCanvas::Line* marker_drag_line;
|
|
|
|
ArdourCanvas::Points marker_drag_line_points;
|
|
|
|
ArdourCanvas::SimpleRect* range_marker_drag_rect;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void update_marker_drag_item (ARDOUR::Location *);
|
|
|
|
|
2005-11-25 19:06:46 -05:00
|
|
|
ArdourCanvas::SimpleRect *transport_bar_range_rect;
|
2005-11-14 11:24:21 -05:00
|
|
|
ArdourCanvas::SimpleRect *transport_bar_preroll_rect;
|
2005-11-25 19:06:46 -05:00
|
|
|
ArdourCanvas::SimpleRect *transport_bar_postroll_rect;
|
2005-11-14 11:24:21 -05:00
|
|
|
ArdourCanvas::SimpleRect *transport_loop_range_rect;
|
2005-11-25 19:06:46 -05:00
|
|
|
ArdourCanvas::SimpleRect *transport_punch_range_rect;
|
|
|
|
ArdourCanvas::SimpleLine *transport_punchin_line;
|
|
|
|
ArdourCanvas::SimpleLine *transport_punchout_line;
|
2005-11-14 11:24:21 -05:00
|
|
|
ArdourCanvas::SimpleRect *transport_preroll_rect;
|
|
|
|
ArdourCanvas::SimpleRect *transport_postroll_rect;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
ARDOUR::Location* transport_loop_location();
|
|
|
|
ARDOUR::Location* transport_punch_location();
|
|
|
|
|
|
|
|
ARDOUR::Location *temp_location;
|
|
|
|
|
|
|
|
/* object rubberband select process */
|
|
|
|
|
2005-11-14 11:24:21 -05:00
|
|
|
void start_rubberband_select (ArdourCanvas::Item* item, GdkEvent* event);
|
|
|
|
void drag_rubberband_select (ArdourCanvas::Item* item, GdkEvent* event);
|
|
|
|
void end_rubberband_select (ArdourCanvas::Item* item, GdkEvent* event);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-09-28 13:23:52 -04:00
|
|
|
bool select_all_within (nframes_t start, nframes_t end, gdouble topy, gdouble boty, Selection::Operation op);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-11-27 17:35:04 -05:00
|
|
|
ArdourCanvas::SimpleRect *rubberband_rect;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
/* mouse zoom process */
|
|
|
|
|
2005-11-14 11:24:21 -05:00
|
|
|
void start_mouse_zoom (ArdourCanvas::Item* item, GdkEvent* event);
|
|
|
|
void drag_mouse_zoom (ArdourCanvas::Item* item, GdkEvent* event);
|
|
|
|
void end_mouse_zoom (ArdourCanvas::Item* item, GdkEvent* event);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-11-27 17:35:04 -05:00
|
|
|
ArdourCanvas::SimpleRect *zoom_rect;
|
2006-09-28 13:23:52 -04:00
|
|
|
void reposition_zoom_rect (nframes_t start, nframes_t end);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
/* diskstream/route display management */
|
|
|
|
|
2005-10-26 14:12:00 -04:00
|
|
|
struct RouteDisplayModelColumns : public Gtk::TreeModel::ColumnRecord {
|
|
|
|
RouteDisplayModelColumns() {
|
|
|
|
add (text);
|
2006-01-09 23:25:47 -05:00
|
|
|
add (visible);
|
2005-10-26 14:12:00 -04:00
|
|
|
add (tv);
|
|
|
|
}
|
|
|
|
Gtk::TreeModelColumn<Glib::ustring> text;
|
2006-01-09 23:25:47 -05:00
|
|
|
Gtk::TreeModelColumn<bool> visible;
|
|
|
|
Gtk::TreeModelColumn<TimeAxisView*> tv;
|
2005-10-26 14:12:00 -04:00
|
|
|
};
|
|
|
|
|
2006-01-09 23:25:47 -05:00
|
|
|
RouteDisplayModelColumns route_display_columns;
|
2006-01-10 10:09:38 -05:00
|
|
|
Glib::RefPtr<Gtk::ListStore> route_display_model;
|
2005-10-26 14:12:00 -04:00
|
|
|
Glib::RefPtr<Gtk::TreeSelection> route_display_selection;
|
|
|
|
|
2006-09-20 12:24:24 -04:00
|
|
|
Gtkmm2ext::DnDTreeView<boost::shared_ptr<ARDOUR::Route> > route_list_display;
|
|
|
|
Gtk::ScrolledWindow route_list_scroller;
|
|
|
|
Gtk::Menu* route_list_menu;
|
2006-01-09 23:25:47 -05:00
|
|
|
|
|
|
|
bool route_list_display_button_press (GdkEventButton*);
|
|
|
|
bool route_list_selection_filter (const Glib::RefPtr<Gtk::TreeModel>& model, const Gtk::TreeModel::Path& path, bool yn);
|
|
|
|
|
|
|
|
void route_list_change (const Gtk::TreeModel::Path&,const Gtk::TreeModel::iterator&);
|
|
|
|
void route_list_delete (const Gtk::TreeModel::Path&);
|
|
|
|
void initial_route_list_display ();
|
|
|
|
void redisplay_route_list();
|
|
|
|
void route_list_reordered (const Gtk::TreeModel::Path& path, const Gtk::TreeModel::iterator& iter, int* what);
|
|
|
|
bool ignore_route_list_reorder;
|
|
|
|
bool no_route_list_redisplay;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void build_route_list_menu ();
|
2006-01-09 23:25:47 -05:00
|
|
|
void show_route_list_menu ();
|
|
|
|
|
|
|
|
void show_all_routes ();
|
|
|
|
void hide_all_routes ();
|
|
|
|
void show_all_audiotracks ();
|
|
|
|
void hide_all_audiotracks ();
|
|
|
|
void show_all_audiobus ();
|
|
|
|
void hide_all_audiobus ();
|
|
|
|
|
|
|
|
void set_all_tracks_visibility (bool yn);
|
|
|
|
void set_all_audio_visibility (int type, bool yn);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
/* edit group management */
|
|
|
|
|
2005-10-26 14:12:00 -04:00
|
|
|
struct GroupListModelColumns : public Gtk::TreeModel::ColumnRecord {
|
|
|
|
GroupListModelColumns () {
|
|
|
|
add (is_active);
|
2006-01-09 23:25:47 -05:00
|
|
|
add (is_visible);
|
2005-10-26 14:12:00 -04:00
|
|
|
add (text);
|
|
|
|
add (routegroup);
|
|
|
|
}
|
|
|
|
Gtk::TreeModelColumn<bool> is_active;
|
2006-01-09 23:25:47 -05:00
|
|
|
Gtk::TreeModelColumn<bool> is_visible;
|
2005-10-26 14:12:00 -04:00
|
|
|
Gtk::TreeModelColumn<std::string> text;
|
|
|
|
Gtk::TreeModelColumn<ARDOUR::RouteGroup*> routegroup;
|
|
|
|
};
|
|
|
|
|
|
|
|
GroupListModelColumns group_columns;
|
|
|
|
Glib::RefPtr<Gtk::ListStore> group_model;
|
|
|
|
Glib::RefPtr<Gtk::TreeSelection> group_selection;
|
|
|
|
|
2006-01-09 23:25:47 -05:00
|
|
|
Gtk::TreeView edit_group_display;
|
|
|
|
Gtk::ScrolledWindow edit_group_display_scroller;
|
2005-12-29 19:34:21 -05:00
|
|
|
Gtk::Menu* edit_group_list_menu;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void build_edit_group_list_menu ();
|
2006-01-09 23:25:47 -05:00
|
|
|
void activate_all_edit_groups ();
|
|
|
|
void disable_all_edit_groups ();
|
|
|
|
|
2006-03-09 18:44:39 -05:00
|
|
|
bool in_edit_group_row_change;
|
2006-01-09 23:25:47 -05:00
|
|
|
void edit_group_row_change (const Gtk::TreeModel::Path&,const Gtk::TreeModel::iterator&);
|
2006-03-09 23:05:11 -05:00
|
|
|
void edit_group_name_edit (const Glib::ustring&, const Glib::ustring&);
|
2005-09-25 14:42:24 -04:00
|
|
|
void new_edit_group ();
|
|
|
|
void edit_group_list_button_clicked ();
|
|
|
|
gint edit_group_list_button_press_event (GdkEventButton* ev);
|
|
|
|
void add_edit_group (ARDOUR::RouteGroup* group);
|
2006-03-08 18:26:28 -05:00
|
|
|
void remove_selected_edit_group ();
|
|
|
|
void edit_groups_changed ();
|
2005-09-25 14:42:24 -04:00
|
|
|
void group_flags_changed (void*, ARDOUR::RouteGroup*);
|
|
|
|
|
|
|
|
Gtk::VBox list_vpacker;
|
|
|
|
|
|
|
|
/* autoscrolling */
|
|
|
|
|
2006-10-09 20:42:00 -04:00
|
|
|
bool autoscroll_active;
|
2005-09-25 14:42:24 -04:00
|
|
|
int autoscroll_timeout_tag;
|
|
|
|
int autoscroll_direction;
|
|
|
|
uint32_t autoscroll_cnt;
|
2006-09-28 13:23:52 -04:00
|
|
|
nframes_t autoscroll_distance;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
static gint _autoscroll_canvas (void *);
|
2006-09-01 22:54:04 -04:00
|
|
|
bool autoscroll_canvas ();
|
2005-09-25 14:42:24 -04:00
|
|
|
void start_canvas_autoscroll (int direction);
|
|
|
|
void stop_canvas_autoscroll ();
|
|
|
|
void maybe_autoscroll (GdkEvent*);
|
|
|
|
|
|
|
|
/* trimming */
|
|
|
|
enum TrimOp {
|
|
|
|
StartTrim,
|
|
|
|
EndTrim,
|
|
|
|
ContentsTrim,
|
|
|
|
} trim_op;
|
|
|
|
|
2005-11-14 11:24:21 -05:00
|
|
|
void start_trim (ArdourCanvas::Item*, GdkEvent*);
|
2005-09-25 14:42:24 -04:00
|
|
|
void point_trim (GdkEvent*);
|
2005-11-14 11:24:21 -05:00
|
|
|
void trim_motion_callback (ArdourCanvas::Item*, GdkEvent*);
|
2006-09-28 13:23:52 -04:00
|
|
|
void single_contents_trim (RegionView&, nframes_t, bool, bool, bool);
|
|
|
|
void single_start_trim (RegionView&, nframes_t, bool, bool);
|
|
|
|
void single_end_trim (RegionView&, nframes_t, bool, bool);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-11-14 11:24:21 -05:00
|
|
|
void trim_finished_callback (ArdourCanvas::Item*, GdkEvent*);
|
2006-08-03 22:18:45 -04:00
|
|
|
void thaw_region_after_trim (RegionView& rv);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void trim_region_to_edit_cursor ();
|
|
|
|
void trim_region_from_edit_cursor ();
|
|
|
|
|
|
|
|
bool show_gain_after_trim;
|
|
|
|
|
|
|
|
/* Drag-n-Drop */
|
|
|
|
|
2006-03-22 12:03:00 -05:00
|
|
|
int convert_drop_to_paths (std::vector<Glib::ustring>& paths,
|
2005-12-29 19:34:21 -05:00
|
|
|
const Glib::RefPtr<Gdk::DragContext>& context,
|
2005-09-25 14:42:24 -04:00
|
|
|
gint x,
|
|
|
|
gint y,
|
2005-12-29 19:34:21 -05:00
|
|
|
const Gtk::SelectionData& data,
|
2005-09-25 14:42:24 -04:00
|
|
|
guint info,
|
|
|
|
guint time);
|
|
|
|
|
2005-12-29 19:34:21 -05:00
|
|
|
void track_canvas_drag_data_received (const Glib::RefPtr<Gdk::DragContext>& context,
|
2005-09-25 14:42:24 -04:00
|
|
|
gint x,
|
|
|
|
gint y,
|
2005-12-29 19:34:21 -05:00
|
|
|
const Gtk::SelectionData& data,
|
2005-09-25 14:42:24 -04:00
|
|
|
guint info,
|
|
|
|
guint time);
|
2005-12-29 19:34:21 -05:00
|
|
|
|
|
|
|
void region_list_display_drag_data_received (const Glib::RefPtr<Gdk::DragContext>& context,
|
2005-09-25 14:42:24 -04:00
|
|
|
gint x,
|
|
|
|
gint y,
|
2005-12-29 19:34:21 -05:00
|
|
|
const Gtk::SelectionData& data,
|
2005-09-25 14:42:24 -04:00
|
|
|
guint info,
|
|
|
|
guint time);
|
2005-12-29 19:34:21 -05:00
|
|
|
|
|
|
|
|
2005-12-30 15:38:41 -05:00
|
|
|
void drop_paths (const Glib::RefPtr<Gdk::DragContext>& context,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
const Gtk::SelectionData& data,
|
|
|
|
guint info,
|
|
|
|
guint time);
|
|
|
|
|
|
|
|
void drop_regions (const Glib::RefPtr<Gdk::DragContext>& context,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
const Gtk::SelectionData& data,
|
|
|
|
guint info,
|
|
|
|
guint time);
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
/* audio export */
|
|
|
|
|
|
|
|
ExportDialog *export_dialog;
|
2006-03-05 14:39:16 -05:00
|
|
|
ExportDialog *export_range_markers_dialog;
|
|
|
|
|
2006-09-28 13:23:52 -04:00
|
|
|
void export_range (nframes_t start, nframes_t end);
|
2006-03-05 14:39:16 -05:00
|
|
|
void export_range_markers ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-08-03 22:18:45 -04:00
|
|
|
int write_region_selection(RegionSelection&);
|
2006-08-24 21:07:15 -04:00
|
|
|
bool write_region (string path, boost::shared_ptr<ARDOUR::AudioRegion>);
|
2005-09-25 14:42:24 -04:00
|
|
|
void export_region ();
|
|
|
|
void bounce_region_selection ();
|
|
|
|
void bounce_range_selection ();
|
|
|
|
void external_edit_region ();
|
|
|
|
|
|
|
|
int write_audio_selection (TimeSelection&);
|
2006-08-03 22:18:45 -04:00
|
|
|
bool write_audio_range (ARDOUR::AudioPlaylist&, uint32_t channels, list<ARDOUR::AudioRange>&);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void write_selection ();
|
|
|
|
|
|
|
|
/* history */
|
|
|
|
|
|
|
|
UndoAction get_memento() const;
|
|
|
|
|
2006-07-28 23:17:11 -04:00
|
|
|
XMLNode *before; /* used in *_reversible_command */
|
2005-09-25 14:42:24 -04:00
|
|
|
void begin_reversible_command (string cmd_name);
|
|
|
|
void commit_reversible_command ();
|
|
|
|
|
|
|
|
/* visual history */
|
|
|
|
|
|
|
|
UndoHistory visual_history;
|
2006-06-15 14:21:31 -04:00
|
|
|
UndoTransaction current_visual_command;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
|
|
|
|
void update_title ();
|
2005-12-22 07:23:54 -05:00
|
|
|
void update_title_s (const string & snapshot_name);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
struct State {
|
|
|
|
Selection* selection;
|
|
|
|
double frames_per_unit;
|
|
|
|
|
|
|
|
State();
|
|
|
|
~State();
|
|
|
|
};
|
|
|
|
|
|
|
|
void store_state (State&) const;
|
|
|
|
void restore_state (State *);
|
|
|
|
|
|
|
|
void instant_save ();
|
|
|
|
|
2006-08-24 21:07:15 -04:00
|
|
|
boost::shared_ptr<ARDOUR::AudioRegion> last_audition_region;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
/* freeze operations */
|
|
|
|
|
|
|
|
ARDOUR::InterThreadInfo freeze_status;
|
|
|
|
gint freeze_progress_timeout (void *);
|
|
|
|
static void* _freeze_thread (void*);
|
|
|
|
void* freeze_thread ();
|
|
|
|
|
|
|
|
void freeze_route ();
|
|
|
|
void unfreeze_route ();
|
|
|
|
|
|
|
|
/* edit-group solo + mute */
|
|
|
|
|
|
|
|
void set_edit_group_solo (ARDOUR::Route&, bool);
|
|
|
|
void set_edit_group_mute (ARDOUR::Route&, bool);
|
|
|
|
|
|
|
|
/* duplication */
|
|
|
|
|
|
|
|
void duplicate_dialog (bool for_region);
|
|
|
|
|
2006-09-28 13:23:52 -04:00
|
|
|
nframes_t event_frame (GdkEvent*, double* px = 0, double* py = 0);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-11-14 11:24:21 -05:00
|
|
|
void time_fx_motion (ArdourCanvas::Item*, GdkEvent*);
|
|
|
|
void start_time_fx (ArdourCanvas::Item*, GdkEvent*);
|
|
|
|
void end_time_fx (ArdourCanvas::Item*, GdkEvent*);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
struct TimeStretchDialog : public ArdourDialog {
|
|
|
|
ARDOUR::Session::TimeStretchRequest request;
|
|
|
|
Editor& editor;
|
2006-08-03 22:18:45 -04:00
|
|
|
RegionSelection regions;
|
2005-09-25 14:42:24 -04:00
|
|
|
Gtk::ProgressBar progress_bar;
|
|
|
|
Gtk::ToggleButton quick_button;
|
|
|
|
Gtk::ToggleButton antialias_button;
|
2006-05-19 22:57:38 -04:00
|
|
|
Gtk::Button* cancel_button;
|
|
|
|
Gtk::Button* action_button;
|
2005-09-25 14:42:24 -04:00
|
|
|
Gtk::HBox upper_button_box;
|
|
|
|
Gtk::VBox packer;
|
|
|
|
int status;
|
|
|
|
|
|
|
|
TimeStretchDialog (Editor& e);
|
|
|
|
|
|
|
|
gint update_progress ();
|
2005-09-25 16:33:00 -04:00
|
|
|
sigc::connection first_cancel;
|
|
|
|
sigc::connection first_delete;
|
2005-09-25 14:42:24 -04:00
|
|
|
void cancel_timestretch_in_progress ();
|
|
|
|
gint delete_timestretch_in_progress (GdkEventAny*);
|
|
|
|
};
|
|
|
|
|
|
|
|
/* "whats mine is yours" */
|
|
|
|
|
|
|
|
friend class TimeStretchDialog;
|
|
|
|
|
|
|
|
TimeStretchDialog* current_timestretch;
|
|
|
|
|
|
|
|
static void* timestretch_thread (void *arg);
|
2006-08-03 22:18:45 -04:00
|
|
|
int run_timestretch (RegionSelection&, float fraction);
|
2005-09-25 14:42:24 -04:00
|
|
|
void do_timestretch (TimeStretchDialog&);
|
|
|
|
|
|
|
|
/* editor-mixer strip */
|
|
|
|
|
|
|
|
MixerStrip *current_mixer_strip;
|
2006-11-02 14:18:50 -05:00
|
|
|
bool show_editor_mixer_when_tracks_arrive;
|
2005-09-25 14:42:24 -04:00
|
|
|
Gtk::VBox current_mixer_strip_vbox;
|
|
|
|
void cms_deleted ();
|
|
|
|
void current_mixer_strip_hidden ();
|
|
|
|
void current_mixer_strip_removed ();
|
|
|
|
|
2005-11-12 17:07:07 -05:00
|
|
|
void detach_tearoff (Gtk::Box* b, Gtk::Window* w);
|
|
|
|
void reattach_tearoff (Gtk::Box* b, Gtk::Window* w, int32_t n);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
/* nudging tracks */
|
|
|
|
|
|
|
|
void nudge_track (bool use_edit_cursor, bool forwards);
|
|
|
|
|
|
|
|
/* xfades */
|
|
|
|
|
|
|
|
bool _xfade_visibility;
|
|
|
|
|
|
|
|
/* <CMT Additions> */
|
2005-12-22 07:23:54 -05:00
|
|
|
void handle_new_imageframe_time_axis_view(const string & track_name, void* src) ;
|
|
|
|
void handle_new_imageframe_marker_time_axis_view(const string & track_name, TimeAxisView* marked_track) ;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-11-14 11:24:21 -05:00
|
|
|
void start_imageframe_grab(ArdourCanvas::Item*, GdkEvent*) ;
|
|
|
|
void start_markerview_grab(ArdourCanvas::Item*, GdkEvent*) ;
|
|
|
|
|
|
|
|
void imageframe_drag_motion_callback(ArdourCanvas::Item*, GdkEvent*) ;
|
|
|
|
void markerview_drag_motion_callback(ArdourCanvas::Item*, GdkEvent*) ;
|
|
|
|
void timeaxis_item_drag_finished_callback(ArdourCanvas::Item*, GdkEvent*) ;
|
|
|
|
|
|
|
|
gint canvas_imageframe_item_view_event(ArdourCanvas::Item* item, GdkEvent* event, ImageFrameView* ifv);
|
|
|
|
gint canvas_imageframe_view_event(ArdourCanvas::Item* item, GdkEvent* event, ImageFrameTimeAxis* ifta);
|
|
|
|
gint canvas_imageframe_start_handle_event(ArdourCanvas::Item* item, GdkEvent* event, ImageFrameView* ifv);
|
|
|
|
gint canvas_imageframe_end_handle_event(ArdourCanvas::Item* item, GdkEvent* event, ImageFrameView* ifv);
|
|
|
|
|
|
|
|
gint canvas_marker_time_axis_view_event(ArdourCanvas::Item* item, GdkEvent* event, MarkerTimeAxis* mta);
|
|
|
|
gint canvas_markerview_item_view_event(ArdourCanvas::Item* item, GdkEvent* event, MarkerView* mv);
|
|
|
|
gint canvas_markerview_start_handle_event(ArdourCanvas::Item* item, GdkEvent* event, MarkerView* mv);
|
|
|
|
gint canvas_markerview_end_handle_event(ArdourCanvas::Item* item, GdkEvent* event, MarkerView* mv);
|
|
|
|
|
|
|
|
void imageframe_start_handle_op(ArdourCanvas::Item* item, GdkEvent* event) ;
|
|
|
|
void imageframe_end_handle_op(ArdourCanvas::Item* item, GdkEvent* event) ;
|
|
|
|
void imageframe_start_handle_trim_motion(ArdourCanvas::Item* item, GdkEvent* event) ;
|
|
|
|
void imageframe_start_handle_end_trim(ArdourCanvas::Item* item, GdkEvent* event) ;
|
|
|
|
void imageframe_end_handle_trim_motion(ArdourCanvas::Item* item, GdkEvent* event) ;
|
|
|
|
void imageframe_end_handle_end_trim(ArdourCanvas::Item* item, GdkEvent* event) ;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-11-14 11:24:21 -05:00
|
|
|
void markerview_item_start_handle_op(ArdourCanvas::Item* item, GdkEvent* event) ;
|
|
|
|
void markerview_item_end_handle_op(ArdourCanvas::Item* item, GdkEvent* event) ;
|
|
|
|
void markerview_start_handle_trim_motion(ArdourCanvas::Item* item, GdkEvent* event) ;
|
|
|
|
void markerview_start_handle_end_trim(ArdourCanvas::Item* item, GdkEvent* event) ;
|
|
|
|
void markerview_end_handle_trim_motion(ArdourCanvas::Item* item, GdkEvent* event) ;
|
|
|
|
void markerview_end_handle_end_trim(ArdourCanvas::Item* item, GdkEvent* event) ;
|
|
|
|
|
|
|
|
void popup_imageframe_edit_menu(int button, int32_t time, ArdourCanvas::Item* ifv, bool with_frame) ;
|
|
|
|
void popup_marker_time_axis_edit_menu(int button, int32_t time, ArdourCanvas::Item* ifv, bool with_frame) ;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
ImageFrameSocketHandler* image_socket_listener ;
|
|
|
|
/* </CMT Additions> */
|
|
|
|
|
2007-01-10 11:19:13 -05:00
|
|
|
void toggle_xfade_active (boost::weak_ptr<ARDOUR::Crossfade>);
|
|
|
|
void toggle_xfade_length (boost::weak_ptr<ARDOUR::Crossfade>);
|
|
|
|
void edit_xfade (boost::weak_ptr<ARDOUR::Crossfade>);
|
2005-09-25 14:42:24 -04:00
|
|
|
void xfade_edit_left_region ();
|
|
|
|
void xfade_edit_right_region ();
|
|
|
|
|
|
|
|
static const int32_t default_width = 995;
|
|
|
|
static const int32_t default_height = 765;
|
|
|
|
|
|
|
|
/* nudge */
|
|
|
|
|
|
|
|
Gtk::Button nudge_forward_button;
|
|
|
|
Gtk::Button nudge_backward_button;
|
|
|
|
Gtk::HBox nudge_hbox;
|
|
|
|
Gtk::VBox nudge_vbox;
|
|
|
|
AudioClock nudge_clock;
|
|
|
|
|
2006-09-28 13:23:52 -04:00
|
|
|
nframes_t get_nudge_distance (nframes_t pos, nframes_t& next);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
/* audio filters */
|
|
|
|
|
|
|
|
void apply_filter (ARDOUR::AudioFilter&, string cmd);
|
|
|
|
|
|
|
|
/* handling cleanup */
|
|
|
|
|
2006-12-14 09:15:43 -05:00
|
|
|
int playlist_deletion_dialog (boost::shared_ptr<ARDOUR::Playlist>);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-09-25 16:33:00 -04:00
|
|
|
vector<sigc::connection> session_connections;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
/* tracking step changes of track height */
|
|
|
|
|
|
|
|
TimeAxisView* current_stepping_trackview;
|
|
|
|
struct timeval last_track_height_step_timestamp;
|
|
|
|
gint track_height_step_timeout();
|
2005-09-25 16:33:00 -04:00
|
|
|
sigc::connection step_timeout;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
TimeAxisView* entered_track;
|
2006-08-03 22:18:45 -04:00
|
|
|
RegionView* entered_regionview;
|
2005-09-25 14:42:24 -04:00
|
|
|
bool clear_entered_track;
|
|
|
|
gint left_track_canvas (GdkEventCrossing*);
|
|
|
|
void set_entered_track (TimeAxisView*);
|
2006-08-03 22:18:45 -04:00
|
|
|
void set_entered_regionview (RegionView*);
|
2005-09-25 14:42:24 -04:00
|
|
|
gint left_automation_track ();
|
|
|
|
|
|
|
|
bool _new_regionviews_show_envelope;
|
|
|
|
|
|
|
|
void toggle_gain_envelope_visibility ();
|
|
|
|
void toggle_gain_envelope_active ();
|
2006-11-17 12:51:22 -05:00
|
|
|
void reset_region_gain_envelopes ();
|
2006-11-13 17:59:02 -05:00
|
|
|
|
|
|
|
Gtk::CheckMenuItem* region_envelope_visible_item;
|
|
|
|
Gtk::CheckMenuItem* region_envelope_active_item;
|
|
|
|
Gtk::CheckMenuItem* region_mute_item;
|
|
|
|
Gtk::CheckMenuItem* region_lock_item;
|
|
|
|
Gtk::CheckMenuItem* region_opaque_item;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-12-12 15:54:55 -05:00
|
|
|
bool on_key_press_event (GdkEventKey*);
|
2006-01-04 22:18:44 -05:00
|
|
|
|
|
|
|
void session_state_saved (string);
|
2006-11-16 13:42:48 -05:00
|
|
|
|
|
|
|
Glib::RefPtr<Gtk::Action> undo_action;
|
|
|
|
Glib::RefPtr<Gtk::Action> redo_action;
|
|
|
|
|
|
|
|
void history_changed ();
|
2005-09-25 14:42:24 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __ardour_editor_h__ */
|