Re: GUI app design questions

2005-04-08 Thread Vinod Joseph
Hi David Does the graphing package have any special modules for network performance analysis ? Something like TraceGraph .. Thank you Joe On Apr 1, 2005 3:16 PM, Richard Gipps <[EMAIL PROTECTED]> wrote: > David, > There is also a very good graphing package lumped in with some > oth

widgets stacked in many layers

2005-04-08 Thread Boris Glawe
Hi, I'd like to build my gui with the following feature: The background is an Image. On the image I'd like to place some arbitrary small pictures, which can move around. These small pictures should also have some editable text. The background image is a volleyball field. The small pictures are

Output-only window...

2005-04-08 Thread Freddie Unpenstein
I'm guessing that what I want to do can only be achieved with X11 directly, though I thought I'd enqure anyhow... I'd like to draw a small window on the screen, shaped so it only uses as much space as it needs. But, I don't want it to respond to mouse clicks or anything. In fact, you should

help for combobox

2005-04-08 Thread poonam chokshi
hello, 1) I am using the combobox in my application now i want the functionality that whenever user types in the combobox the selection changes in the list...accordinglyAm i supposed to use the change signal for the combobox ??? If yes than what am i supposed to write in the that signal

Re: help regarding the combobox

2005-04-08 Thread Peter Bloomfield
On 04/08/2005 01:40:02 AM, poonam chokshi wrote: hello, I am using the combobox in the heirarchy as shown -Main window -secframe -secfixed -seccmb Now i am trying to add some data to the the combo box usingthe g_list_append() function in my own callba

re:gtk treeview

2005-04-08 Thread srinivas
hi all; i would like to display file system in treeview with nodes, expand and collapse functionality. how can i do this. thanks; vas. ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-dev

Re: Newbey Question

2005-04-08 Thread Jamiil Abdullah-Alkadir
Thanks Tristan for you prompt response. I did try your suggestion, but to no avail. After making the changes to my .cpp file, I now get a messages saying: "... error: 'GTK_CALLBACK' undeclared ..." Perhaps this macro was not yet included in the 1.2.10 version, but in a later version, do you kn

RE: Newbey Question

2005-04-08 Thread Jamiil Abdullah-Alkadir
Yes, I am aware of the name of the library. I believe that the spelling mistake was driven by my eagerness to finish learning GTK+ so that I can start learning GTKmm, which is my ultimate goal. I, however, am having problems finding a port of GTKmm to MSW-Cygwin. I prefer working with C++ rather

Re: Newbey Question

2005-04-08 Thread Marcel Ruff
Jamiil Abdullah-Alkadir wrote: Thanks Tristan for you prompt response. I did try your suggestion, but to no avail. After making the changes to my .cpp file, I now get a messages saying: "... error: 'GTK_CALLBACK' undeclared ..." Try GTK_SIGNAL_FUNC(Quit) regards Marcel Perhaps this macro was not

Re: Newbey Question

2005-04-08 Thread Jamiil Abdullah-Alkadir
Thanks Marcel for your prompt response. I did as you suggested, however, I now get an error saying that the '-lXext' library was not found. I ran 'find /usr -name *Xext*' and I did find '/usr/X11R6/bin/cygXext-6.dll'. Is there anything I can do to solve this problem? TIA From: Marcel Ruff <[EMA

Callbacks from an idle function

2005-04-08 Thread Vivien Malerba
Hi! I would appreciate having a bit of help concerning a strange problem. In an application I'm writing (Mergeant), I have enabled multi-threading (g_thread_init() and gtk_threads_init()), but I'm using it with one thread only. I have an idle function callback from which I create: * one custom o

Re: Newbey Question

2005-04-08 Thread Marcel Ruff
Jamiil Abdullah-Alkadir wrote: Thanks Marcel for your prompt response. I did as you suggested, however, I now get an error saying that the '-lXext' library was not found. I ran 'find /usr -name *Xext*' and I did find '/usr/X11R6/bin/cygXext-6.dll'. Is there anything I can do to solve this proble

system tray applications

2005-04-08 Thread rob miller
Hi Everyone, This is my first post so please be kind if you have heard this all before :P I have an appilcation that i want to minimise to the system tray, much like gaim's system tray plugin. There is not much information available on the web regarding how to implement it and from what there is

Re: Callbacks from an idle function

2005-04-08 Thread Peter Bloomfield
On 04/08/2005 10:22:59 AM, Vivien Malerba wrote: [ snip ] However, still from the same function, I then destroy the custom widget, and the whole application locks. A backtrace from gdb attached to the locked application gives: (gdb) bt #0 0x00ad37a2 in _dl_sysinfo_int80 () from /lib/ld-linux.so.2

Re: Callbacks from an idle function

2005-04-08 Thread Vivien Malerba
On Apr 8, 2005 5:26 PM, Peter Bloomfield <[EMAIL PROTECTED]> wrote: > On 04/08/2005 10:22:59 AM, Vivien Malerba wrote: > [ snip ] > > However, still from the same function, I then destroy the custom > > widget, and the whole application locks. A backtrace from gdb attached > > to the locked applica

Re: Callbacks from an idle function

2005-04-08 Thread Peter Bloomfield
On 04/08/2005 11:41:57 AM, Vivien Malerba wrote: On Apr 8, 2005 5:26 PM, Peter Bloomfield <[EMAIL PROTECTED]> wrote: [ snip ] Perhaps you're trying to use gdk_threads_enter recursively? Instant lock... I did not use gdk_threads_enter()/gdk_threads_leave() when I posted the message. Oh, well,

Re: Callbacks from an idle function

2005-04-08 Thread Vivien Malerba
On Apr 8, 2005 6:13 PM, Peter Bloomfield <[EMAIL PROTECTED]> wrote: > On 04/08/2005 11:41:57 AM, Vivien Malerba wrote: > > On Apr 8, 2005 5:26 PM, Peter Bloomfield > > <[EMAIL PROTECTED]> wrote: > [ snip ] > >> Perhaps you're trying to use gdk_threads_enter recursively? Instant > >> lock... > >> >

GtkItemFactoryEntry shortcut keys

2005-04-08 Thread Daniel Pekelharing
Hi all, This is my first post - I'm fairly new to gtk programming. I program in C, here's my problem. I'm building a main menu for my app using GtkItemFactory, I'm trying to assign the '=' key as a shortcut on one of the items like this: {"/Edit/Frame Sequence Shift/Increment/1 Frame", "=", main

Re: Callbacks from an idle function

2005-04-08 Thread Bill Medland
On April 8, 2005 09:20 am, Vivien Malerba wrote: > On Apr 8, 2005 6:13 PM, Peter Bloomfield <[EMAIL PROTECTED]> wrote: > > On 04/08/2005 11:41:57 AM, Vivien Malerba wrote: > > > On Apr 8, 2005 5:26 PM, Peter Bloomfield > > > <[EMAIL PROTECTED]> wrote: > > > > [ snip ] > > > > >> Perhaps you're try

probelm with static linking

2005-04-08 Thread NAVEEN FRANCIS
Hi.. I am new to gtk. I was trying to develop an GTK application on Fedora. When I am trying to do static linking I am getting an error. This is what I'm trying gcc -g -static -o icon icon.c `pkg-config --cflags --libs gtk+-2.0` I'm getting the following error.. /usr/bin/ld: cann

Re: Output-only window...

2005-04-08 Thread Maciej Katafiasz
Dnia 08-04-2005, pią o godzinie 04:36 -0400, Freddie Unpenstein napisał: > I'm guessing that what I want to do can only be achieved with X11 > directly, though I thought I'd enqure anyhow... Well, AFAIK output-only windows were available in X10, however in X11 they were not, until very recently (t

GdkPixbuf

2005-04-08 Thread [ A b h i s h e k ]
Hi everyone, Could anyone tell me whether we have to free a GdkPixbuf * when we dont need it. Its something like this. I use gdk_pixbuf_new_from_file or gdk_pixbuf_render_pixmap_bitmap functions. So do i have to free the memory allocated by these functions explicitly or is it okay to leave it. I

GTK+ 2.6.5 released

2005-04-08 Thread Matthias Clasen
GTK+ 2.6.5 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.6/ http://ftp.gnome.org/pub/GNOME/sources/gtk+/2.6/ gtk+-2.6.5.tar.bz2 md5sum: 3f52f64bdbd132eccfee2de5d2124190 gtk+-2.6.5.tar.gzmd5sum: 627775f318bdafede39607fda3ddbc84 This is a bug fix release and is source and

Re: GdkPixbuf

2005-04-08 Thread David Necas (Yeti)
On Sat, Apr 09, 2005 at 05:58:22AM +, [ A b h i s h e k ] wrote: > Could anyone tell me whether we have to free a GdkPixbuf * when we dont > need it. Its something like this. Please read the docs: http://developer.gnome.org/doc/API/2.0/gdk-pixbuf/gdk-pixbuf-refcounting.html Yeti -- A: Bec