Re: GtkTreeView - Selecting the first row
- From: Justin Clift <justin postgresql org>
- To: Hannes Mayr <hannes mayr indunet it>
- Cc: gtk-app-devel-list gnome org
- Subject: Re: GtkTreeView - Selecting the first row
- Date: Sat, 25 Feb 2006 11:01:48 +1100
Hannes Mayr wrote:
<snip>
renderer = gtk_cell_renderer_text_new();
path = gtk_tree_path_new_from_string("0");
gtk_tree_view_set_cursor(GTK_TREE_VIEW(treeview), path, NULL, renderer);
Hi Hannes,
You may also like to consider:
path = gtk_tree_path_new_first();
as a replacement for:
path = gtk_tree_path_new_from_string("0");
in your above code. :)
Regards and best wishes,
Justin Clift
The documentation says set_cursor is often followed by a
gtk_widget_grab_focus(), but I can't see any effect if I call it or not.
Hannes
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]