summaryrefslogtreecommitdiff
path: root/gtk2_ardour/utils.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-08-18 17:35:34 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-08-18 17:35:34 +0000
commite626152a22232895357a5e1381e3d49af7b130d5 (patch)
tree26e2c191c936ecb8eb9aabed3434379733daf217 /gtk2_ardour/utils.cc
parent115934e6abfa124d1e93ecb7c212083a1b255fae (diff)
remove use of Glib::ustring from gtk2_ardour
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@10006 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/utils.cc')
-rw-r--r--gtk2_ardour/utils.cc16
1 files changed, 8 insertions, 8 deletions
diff --git a/gtk2_ardour/utils.cc b/gtk2_ardour/utils.cc
index 3c58a27e60..84482dd328 100644
--- a/gtk2_ardour/utils.cc
+++ b/gtk2_ardour/utils.cc
@@ -52,7 +52,7 @@ using namespace PBD;
sigc::signal<void> DPIReset;
int
-pixel_width (const ustring& str, Pango::FontDescription& font)
+pixel_width (const string& str, Pango::FontDescription& font)
{
if (str.empty()) {
return 0;
@@ -69,20 +69,20 @@ pixel_width (const ustring& str, Pango::FontDescription& font)
return width;
}
-ustring
-fit_to_pixels (const ustring& str, int pixel_width, Pango::FontDescription& font, int& actual_width, bool with_ellipses)
+string
+fit_to_pixels (const string& str, int pixel_width, Pango::FontDescription& font, int& actual_width, bool with_ellipses)
{
Label foo;
Glib::RefPtr<Pango::Layout> layout = foo.create_pango_layout ("");
- ustring::size_type shorter_by = 0;
- ustring txt;
+ string::size_type shorter_by = 0;
+ string txt;
layout->set_font_description (font);
actual_width = 0;
- ustring ustr = str;
- ustring::iterator last = ustr.end();
+ string ustr = str;
+ string::iterator last = ustr.end();
--last; /* now points at final entry */
txt = ustr;
@@ -910,7 +910,7 @@ convert_bgra_to_rgba (guint8 const* src,
}
Glib::RefPtr<Gdk::Pixbuf>
-pixbuf_from_ustring(const ustring& name, Pango::FontDescription* font, uint32_t rgba, int clip_width, int clip_height)
+pixbuf_from_string(const string& name, Pango::FontDescription* font, uint32_t rgba, int clip_width, int clip_height)
{
Glib::RefPtr<Gdk::Pixbuf> buf = Gdk::Pixbuf::create(Gdk::COLORSPACE_RGB, true, 8, clip_width, clip_height);
cairo_surface_t* surface = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, clip_width, clip_height);