2008-06-02 17:41:35 -04:00
|
|
|
/*
|
|
|
|
Copyright (C) 2004 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 <string>
|
2009-10-01 12:42:02 -04:00
|
|
|
#include <sstream>
|
2008-06-02 17:41:35 -04:00
|
|
|
#include <climits>
|
|
|
|
#include <cstdio>
|
|
|
|
#include <cmath>
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
#include <pbd/controllable.h>
|
|
|
|
|
2009-12-10 18:01:45 -05:00
|
|
|
#include "gtkmm2ext/gtk_ui.h"
|
|
|
|
#include "gtkmm2ext/utils.h"
|
|
|
|
#include "gtkmm2ext/keyboard.h"
|
2014-08-27 12:58:09 -04:00
|
|
|
#include "gtkmm2ext/cairo_widget.h"
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2017-07-16 16:13:46 -04:00
|
|
|
#include "widgets/barcontroller.h"
|
|
|
|
|
2016-07-14 14:44:52 -04:00
|
|
|
#include "pbd/i18n.h"
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace Gtk;
|
|
|
|
using namespace Gtkmm2ext;
|
2017-07-16 16:13:46 -04:00
|
|
|
using namespace ArdourWidgets;
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
BarController::BarController (Gtk::Adjustment& adj,
|
2014-09-01 23:09:51 -04:00
|
|
|
boost::shared_ptr<PBD::Controllable> mc)
|
2014-11-01 13:22:29 -04:00
|
|
|
: _slider (&adj, mc, 60, 16)
|
2014-09-01 23:09:51 -04:00
|
|
|
, _switching (false)
|
|
|
|
, _switch_on_release (false)
|
|
|
|
{
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2014-09-01 23:09:51 -04:00
|
|
|
add_events (Gdk::BUTTON_PRESS_MASK | Gdk::BUTTON_RELEASE_MASK);
|
2014-08-31 13:36:41 -04:00
|
|
|
set (.5, .5, 1.0, 1.0);
|
2014-09-01 23:09:51 -04:00
|
|
|
set_border_width (0);
|
2017-07-16 16:13:46 -04:00
|
|
|
_slider.set_tweaks (ArdourFader::NoShowUnityLine);
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2014-09-01 23:09:51 -04:00
|
|
|
_slider.StartGesture.connect (sigc::mem_fun(*this, &BarController::passtrhu_gesture_start));
|
|
|
|
_slider.StopGesture.connect (sigc::mem_fun(*this, &BarController::passtrhu_gesture_stop));
|
|
|
|
_slider.OnExpose.connect (sigc::mem_fun(*this, &BarController::before_expose));
|
2014-09-02 20:38:18 -04:00
|
|
|
_slider.set_name (get_name());
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2014-09-01 23:09:51 -04:00
|
|
|
Gtk::SpinButton& spinner = _slider.get_spin_button();
|
2008-06-02 17:41:35 -04:00
|
|
|
spinner.signal_activate().connect (mem_fun (*this, &BarController::entry_activated));
|
|
|
|
spinner.signal_focus_out_event().connect (mem_fun (*this, &BarController::entry_focus_out));
|
2017-09-23 13:39:36 -04:00
|
|
|
spinner.set_digits (4);
|
2009-10-01 12:42:02 -04:00
|
|
|
spinner.set_numeric (true);
|
2014-09-01 23:09:51 -04:00
|
|
|
spinner.set_name ("BarControlSpinner");
|
|
|
|
add (_slider);
|
2008-06-02 17:41:35 -04:00
|
|
|
show_all ();
|
|
|
|
}
|
|
|
|
|
2012-12-06 15:48:44 -05:00
|
|
|
BarController::~BarController ()
|
|
|
|
{
|
2014-08-27 12:58:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2014-09-01 23:09:51 -04:00
|
|
|
BarController::on_button_press_event (GdkEventButton* ev)
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
2014-09-01 23:09:51 -04:00
|
|
|
if (get_child() != &_slider) {
|
|
|
|
return false;
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
2014-09-01 23:09:51 -04:00
|
|
|
if (ev->button == 1 && ev->type == GDK_2BUTTON_PRESS) {
|
|
|
|
_switch_on_release = true;
|
2008-06-02 17:41:35 -04:00
|
|
|
return true;
|
2014-09-01 23:09:51 -04:00
|
|
|
} else {
|
|
|
|
_switch_on_release = false;
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2014-09-01 23:09:51 -04:00
|
|
|
BarController::on_button_release_event (GdkEventButton* ev)
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
2014-09-01 23:09:51 -04:00
|
|
|
if (get_child() != &_slider) {
|
2008-06-02 17:41:35 -04:00
|
|
|
return false;
|
|
|
|
}
|
2014-09-01 23:09:51 -04:00
|
|
|
if (ev->button == 1 && _switch_on_release) {
|
|
|
|
Glib::signal_idle().connect (mem_fun (*this, &BarController::switch_to_spinner));
|
2008-06-02 17:41:35 -04:00
|
|
|
return true;
|
|
|
|
}
|
2014-09-01 23:09:51 -04:00
|
|
|
return false;
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
|
2014-09-02 20:38:18 -04:00
|
|
|
void
|
|
|
|
BarController::on_style_changed (const Glib::RefPtr<Gtk::Style>&)
|
|
|
|
{
|
|
|
|
_slider.set_name (get_name());
|
|
|
|
}
|
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
gint
|
|
|
|
BarController::switch_to_bar ()
|
|
|
|
{
|
2014-09-01 23:09:51 -04:00
|
|
|
if (_switching || get_child() == &_slider) {
|
2008-06-02 17:41:35 -04:00
|
|
|
return FALSE;
|
|
|
|
}
|
2014-09-01 23:09:51 -04:00
|
|
|
_switching = true;
|
2008-06-02 17:41:35 -04:00
|
|
|
remove ();
|
2014-09-01 23:09:51 -04:00
|
|
|
add (_slider);
|
|
|
|
_slider.show ();
|
|
|
|
_slider.queue_draw ();
|
|
|
|
_switching = false;
|
2010-11-25 19:29:12 -05:00
|
|
|
SpinnerActive (false); /* EMIT SIGNAL */
|
2008-06-02 17:41:35 -04:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
BarController::switch_to_spinner ()
|
|
|
|
{
|
2014-09-01 23:09:51 -04:00
|
|
|
if (_switching || get_child() != &_slider) {
|
2008-06-02 17:41:35 -04:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2014-09-01 23:09:51 -04:00
|
|
|
_switching = true;
|
|
|
|
Gtk::SpinButton& spinner = _slider.get_spin_button();
|
|
|
|
if (spinner.get_parent()) {
|
|
|
|
spinner.get_parent()->remove(spinner);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
remove ();
|
|
|
|
add (spinner);
|
|
|
|
spinner.show ();
|
|
|
|
spinner.select_region (0, spinner.get_text_length());
|
|
|
|
spinner.grab_focus ();
|
2014-09-01 23:09:51 -04:00
|
|
|
_switching = false;
|
2010-11-25 19:29:12 -05:00
|
|
|
SpinnerActive (true); /* EMIT SIGNAL */
|
2008-06-02 17:41:35 -04:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BarController::entry_activated ()
|
|
|
|
{
|
|
|
|
switch_to_bar ();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2009-07-21 11:55:17 -04:00
|
|
|
BarController::entry_focus_out (GdkEventFocus* /*ev*/)
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
entry_activated ();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2014-09-01 23:09:51 -04:00
|
|
|
BarController::before_expose ()
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
2014-09-01 23:09:51 -04:00
|
|
|
double xpos = -1;
|
2014-09-02 10:05:21 -04:00
|
|
|
_slider.set_text (get_label (xpos), false, false);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BarController::set_sensitive (bool yn)
|
|
|
|
{
|
2014-08-31 13:36:41 -04:00
|
|
|
Alignment::set_sensitive (yn);
|
2014-09-01 23:09:51 -04:00
|
|
|
_slider.set_sensitive (yn);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|