I'm looking to set a GtkTextView cursor-color. I know I can do it through the gtk_rc_parse command or something similar, but the documentation says that those commands are depreciated, and I don't think GtkCssProvider supports cursor-color. Is it possible to set it some other way?
|
feedback
|
|
This is probably what you are looking for: http://developer.gnome.org/gtk3/3.0/GtkWidget.html#gtk-widget-override-cursor | |||
|
feedback
|
|
Actually, there seem to be cursor-color style property: http://developer.gnome.org/gtk3/3.0/GtkWidget.html#GtkWidget--s-cursor-color | |||
|
feedback
|
|
I found out how to do this using GtkCssProvider almost by accident. I'm running Ubuntu 11.04, Gtk+-3.2.0. This page shows all the supported CSS properties which are a subset of the CSS properties allowed for HTML. http://gnomejournal.org/article/107/styling-gtk-with-css
But if you look in the Gtk+3 documentation it mentions a way to get rid of the ugly old style dotted lines on buttons called focus lines. http://developer.gnome.org/gtk3/3.0/migrating.html
So I guessed it might be like that and it worked. (also works for GtkEntry) You use: -GtkWidget-cursor-color.
| ||||
|
feedback
|