Info needed regarding gdk_pixbuf_get_depth

2002-07-30 Thread Santhana Krishnan
Hi, Is there any chance the depth of a drawable widget can be '0' ? In the following piece of code i am getting the depth value as zero for some widgets (eg. buttons, label..). if (GDK_IS_DRAWABLE (widget)) { depth = gdk_pixbuf_get_depth (widget); } Any idea what could

Unable to load GTK_MODULES - Applets

2002-06-07 Thread Santhana Krishnan
Hi, I am involved enhancing the GERD tool ( GUI Regression testing tool ).The GNOME Applets are not loading the GTK_MODULES.I want to attach the GERD module ( GTK_MODULE) with applets.Is there any other way to add a small-modules dynamically with applets?.Any help would be appreciated.

Re: Capture/Replay tool for gtk+ application

2002-05-16 Thread Santhana Krishnan
Hi, There is a tool called GERD.Gerd is a Gtk+ Module that enables the user of arbitrary Gtk+ programs to record and playback events. You can download it from http://www.gtk.org/~timj/gerd/gerd-0.0.3.tar.gz . But the above GERD version is for GNOME1.4. regards, Santhana - Original

Info needed about gtk_window_list_toplevels()

2002-05-16 Thread Santhana Krishnan
Hi, I would like to know what type of data (widget!) is stored in the GList * returned by the gtk_window_list_toplevels() function. thanks in advance, Santhana **Disclaimer Information contained in this E-MAIL being

Info needed on gtk_window_begin_move_drag()

2002-04-04 Thread Santhana Krishnan
Hi, Could anyone please tell me in which context the following calls will be used?.Also if u have any examples please do send me. gtk_window_begin_move_drag () gtk_window_begin_resize_drag () thanks in advance, Santhana ___ gtk-list mailing list

Info needed capturing events

2002-04-03 Thread Santhana Krishnan
Hi, How do i handle the events( mouse move,mouse clicked ) occurring in a window title bar.Actually i need to capture the mouse event when the window is moved around by dragging the window title bar.Is there anyway to capture these events?. Also i want to know whether there is

Re: GtkCheckMenuItem

2002-04-03 Thread Santhana Krishnan
Hi, For avoiding the recursion , set a flag before calling gtk_check_menu_set_active() , and reset the flag after completed gtk_check_menu_set_active().If the flag is set then don't allow gtk_check_menu_set_active(). if (flag) return; flag= true;