summaryrefslogtreecommitdiff
path: root/gtk2_ardour/marker.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-04-06 16:39:11 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-04-06 16:39:11 -0400
commitfc787fad50596e15a2f487c8cf3cae164f760791 (patch)
tree9ef3d09de8b260e876e844f9b21f7daa29c958dc /gtk2_ardour/marker.cc
parent6b5846ab9516e267b71643d29fb401144b0f344e (diff)
canvas markers now use ArdourCanvas::Text, not ArdourCanvas::Pixbuf, since the latter will be optimized to use Pixbuf too
Diffstat (limited to 'gtk2_ardour/marker.cc')
-rw-r--r--gtk2_ardour/marker.cc27
1 files changed, 17 insertions, 10 deletions
diff --git a/gtk2_ardour/marker.cc b/gtk2_ardour/marker.cc
index 75919f339a..56ab234b28 100644
--- a/gtk2_ardour/marker.cc
+++ b/gtk2_ardour/marker.cc
@@ -23,7 +23,7 @@
#include "canvas/group.h"
#include "canvas/line.h"
#include "canvas/polygon.h"
-#include "canvas/pixbuf.h"
+#include "canvas/text.h"
#include "ardour_ui.h"
/*
@@ -268,12 +268,15 @@ Marker::Marker (PublicEditor& ed, ArdourCanvas::Group& parent, guint32 rgba, con
layout->set_font_description (name_font);
Gtkmm2ext::get_ink_pixel_size (layout, width, name_height);
+
+ _name_item = new ArdourCanvas::Text (group);
+ _name_item->set_font_description (name_font);
+ _name_item->set_color (0);
- name_pixbuf = new ArdourCanvas::Pixbuf (group);
#ifdef CANVAS_DEBUG
- name_pixbuf->name = string_compose ("Marker::name_pixbuf for %1", annotation);
+ _name_item->name = string_compose ("Marker::_name_item for %1", annotation);
#endif
- name_pixbuf->set_position (ArdourCanvas::Duple (_label_offset, 13 / 2 - name_height / 2));
+ _name_item->set_position (ArdourCanvas::Duple (_label_offset, 13 / 2 - name_height / 2));
set_name (annotation.c_str());
@@ -393,22 +396,26 @@ Marker::setup_name_display ()
/* Work out how wide the name can be */
int name_width = min ((double) pixel_width (_name, name_font) + 2, limit);
+
if (name_width == 0) {
name_width = 1;
}
if (label_on_left ()) {
- name_pixbuf->set_x_position (-name_width);
+ _name_item->set_x_position (-name_width);
}
- name_pixbuf->set (pixbuf_from_string (_name, name_font, name_width, name_height, Gdk::Color ("#000000")));
+ _name_item->set (_name);
+
+ // CAIROCANVAS
+ // need to "clip" name to name_width and name_height
if (label_on_left ()) {
- _name_background->set_x0 (name_pixbuf->position().x - 2);
- _name_background->set_x1 (name_pixbuf->position().x + name_width + _shift);
+ _name_background->set_x0 (_name_item->position().x - 2);
+ _name_background->set_x1 (_name_item->position().x + name_width + _shift);
} else {
- _name_background->set_x0 (name_pixbuf->position().x - _label_offset + 2);
- _name_background->set_x1 (name_pixbuf->position().x + name_width);
+ _name_background->set_x0 (_name_item->position().x - _label_offset + 2);
+ _name_background->set_x1 (_name_item->position().x + name_width);
}
_name_background->set_y0 (0);