summaryrefslogtreecommitdiff
path: root/gtk2_ardour/stereo_panner.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-12-01 16:12:04 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-12-01 16:12:04 +0000
commit079057717d8a90ea362d34c728870cb16d775b86 (patch)
tree8107c9a91113d726dc8af4cb1718613302c58e0f /gtk2_ardour/stereo_panner.cc
parent5aed83d9271cd68f709a373a169a019f7725cfc5 (diff)
hack up the stereo panner
git-svn-id: svn://localhost/ardour2/branches/3.0@8140 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/stereo_panner.cc')
-rw-r--r--gtk2_ardour/stereo_panner.cc115
1 files changed, 99 insertions, 16 deletions
diff --git a/gtk2_ardour/stereo_panner.cc b/gtk2_ardour/stereo_panner.cc
index e1f4a0c56b..60731c4639 100644
--- a/gtk2_ardour/stereo_panner.cc
+++ b/gtk2_ardour/stereo_panner.cc
@@ -22,8 +22,10 @@
#include <cstring>
#include "pbd/controllable.h"
+#include "pbd/compose.h"
#include "gtkmm2ext/gui_thread.h"
+#include "gtkmm2ext/gtk_ui.h"
#include "ardour/panner.h"
#include "stereo_panner.h"
@@ -33,6 +35,10 @@
using namespace std;
using namespace Gtk;
+static const int pos_box_size = 10;
+static const int lr_box_size = 18;
+static const int step_down = 10;
+
StereoPanner::StereoPanner (boost::shared_ptr<PBD::Controllable> position, boost::shared_ptr<PBD::Controllable> width)
: position_control (position)
, width_control (width)
@@ -41,11 +47,10 @@ StereoPanner::StereoPanner (boost::shared_ptr<PBD::Controllable> position, boost
, drag_start_x (0)
, last_drag_x (0)
{
- set_size_request (-1, 15);
+ position_control->Changed.connect (connections, invalidator(*this), boost::bind (&StereoPanner::value_change, this), gui_context());
+ width_control->Changed.connect (connections, invalidator(*this), boost::bind (&StereoPanner::value_change, this), gui_context());
+ set_tooltip ();
- position_control->Changed.connect (connections, invalidator(*this), boost::bind (&DrawingArea::queue_draw, this), gui_context());
- width_control->Changed.connect (connections, invalidator(*this), boost::bind (&DrawingArea::queue_draw, this), gui_context());
-
add_events (Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK|Gdk::SCROLL_MASK|Gdk::POINTER_MOTION_MASK);
}
@@ -53,6 +58,22 @@ StereoPanner::~StereoPanner ()
{
}
+void
+StereoPanner::set_tooltip ()
+{
+ Gtkmm2ext::UI::instance()->set_tip (this, string_compose (_("L:%1 R:%2 Width: %3%%"),
+ (int) floor (position_control->get_value() * 100.0),
+ (int) floor ((1.0 - position_control->get_value() * 100)),
+ (int) floor (width_control->get_value() * 100.0)).c_str());
+}
+
+void
+StereoPanner::value_change ()
+{
+ set_tooltip ();
+ queue_draw ();
+}
+
bool
StereoPanner::on_expose_event (GdkEventExpose* ev)
{
@@ -65,29 +86,91 @@ StereoPanner::on_expose_event (GdkEventExpose* ev)
int width, height;
double pos = position_control->get_value (); /* 0..1 */
double swidth = width_control->get_value (); /* -1..+1 */
- const int pos_box_size = 5;
+ const int border_width = 1;
+ const int border = border_width * 2;
+
width = get_width();
height = get_height ();
- /* compute where the central box is */
+ /* background */
- x1 = (int) floor (width * pos);
- x1 -= pos_box_size/2;
+ cairo_set_source_rgb (cr, 0.184, 0.172, 0.172);
+ cairo_rectangle (cr, 0, 0, width, height);
+ cairo_fill (cr);
- cairo_set_source_rgb (cr, 255, 0, 0);
- cairo_rectangle (cr, x1, 4, pos_box_size, pos_box_size);
- cairo_fill (cr);
+ /* leave a border */
- /* compute & draw the line through the box */
+ width -= border_width;
+ height -= border_width;
+
+ /* compute where the central box is */
+ x1 = (int) floor (width * pos); // center of widget
x2 = x1 - (int) floor ((fabs (swidth) * width)/2.0); // center, then back up half the swidth value
+ x1 -= pos_box_size/2; // center, then back up by half width of position box
- cairo_set_source_rgb (cr, 0, 255, 0);
- cairo_move_to (cr, x2, 4+(pos_box_size/2));
- cairo_line_to (cr, x2 + floor ((fabs (swidth * width))), 4+(pos_box_size/2));
+ /* compute & draw the line through the box */
+
+ cairo_set_line_width (cr, 2);
+ cairo_set_source_rgba (cr, 0.3137, 0.4431, 0.7843, 1.0);
+ cairo_move_to (cr, border + x2, 4+(pos_box_size/2)+step_down);
+ cairo_line_to (cr, border + x2, 4+(pos_box_size/2));
+ cairo_line_to (cr, border + x2 + floor ((fabs (swidth * width))), 4+(pos_box_size/2));
+ cairo_line_to (cr, border + x2 + floor ((fabs (swidth * width))), 4+(pos_box_size/2) + step_down);
cairo_stroke (cr);
+ /* left box */
+
+ cairo_rectangle (cr,
+ border+ x2 - lr_box_size/2,
+ (lr_box_size/2)+step_down,
+ lr_box_size, lr_box_size);
+ cairo_set_source_rgba (cr, 0.3137, 0.4431, 0.7843, 1.0);
+ cairo_stroke_preserve (cr);
+ cairo_set_source_rgba (cr, 0.4509, 0.7686, 0.8627, 0.8);
+ cairo_fill (cr);
+
+
+ /* add text */
+
+ cairo_move_to (cr,
+ border + x2 - lr_box_size/2 + 4,
+ (lr_box_size/2) + step_down + 13);
+ cairo_set_source_rgba (cr, 0.3137, 0.4431, 0.7843, 1.0);
+ cairo_select_font_face (cr, "sans-serif", CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_BOLD);
+ cairo_show_text (cr, "L");
+
+ /* right box */
+
+ cairo_rectangle (cr,
+ border + x2 + (int) floor ((fabs (swidth * width))) - lr_box_size/2,
+ (lr_box_size/2)+step_down,
+ lr_box_size, lr_box_size);
+ cairo_set_source_rgba (cr, 0.3137, 0.4431, 0.7843, 1.0);
+ cairo_stroke_preserve (cr);
+ cairo_set_source_rgba (cr, 0.4509, 0.7686, 0.8627, 0.8);
+ cairo_fill (cr);
+
+ /* add text */
+
+ cairo_move_to (cr,
+ border + x2 + (int) floor ((fabs (swidth * width))) - lr_box_size/2 + 4,
+ (lr_box_size/2)+step_down + 13);
+ cairo_set_source_rgba (cr, 0.3137, 0.4431, 0.7843, 1.0);
+ cairo_show_text (cr, "R");
+
+ /* draw the central box */
+
+ cairo_set_line_width (cr, 1);
+ cairo_rectangle (cr, border + x1, 4, pos_box_size, pos_box_size);
+ cairo_set_source_rgba (cr, 0.3137, 0.4431, 0.7843, 1.0);
+ cairo_stroke_preserve (cr);
+ cairo_set_source_rgba (cr, 0.4509, 0.7686, 0.8627, 0.8);
+ cairo_fill (cr);
+
+ /* done */
+
cairo_destroy (cr);
return true;
}
@@ -103,7 +186,7 @@ StereoPanner::on_button_press_event (GdkEventButton* ev)
int w = get_width();
double pos = position_control->get_value ();
- if ((ev->x >= (int) floor ((pos * w)-4)) && (ev->x <= (int) floor ((pos * w)+4))) {
+ if ((ev->x >= (int) floor ((pos * w)-(pos_box_size/2))) && (ev->x <= (int) floor ((pos * w)+(pos_box_size/2)))) {
dragging_position = true;
} else {
dragging_position = false;