Hi,

How can I change de Text or/and Foreground Color of a Gtk::ComboBox and
Gtk::CheckButton on a INSENSITIVE STATE?

I'm using like this:

==================start
Gtk::ComboBox *combo;
Gtk::CheckButton *button;

(...)

Gdk::Color color;
color.set_rgb( 0, 0, 0 );
combo->modify_text( Gtk::STATE_INSENSITIVE, color );
combo->modify_text( Gtk::STATE_INSENSITIVE, color );
button->modify_fg( Gtk::STATE_INSENSITIVE, color );
button->modify_fg( Gtk::STATE_INSENSITIVE, color );

==================end.

But on insensitive state it doesnt work.

Thanks.
_______________________________________________
gtkmm-list mailing list
[email protected]
http://mail.gnome.org/mailman/listinfo/gtkmm-list

Reply via email to