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?

link|improve this question

feedback

3 Answers

up vote 0 down vote accepted

This is probably what you are looking for: http://developer.gnome.org/gtk3/3.0/GtkWidget.html#gtk-widget-override-cursor

link|improve this answer
feedback

Actually, there seem to be cursor-color style property: http://developer.gnome.org/gtk3/3.0/GtkWidget.html#GtkWidget--s-cursor-color

link|improve this answer
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

  • background-color
  • background-image
  • color
  • border-color
  • border-image
  • border-radius
  • border-width
  • border-style
  • padding
  • margin
  • transition

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

Widget style properties also follow a similar syntax, with the widget type name used as a prefix. For example, the "focus-line-width" style property can be modified in CSS as -GtkWidget-focus-line-width

So I guessed it might be like that and it worked. (also works for GtkEntry) You use:

-GtkWidget-cursor-color.

/*  Compile With: 
*   gcc -Wall -o cursor `pkg-config --cflags --libs gtk+-3.0` cursor.c
*/
#include <gtk/gtk.h> 

int main (int argc, char* argv[])
{
GtkWidget *window;
GtkWidget *tview;
GtkTextBuffer *tbuf;

gtk_init(&argc, &argv);

GtkCssProvider *provider = gtk_css_provider_new ();

gtk_css_provider_load_from_data (provider,"GtkTextView {color: blue;font: Serif 38; background-color: yellow;-GtkWidget-cursor-color: red}",-1,NULL); 

GdkDisplay *display = gdk_display_get_default ();
GdkScreen *screen = gdk_display_get_default_screen (display);

gtk_style_context_add_provider_for_screen (
screen, GTK_STYLE_PROVIDER (provider),
GTK_STYLE_PROVIDER_PRIORITY_APPLICATION);

g_object_unref (provider);

window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
gtk_window_set_default_size(GTK_WINDOW(window), 500, 250);
g_signal_connect_swapped(G_OBJECT(window), "destroy",
G_CALLBACK(gtk_main_quit), NULL);

tbuf = gtk_text_buffer_new(NULL);
tview = gtk_text_view_new_with_buffer (tbuf);
gtk_container_add(GTK_CONTAINER(window), tview);

gtk_widget_show_all(window);
gtk_main();
return 0;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.