summaryrefslogtreecommitdiff
path: root/gtk2_ardour/utils.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2012-03-07 14:40:33 +0000
committerCarl Hetherington <carl@carlh.net>2012-03-07 14:40:33 +0000
commitfd1ff3d7536758283c9597642de5d74e600b3273 (patch)
tree7f5c538539fbd0dedffc57bfbc1aac3e8c11d638 /gtk2_ardour/utils.cc
parentc74c4d3803195ea8eb7de2f96a159abfe1127b74 (diff)
Remove unused color_from_style / gc_from_style.
git-svn-id: svn://localhost/ardour2/branches/3.0@11618 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/utils.cc')
-rw-r--r--gtk2_ardour/utils.cc106
1 files changed, 0 insertions, 106 deletions
diff --git a/gtk2_ardour/utils.cc b/gtk2_ardour/utils.cc
index 23cceba72e..a6af6900a2 100644
--- a/gtk2_ardour/utils.cc
+++ b/gtk2_ardour/utils.cc
@@ -299,112 +299,6 @@ rgba_from_style (string style, uint32_t r, uint32_t g, uint32_t b, uint32_t a, s
}
}
-
-Gdk::Color
-color_from_style (string widget_style_name, int state, string attr)
-{
- GtkStyle* style;
-
- style = gtk_rc_get_style_by_paths (gtk_settings_get_default(),
- widget_style_name.c_str(),
- 0, G_TYPE_NONE);
-
- if (!style) {
- error << string_compose (_("no style found for %1, using red"), style) << endmsg;
- return Gdk::Color ("red");
- }
-
- if (attr == "fg") {
- return Gdk::Color (&style->fg[state]);
- }
-
- if (attr == "bg") {
- return Gdk::Color (&style->bg[state]);
- }
-
- if (attr == "light") {
- return Gdk::Color (&style->light[state]);
- }
-
- if (attr == "dark") {
- return Gdk::Color (&style->dark[state]);
- }
-
- if (attr == "mid") {
- return Gdk::Color (&style->mid[state]);
- }
-
- if (attr == "text") {
- return Gdk::Color (&style->text[state]);
- }
-
- if (attr == "base") {
- return Gdk::Color (&style->base[state]);
- }
-
- if (attr == "text_aa") {
- return Gdk::Color (&style->text_aa[state]);
- }
-
- error << string_compose (_("unknown style attribute %1 requested for color; using \"red\""), attr) << endmsg;
- return Gdk::Color ("red");
-}
-
-Glib::RefPtr<Gdk::GC>
-gc_from_style (string widget_style_name, int state, string attr)
-{
- GtkStyle* style;
-
- style = gtk_rc_get_style_by_paths (gtk_settings_get_default(),
- widget_style_name.c_str(),
- 0, G_TYPE_NONE);
-
- if (!style) {
- error << string_compose (_("no style found for %1, using red"), style) << endmsg;
- Glib::RefPtr<Gdk::GC> ret = Gdk::GC::create();
- ret->set_rgb_fg_color(Gdk::Color("red"));
- return ret;
- }
-
- if (attr == "fg") {
- return Glib::wrap(style->fg_gc[state]);
- }
-
- if (attr == "bg") {
- return Glib::wrap(style->bg_gc[state]);
- }
-
- if (attr == "light") {
- return Glib::wrap(style->light_gc[state]);
- }
-
- if (attr == "dark") {
- return Glib::wrap(style->dark_gc[state]);
- }
-
- if (attr == "mid") {
- return Glib::wrap(style->mid_gc[state]);
- }
-
- if (attr == "text") {
- return Glib::wrap(style->text_gc[state]);
- }
-
- if (attr == "base") {
- return Glib::wrap(style->base_gc[state]);
- }
-
- if (attr == "text_aa") {
- return Glib::wrap(style->text_aa_gc[state]);
- }
-
- error << string_compose (_("unknown style attribute %1 requested for color; using \"red\""), attr) << endmsg;
- Glib::RefPtr<Gdk::GC> ret = Gdk::GC::create();
- ret->set_rgb_fg_color(Gdk::Color("red"));
- return ret;
-}
-
-
bool
canvas_item_visible (ArdourCanvas::Item* item)
{