mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 00:04:56 +01:00
removed axis view from foldback strip
This commit is contained in:
parent
8cc1f8f8cb
commit
5d652dd9c4
2 changed files with 2 additions and 24 deletions
|
|
@ -483,8 +483,6 @@ FoldbackStrip::set_route (boost::shared_ptr<Route> rt)
|
||||||
|
|
||||||
_route->comment_changed.connect (route_connections, invalidator (*this), boost::bind (&FoldbackStrip::setup_comment_button, this), gui_context());
|
_route->comment_changed.connect (route_connections, invalidator (*this), boost::bind (&FoldbackStrip::setup_comment_button, this), gui_context());
|
||||||
|
|
||||||
set_stuff_from_route ();
|
|
||||||
|
|
||||||
/* now force an update of all the various elements */
|
/* now force an update of all the various elements */
|
||||||
|
|
||||||
update_mute_display ();
|
update_mute_display ();
|
||||||
|
|
@ -507,7 +505,6 @@ FoldbackStrip::set_route (boost::shared_ptr<Route> rt)
|
||||||
mute_solo_table.show();
|
mute_solo_table.show();
|
||||||
bottom_button_table.show();
|
bottom_button_table.show();
|
||||||
show_sends_box.show_all();
|
show_sends_box.show_all();
|
||||||
//send_scroller.show ();
|
|
||||||
send_display.show ();
|
send_display.show ();
|
||||||
output_button.show();
|
output_button.show();
|
||||||
name_button.show();
|
name_button.show();
|
||||||
|
|
@ -559,22 +556,10 @@ FoldbackStrip::processors_changed (RouteProcessorChange)
|
||||||
update_send_box ();
|
update_send_box ();
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
|
||||||
FoldbackStrip::set_stuff_from_route ()
|
|
||||||
{
|
|
||||||
/* if width is not set, it will be set by the MixerUI or editor */
|
|
||||||
|
|
||||||
Width width;
|
|
||||||
if (get_gui_property ("strip-width", width)) {
|
|
||||||
// set_width_enum (width, this);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
void
|
||||||
FoldbackStrip::set_packed (bool yn)
|
FoldbackStrip::set_packed (bool yn)
|
||||||
{
|
{
|
||||||
_packed = yn;
|
_packed = yn;
|
||||||
set_gui_property ("visible", _packed);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1253,7 +1238,7 @@ FoldbackStrip::list_fb_routes ()
|
||||||
void
|
void
|
||||||
FoldbackStrip::set_selected (bool yn)
|
FoldbackStrip::set_selected (bool yn)
|
||||||
{
|
{
|
||||||
AxisView::set_selected (yn);
|
//AxisView::set_selected (yn);
|
||||||
|
|
||||||
if (selected()) {
|
if (selected()) {
|
||||||
global_frame.set_shadow_type (Gtk::SHADOW_ETCHED_OUT);
|
global_frame.set_shadow_type (Gtk::SHADOW_ETCHED_OUT);
|
||||||
|
|
|
||||||
|
|
@ -45,12 +45,10 @@
|
||||||
#include "widgets/ardour_button.h"
|
#include "widgets/ardour_button.h"
|
||||||
#include "widgets/ardour_knob.h"
|
#include "widgets/ardour_knob.h"
|
||||||
|
|
||||||
#include "axis_view.h"
|
|
||||||
#include "route_ui.h"
|
#include "route_ui.h"
|
||||||
#include "panner_ui.h"
|
#include "panner_ui.h"
|
||||||
#include "enums.h"
|
#include "enums.h"
|
||||||
#include "processor_box.h"
|
#include "processor_box.h"
|
||||||
//#include "visibility_group.h"
|
|
||||||
#include "processor_selection.h"
|
#include "processor_selection.h"
|
||||||
|
|
||||||
namespace ARDOUR {
|
namespace ARDOUR {
|
||||||
|
|
@ -104,7 +102,7 @@ private:
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class FoldbackStrip : public AxisView, public RouteUI, public Gtk::EventBox
|
class FoldbackStrip : public RouteUI, public Gtk::EventBox
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
FoldbackStrip (Mixer_UI&, ARDOUR::Session*, boost::shared_ptr<ARDOUR::Route>);
|
FoldbackStrip (Mixer_UI&, ARDOUR::Session*, boost::shared_ptr<ARDOUR::Route>);
|
||||||
|
|
@ -145,7 +143,6 @@ public:
|
||||||
|
|
||||||
std::string state_id() const;
|
std::string state_id() const;
|
||||||
|
|
||||||
// void parameter_changed (std::string);
|
|
||||||
void route_active_changed ();
|
void route_active_changed ();
|
||||||
|
|
||||||
void copy_processors ();
|
void copy_processors ();
|
||||||
|
|
@ -166,8 +163,6 @@ protected:
|
||||||
void set_packed (bool yn);
|
void set_packed (bool yn);
|
||||||
bool packed () { return _packed; }
|
bool packed () { return _packed; }
|
||||||
|
|
||||||
void set_stuff_from_route ();
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Mixer_UI& _mixer;
|
Mixer_UI& _mixer;
|
||||||
void init ();
|
void init ();
|
||||||
|
|
@ -271,8 +266,6 @@ private:
|
||||||
void engine_running();
|
void engine_running();
|
||||||
void engine_stopped();
|
void engine_stopped();
|
||||||
|
|
||||||
// virtual void bus_send_display_changed (boost::shared_ptr<ARDOUR::Route>);
|
|
||||||
|
|
||||||
void set_current_delivery (boost::shared_ptr<ARDOUR::Delivery>);
|
void set_current_delivery (boost::shared_ptr<ARDOUR::Delivery>);
|
||||||
|
|
||||||
void drop_send ();
|
void drop_send ();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue