/* * Copyright (C) 1998 Paul Davis * Copyright (C) 2017 Robin Gareus * * 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., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include #include "gtkmm2ext/gtk_ui.h" #include "pbd/controllable.h" #include "widgets/ardour_fader.h" #include "widgets/slider_controller.h" #include "pbd/i18n.h" using namespace PBD; using namespace ArdourWidgets; SliderController::SliderController (Gtk::Adjustment *adj, std::shared_ptr mc, int orientation, int fader_length, int fader_girth) : ArdourFader (*adj, orientation, fader_length, fader_girth) , _ctrl (mc) , _ctrl_adj (adj) , _spin_adj (0, 0, 1.0, .1, .01) , _spin (_spin_adj, 0, 2) , _ctrl_ignore (false) , _spin_ignore (false) { if (_ctrl) { // TODO consider a more generic method similar to // get_user_string() or value_as_string() for numeric entry. if (_ctrl->is_gain_like()) { /* use a slightly lower threadhold than ardour/dB.h to map -infinity <> -320 */ float lower = _ctrl->lower () > 1e-16 ? 20.0f * log10f (_ctrl->lower ()) : -320.0f; float upper = _ctrl->upper () > 1e-16 ? 20.0f * log10f (_ctrl->upper ()) : -320.0f; _spin_adj.set_lower (lower); _spin_adj.set_upper (upper); _spin_adj.set_step_increment(0.1); _spin_adj.set_page_increment(1.0); } else { _spin_adj.set_lower (_ctrl->lower ()); _spin_adj.set_upper (_ctrl->upper ()); _spin_adj.set_step_increment(_ctrl->interface_to_internal(adj->get_step_increment()) - _ctrl->lower ()); _spin_adj.set_page_increment(_ctrl->interface_to_internal(adj->get_page_increment()) - _ctrl->lower ()); } adj->signal_value_changed().connect (sigc::mem_fun(*this, &SliderController::ctrl_adjusted)); _spin_adj.signal_value_changed().connect (sigc::mem_fun(*this, &SliderController::spin_adjusted)); _binding_proxy.set_controllable (_ctrl); } _spin.set_name ("SliderControllerValue"); _spin.set_numeric (true); _spin.set_snap_to_ticks (false); } bool SliderController::on_button_press_event (GdkEventButton *ev) { if (_binding_proxy.button_press_handler (ev)) { return true; } return ArdourFader::on_button_press_event (ev); } bool SliderController::on_enter_notify_event (GdkEventCrossing* ev) { std::shared_ptr c (_binding_proxy.get_controllable ()); if (c) { PBD::Controllable::GUIFocusChanged (std::weak_ptr (c)); } return ArdourFader::on_enter_notify_event (ev); } bool SliderController::on_leave_notify_event (GdkEventCrossing* ev) { if (_binding_proxy.get_controllable()) { PBD::Controllable::GUIFocusChanged (std::weak_ptr ()); } return ArdourFader::on_leave_notify_event (ev); } void SliderController::ctrl_adjusted () { assert (_ctrl); // only used w/BarController if (_spin_ignore) return; _ctrl_ignore = true; if (_ctrl->is_gain_like ()) { float coeff = _ctrl->interface_to_internal (_ctrl_adj->get_value()); float db = coeff > 1e-16 ? 20.0f * log10f (coeff) : -320.0f; _spin_adj.set_value (db); } else { _spin_adj.set_value (_ctrl->interface_to_internal (_ctrl_adj->get_value())); } _ctrl_ignore = false; } void SliderController::spin_adjusted () { assert (_ctrl); // only used w/BarController if (_ctrl_ignore) return; _spin_ignore = true; if (_ctrl->is_gain_like ()) { float db = _spin_adj.get_value(); float coeff = db > -320.f ? pow (10.0f, db * 0.05f) : 0.0f; _ctrl_adj->set_value(_ctrl->internal_to_interface (coeff)); } else { _ctrl_adj->set_value(_ctrl->internal_to_interface (_spin_adj.get_value())); } _spin_ignore = false; } VSliderController::VSliderController (Gtk::Adjustment *adj, std::shared_ptr mc, int fader_length, int fader_girth) : SliderController (adj, mc, VERT, fader_length, fader_girth) { } HSliderController::HSliderController (Gtk::Adjustment *adj, std::shared_ptr mc, int fader_length, int fader_girth) : SliderController (adj, mc, HORIZ, fader_length, fader_girth) { }