new color utility functions to convert between uint32_t and Gdk::Color

This commit is contained in:
Paul Davis 2016-06-05 16:03:08 -04:00
parent 9d3aba30c4
commit 7b2f2a1f6a
2 changed files with 21 additions and 1 deletions

View file

@ -264,6 +264,22 @@ ARDOUR_UI_UTILS::get_font_for_style (string widgetname)
return Pango::FontDescription (pfd); /* make a copy */
}
Gdk::Color
ARDOUR_UI_UTILS::gdk_color_from_rgb (uint32_t rgb)
{
Gdk::Color c;
set_color_from_rgb (c, rgb);
return c;
}
Gdk::Color
ARDOUR_UI_UTILS::gdk_color_from_rgba (uint32_t rgba)
{
Gdk::Color c;
set_color_from_rgb (c, rgba);
return c;
}
void
ARDOUR_UI_UTILS::set_color_from_rgb (Gdk::Color& c, uint32_t rgb)
{