GtkTreeview

2006-11-26 Thread sunzysjzri
hi, a simple question, that which signal of GtkTreeView could i use to catch a mouse clicked event? sun zhiyong 2006-11-27 [EMAIL PROTECTED] ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app

Libglade application distribution how-to?

2006-11-26 Thread Fabricio Rocha
Dearest ones, I have a working set of .C and .H source files for my application, a bunch of Glade files and their icons in a subdirectory called "pixmaps", and I can get all this stuff compiled and functional through Anjuta. Ok. But could you please point out a good tutorial of h

Re: g_signal_connect_swapped

2006-11-26 Thread Lance Dillon
- Original Message From: Matt Hoosier <[EMAIL PROTECTED]> To: Richard <[EMAIL PROTECTED]> Cc: gtk-app-devel-list@gnome.org Sent: Sunday, November 26, 2006 6:44:13 PM Subject: Re: g_signal_connect_swapped On 11/25/06, Richard <[EMAIL PROTECTED]> wrote: > > Could someone explain the reaso

Re: g_signal_connect_swapped

2006-11-26 Thread Matt Hoosier
On 11/25/06, Richard <[EMAIL PROTECTED]> wrote: > > Could someone explain the reason for this function > > "g_signal_connect_swapped" > > I have read the manual here: > > http://www.gtk.org/tutorial/x159.html > > where it says: > > , > | g_signal_connect_swapped() is the same as g_signal_connec

Re: Drag_Drop to before the first row of Tree View (List Store)

2006-11-26 Thread Daniel Yek
Resending...Still hoping for a nice solution. At 01:39 AM 11/22/2006, Daniel Yek wrote: >Hi, > >I'm trying to handle Drag_Drop to before the first row and after the last >row of a Tree View with a List Store. > >In the drag_drop handler, I got a y-coordinate of between 0 and 25, >corresponding t

Re: g_signal_connect_swapped

2006-11-26 Thread Paul Pogonyshev
Richard wrote: > > Could someone explain the reason for this function > > "g_signal_connect_swapped" For instance, you can do g_signal_connect (widget, "destroy", G_CALLBACK (null_pointer), &pointer); ... void null_pointer (GtkObject* object, gpointer pointer) { *pointer = NULL

g_signal_connect_swapped

2006-11-26 Thread Richard
Could someone explain the reason for this function "g_signal_connect_swapped" I have read the manual here: http://www.gtk.org/tutorial/x159.html where it says: , | g_signal_connect_swapped() is the same as g_signal_connect() except that | the instance on which the signal is emitted and da

sendfile through GIOChannel

2006-11-26 Thread Ruben Fonseca
Hi there! I'm building a application which makes extensive use of GLib. Since it is a network application, it uses sockets, so I decided to use the GIOChannel to have a nice higher level on top of sockets. It is working flawlessly. But I have a problem: my application requires the send of files

Re: Passing data from a data collection window back to a main

2006-11-26 Thread Zeeshan Ali
Hi! The best and simplest way to get rid of global varriables would be to define a structure that would contain all the data you need and then you can keep passing it's pointer around in the callbacks using the 'user_data' argument. If you want to use g_object_set/get_data() instead, thats also

Re: Passing data from a data collection window back to a main

2006-11-26 Thread [EMAIL PROTECTED]
This is my global variable version: #include #include "callbacks.h" #include "interface.h" #include "support.h" GtkWidget *window2, *window1, *label1, *entry1; void on_button1_clicked (GtkButton *button, gpo