Remove unused color_from_style / gc_from_style.

git-svn-id: svn://localhost/ardour2/branches/3.0@11618 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2012-03-07 14:40:33 +00:00
parent c74c4d3803
commit fd1ff3d753
2 changed files with 0 additions and 110 deletions

View File

@ -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)
{

View File

@ -56,10 +56,6 @@ Pango::FontDescription get_font_for_style (std::string widgetname);
uint32_t rgba_from_style (std::string, uint32_t, uint32_t, uint32_t, uint32_t, std::string = "fg", int = Gtk::STATE_NORMAL, bool = true);
Gdk::Color color_from_style (std::string widget_style_name, int state, std::string attr);
Glib::RefPtr<Gdk::GC> gc_from_style (std::string widget_style_name, int state, std::string attr);
void decorate (Gtk::Window& w, Gdk::WMDecoration d);
bool canvas_item_visible (ArdourCanvas::Item* item);