Re: signal passing

2005-05-23 Thread Santhosh
Hi, In the "on_button_next_clicked" callback, add the following code... void on_button_next_clicked (GtkWidget* button, gpointer data) { //GtkWidget* text_entry = (GtkWidget*) data; //(incase text_entry is passed as //user data g_signal_emit_by_name (text_entry, "activate",

Retrieve the selected filter name when having more than one

2005-05-23 Thread Colossus
Hi, I have a gtk_file_filter this way: for (i = 0; i <= 3; i++) { filter = gtk_file_filter_new (); if (ArchiveType[i].name !=NULL) gtk_file_filter_set_name (filter, ArchiveType[i].name); if (ArchiveType[i].ext !=NULL) gtk_file_filter_add_pattern (filter, ArchiveType[

GtkTreeModelFilter

2005-05-23 Thread Andrusky
What's the best way to change the virtual root of a GtkTreeModelFilter? I did a g_object_unref it to it (it has only 1 reference now) and then tried to just replace the filter with a new one. After I did this, the reference count drop to 0, so I'm assuming it is supposed to be deleted. When I run

re: signal passing

2005-05-23 Thread srinivas
hi; i have gtk_text_entry widget, i had an callback to the text_entry widget "on_entry_activate" and i can able to get the text when enter pressed. now i would like to have same functionality with next button. i had created "on_button_next_clicked" callback. these two are in c

Re: How to hide column widget of treeview

2005-05-23 Thread John Coppens
On Mon, 23 May 2005 21:27:33 +0200 Markus Fischer <[EMAIL PROTECTED]> wrote: > John Coppens wrote: > > "There are a couple of ways to influence the look and feel of the tree > > view. You can hide or show column headers with > > gtk_tree_view_set_headers_visible, and set them clickable or not wi

Re: How to hide column widget of treeview

2005-05-23 Thread Markus Fischer
John Coppens wrote: "There are a couple of ways to influence the look and feel of the tree view. You can hide or show column headers with gtk_tree_view_set_headers_visible, and set them clickable or not with gtk_tree_view_set_headers_clickable (which will be done automatically for you if you

Re: How to hide column widget of treeview

2005-05-23 Thread John Coppens
On Mon, 23 May 2005 19:27:56 +0200 Markus Fischer <[EMAIL PROTECTED]> wrote: > Hi, > > how can I hide the widget/column header of a column completely? I don't > want a label or an empty label there, no space should be occupied. > > Whatever I try to put into it with gtk_tree_view_column_set_wid

How to hide column widget of treeview

2005-05-23 Thread Markus Fischer
Hi, how can I hide the widget/column header of a column completely? I don't want a label or an empty label there, no space should be occupied. Whatever I try to put into it with gtk_tree_view_column_set_widget, I can't get it to be completely removed. The best I get is still some 8 pixel gap

Transparent window

2005-05-23 Thread Carlos Eduardo Medaglia Dyonisio
Hi all! I'm needing to have a transparent window, like gkrellm and mplayer, but I'm not having success. I've found a few messages in this list about it, but I didn't find any good answer. What I need is a window with no borders and with rounded corners. I've noticied that gkrellm does it, and I'v

re:gtk_text_entry

2005-05-23 Thread srinivas
GLib-GObject-WARNING **: invalid (NULL) pointer instance GLib-GObject-CRITICAL **: g_signal_connect_data: assertion `G_TYPE_CHECK_INSTANCE (instance)' failed what does these warnings refer to. i got this when i passed signal connect from button click event to text_entry action " change event "

need widget

2005-05-23 Thread Denis
need widget which display current input language -- Денис ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

GtkFileFilter with a custom tooltip

2005-05-23 Thread Colossus
Hi, I'm trying without success to have my own tooltip in gtkfilefilter: if ( ! mode ) { FilterToolTip = gtk_tooltips_new(); gtk_tooltips_set_tip (FilterToolTip, GTK_FILE_FILTER (filter) , "Choose the archive type to create" , NULL); gtk_tooltips_enable