mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-17 20:26:30 +01:00
Remove unused editor hscroller code. Add buttons to the left and right of the summary to substitute for the equivalent buttons on a scrollbar.
git-svn-id: svn://localhost/ardour2/branches/3.0@6239 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
8128ffdf05
commit
1e4280c9cd
5 changed files with 45 additions and 81 deletions
|
|
@ -337,7 +337,6 @@ Editor::Editor ()
|
||||||
button_release_can_deselect = true;
|
button_release_can_deselect = true;
|
||||||
_dragging_playhead = false;
|
_dragging_playhead = false;
|
||||||
_dragging_edit_point = false;
|
_dragging_edit_point = false;
|
||||||
_dragging_hscrollbar = false;
|
|
||||||
select_new_marker = false;
|
select_new_marker = false;
|
||||||
rhythm_ferret = 0;
|
rhythm_ferret = 0;
|
||||||
_bundle_manager = 0;
|
_bundle_manager = 0;
|
||||||
|
|
@ -363,7 +362,6 @@ Editor::Editor ()
|
||||||
current_canvas_cursor = 0;
|
current_canvas_cursor = 0;
|
||||||
|
|
||||||
frames_per_unit = 2048; /* too early to use reset_zoom () */
|
frames_per_unit = 2048; /* too early to use reset_zoom () */
|
||||||
reset_hscrollbar_stepping ();
|
|
||||||
|
|
||||||
zoom_focus = ZoomFocusLeft;
|
zoom_focus = ZoomFocusLeft;
|
||||||
set_zoom_focus (ZoomFocusLeft);
|
set_zoom_focus (ZoomFocusLeft);
|
||||||
|
|
@ -462,15 +460,6 @@ Editor::Editor ()
|
||||||
controls_layout.signal_button_release_event().connect (mem_fun(*this, &Editor::edit_controls_button_release));
|
controls_layout.signal_button_release_event().connect (mem_fun(*this, &Editor::edit_controls_button_release));
|
||||||
controls_layout_size_request_connection = controls_layout.signal_size_request().connect (mem_fun (*this, &Editor::controls_layout_size_request));
|
controls_layout_size_request_connection = controls_layout.signal_size_request().connect (mem_fun (*this, &Editor::controls_layout_size_request));
|
||||||
|
|
||||||
edit_vscrollbar.set_adjustment (vertical_adjustment);
|
|
||||||
edit_hscrollbar.set_adjustment (horizontal_adjustment);
|
|
||||||
|
|
||||||
edit_hscrollbar.signal_button_press_event().connect (mem_fun(*this, &Editor::hscrollbar_button_press), false);
|
|
||||||
edit_hscrollbar.signal_button_release_event().connect (mem_fun(*this, &Editor::hscrollbar_button_release), false);
|
|
||||||
edit_hscrollbar.signal_size_allocate().connect (mem_fun(*this, &Editor::hscrollbar_allocate));
|
|
||||||
|
|
||||||
edit_hscrollbar.set_name ("EditorHScrollbar");
|
|
||||||
|
|
||||||
build_cursors ();
|
build_cursors ();
|
||||||
|
|
||||||
ArdourCanvas::Canvas* time_pad = manage(new ArdourCanvas::Canvas());
|
ArdourCanvas::Canvas* time_pad = manage(new ArdourCanvas::Canvas());
|
||||||
|
|
@ -557,12 +546,37 @@ Editor::Editor ()
|
||||||
VPaned *editor_summary_pane = manage(new VPaned());
|
VPaned *editor_summary_pane = manage(new VPaned());
|
||||||
editor_summary_pane->pack1(edit_packer);
|
editor_summary_pane->pack1(edit_packer);
|
||||||
|
|
||||||
|
Button* summary_arrows_left_left = manage (new Button);
|
||||||
|
summary_arrows_left_left->add (*manage (new Arrow (ARROW_LEFT, SHADOW_NONE)));
|
||||||
|
summary_arrows_left_left->signal_clicked().connect (mem_fun (*this, &Editor::horizontal_scroll_left));
|
||||||
|
Button* summary_arrows_left_right = manage (new Button);
|
||||||
|
summary_arrows_left_right->add (*manage (new Arrow (ARROW_RIGHT, SHADOW_NONE)));
|
||||||
|
summary_arrows_left_right->signal_clicked().connect (mem_fun (*this, &Editor::horizontal_scroll_right));
|
||||||
|
VBox* summary_arrows_left = manage (new VBox);
|
||||||
|
summary_arrows_left->pack_start (*summary_arrows_left_left);
|
||||||
|
summary_arrows_left->pack_start (*summary_arrows_left_right);
|
||||||
|
|
||||||
|
Button* summary_arrows_right_left = manage (new Button);
|
||||||
|
summary_arrows_right_left->add (*manage (new Arrow (ARROW_LEFT, SHADOW_NONE)));
|
||||||
|
summary_arrows_right_left->signal_clicked().connect (mem_fun (*this, &Editor::horizontal_scroll_left));
|
||||||
|
Button* summary_arrows_right_right = manage (new Button);
|
||||||
|
summary_arrows_right_right->add (*manage (new Arrow (ARROW_RIGHT, SHADOW_NONE)));
|
||||||
|
summary_arrows_right_right->signal_clicked().connect (mem_fun (*this, &Editor::horizontal_scroll_right));
|
||||||
|
VBox* summary_arrows_right = manage (new VBox);
|
||||||
|
summary_arrows_right->pack_start (*summary_arrows_right_left);
|
||||||
|
summary_arrows_right->pack_start (*summary_arrows_right_right);
|
||||||
|
|
||||||
Frame* summary_frame = manage (new Frame);
|
Frame* summary_frame = manage (new Frame);
|
||||||
summary_frame->set_shadow_type (Gtk::SHADOW_ETCHED_IN);
|
summary_frame->set_shadow_type (Gtk::SHADOW_ETCHED_IN);
|
||||||
summary_frame->add (*_summary);
|
summary_frame->add (*_summary);
|
||||||
summary_frame->show ();
|
summary_frame->show ();
|
||||||
|
|
||||||
editor_summary_pane->pack2(*summary_frame);
|
HBox* summary_hbox = manage (new HBox);
|
||||||
|
summary_hbox->pack_start (*summary_arrows_left, false, false);
|
||||||
|
summary_hbox->pack_start (*summary_frame, true, true);
|
||||||
|
summary_hbox->pack_start (*summary_arrows_right, false, false);
|
||||||
|
|
||||||
|
editor_summary_pane->pack2(*summary_hbox);
|
||||||
|
|
||||||
edit_pane.pack1 (*editor_summary_pane, true, true);
|
edit_pane.pack1 (*editor_summary_pane, true, true);
|
||||||
edit_pane.pack2 (the_notebook, false, true);
|
edit_pane.pack2 (the_notebook, false, true);
|
||||||
|
|
@ -4280,8 +4294,6 @@ Editor::post_zoom ()
|
||||||
|
|
||||||
ZoomChanged (); /* EMIT_SIGNAL */
|
ZoomChanged (); /* EMIT_SIGNAL */
|
||||||
|
|
||||||
reset_hscrollbar_stepping ();
|
|
||||||
|
|
||||||
if (session) {
|
if (session) {
|
||||||
cef = session->current_end_frame() + (current_page_frames() / 10);// Add a little extra so we can see the end marker
|
cef = session->current_end_frame() + (current_page_frames() / 10);// Add a little extra so we can see the end marker
|
||||||
}
|
}
|
||||||
|
|
@ -5058,3 +5070,20 @@ Editor::check_step_edit ()
|
||||||
|
|
||||||
return true; // do it again, till we stop
|
return true; // do it again, till we stop
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
Editor::horizontal_scroll_left ()
|
||||||
|
{
|
||||||
|
double x = leftmost_position() - current_page_frames() / 5;
|
||||||
|
if (x < 0) {
|
||||||
|
x = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
reset_x_origin (x);
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
Editor::horizontal_scroll_right ()
|
||||||
|
{
|
||||||
|
reset_x_origin (leftmost_position() + current_page_frames() / 5);
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -882,14 +882,8 @@ class Editor : public PublicEditor
|
||||||
void controls_layout_size_request (Gtk::Requisition*);
|
void controls_layout_size_request (Gtk::Requisition*);
|
||||||
sigc::connection controls_layout_size_request_connection;
|
sigc::connection controls_layout_size_request_connection;
|
||||||
|
|
||||||
Gtk::HScrollbar edit_hscrollbar;
|
void horizontal_scroll_left ();
|
||||||
bool _dragging_hscrollbar;
|
void horizontal_scroll_right ();
|
||||||
|
|
||||||
void reset_hscrollbar_stepping ();
|
|
||||||
|
|
||||||
bool hscrollbar_button_press (GdkEventButton*);
|
|
||||||
bool hscrollbar_button_release (GdkEventButton*);
|
|
||||||
void hscrollbar_allocate (Gtk::Allocation &alloc);
|
|
||||||
|
|
||||||
double _canvas_width;
|
double _canvas_width;
|
||||||
double _canvas_height;
|
double _canvas_height;
|
||||||
|
|
|
||||||
|
|
@ -363,7 +363,6 @@ Editor::track_canvas_size_allocated ()
|
||||||
}
|
}
|
||||||
|
|
||||||
handle_new_duration ();
|
handle_new_duration ();
|
||||||
reset_hscrollbar_stepping ();
|
|
||||||
update_fixed_rulers();
|
update_fixed_rulers();
|
||||||
redisplay_tempo (false);
|
redisplay_tempo (false);
|
||||||
_summary->set_overlays_dirty ();
|
_summary->set_overlays_dirty ();
|
||||||
|
|
|
||||||
|
|
@ -1,57 +0,0 @@
|
||||||
/*
|
|
||||||
Copyright (C) 2002 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.
|
|
||||||
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "editor.h"
|
|
||||||
|
|
||||||
#include "ardour/session.h"
|
|
||||||
|
|
||||||
using namespace std;
|
|
||||||
using namespace ARDOUR;
|
|
||||||
using namespace PBD;
|
|
||||||
|
|
||||||
void
|
|
||||||
Editor::hscrollbar_allocate (Gtk::Allocation &)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
bool
|
|
||||||
Editor::hscrollbar_button_press (GdkEventButton *)
|
|
||||||
{
|
|
||||||
_dragging_hscrollbar = true;
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool
|
|
||||||
Editor::hscrollbar_button_release (GdkEventButton *)
|
|
||||||
{
|
|
||||||
_dragging_hscrollbar = false;
|
|
||||||
|
|
||||||
if (session) {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
Editor::reset_hscrollbar_stepping ()
|
|
||||||
{
|
|
||||||
horizontal_adjustment.set_step_increment ((current_page_frames() / 5)/frames_per_unit); /* 5 clicks to scroll the entire page */
|
|
||||||
horizontal_adjustment.set_page_increment (current_page_frames()/frames_per_unit);
|
|
||||||
}
|
|
||||||
|
|
@ -79,7 +79,6 @@ gtk2_ardour_sources = [
|
||||||
'editor_route_groups.cc',
|
'editor_route_groups.cc',
|
||||||
'editor_export_audio.cc',
|
'editor_export_audio.cc',
|
||||||
'editor_group_tabs.cc',
|
'editor_group_tabs.cc',
|
||||||
'editor_hscroller.cc',
|
|
||||||
'editor_keyboard.cc',
|
'editor_keyboard.cc',
|
||||||
'editor_keys.cc',
|
'editor_keys.cc',
|
||||||
'editor_locations.cc',
|
'editor_locations.cc',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue