Re: Question about put "GtkWidget" pointer as function's argument

2006-07-16 Thread Christopher Backhouse
chao yeaj wrote: > splash = frame;/* Here, the splash is not NULL*/ splash is a local variable. if you want to assign to the data at the pointer: *splash=frame ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http

Question about put "GtkWidget" pointer as function's argument

2006-07-16 Thread chao yeaj
Hello everyone My code like this: int create_image_from_file(GtkWidget *splash) { GtkWidget image = NULL; GtkWidget frame = NULL; image = gtk_image_new_from_file("~/splash.png"); frame = g

Re: RADiola, a GTK RAD tool

2006-07-16 Thread Atanas Atanasov
Maybe I can give some help on RADiola. My suggestion would be to get the bare GUI you have done, compile and release it so that there will be a skeleton. There also is another issue I thought about which is the language support. Excuse me if you wrote something about this already in the documentati

How can i show a GtkImage widget ?

2006-07-16 Thread chao yeaj
Hello,everyone I have GtkWidget like this: GtkWidget *image = gtk_image_new_from_file("~/image.jpg"); and i show that widget like this: GtkWidget *frame = gtk_frame_new(NULL); gtk_container_add(GTK_CONTAINER(frame),image); gtk_show_widget_all(frame

GtkEntryCompletion

2006-07-16 Thread nerdy
Hello all, I am having some problems in controlling the drop-down list that appears from the GtkEntryCompletion. I have a long lisk of entries that can be popped up for the completion. By default if there are more than 14 elements, the EntryCompletion drop down list adds a scroll bar to its sid

Load modules in Gtk+ IMModules

2006-07-16 Thread Nan Ye
Hi all, Now, I'm developing my own text input method module by using the GtkIMModule. My own text input method is seperated to two major component, one is input engine and the other one is input helper. Input engine tooks response for retrieving the correct candidates for users inputs, while the In

Re: RADiola, a GTK RAD tool

2006-07-16 Thread Ricardo Malafaia
On 7/14/06, Fabricio Rocha <[EMAIL PROTECTED]> wrote: > Well, I have to say that RADiola, as described in the User Guide, still > does NOT exist. well, that's pretty obvious. > The (sad) reality is that I am only a hobbyist programmer (in fact > I'm a TV reporter in the Politics area!), with lit

Re: Can I hide password in config file?

2006-07-16 Thread Yeti
On Sat, Jul 15, 2006 at 09:33:17PM +0200, Karl Reichert wrote: > I'm using the GLIB Key-value file parser > (http://developer.gnome.org/doc/API/2.0/glib/glib-Key-value-file-parser.html) > to create or read from a config file. The contents of this file is > servername, port, some other things and

Re: RADiola, a GTK RAD tool

2006-07-16 Thread Fabricio Rocha
Hello! > Message: 1 > Date: Fri, 14 Jul 2006 22:55:31 +0530 > From: Santhosh <[EMAIL PROTECTED]> > Subject: Re: RADiola, a GTK RAD tool > To: "Fabricio Rocha" <[EMAIL PROTECTED]> > Cc: gtk-app-devel-list@gnome.org > > You may need to find out the difference that RADiola is going to make...

Re: platform support

2006-07-16 Thread Guy Rouillier
ahmet alper parker wrote: > just to confirm, it is nearly ok on mac osX and ok on linux and windows. how > about unix (and mostly on solaris)? I think it is ok since most of the linux > programs run on unix too but I dont know exectly, I am a beginner and I dont > know wether there is a difference

Re: What's worry with the "entry" widget? It makes my application so ugly!

2006-07-16 Thread Richard Boaz
hi, if you want fine control over the size of your entry widgets, the following routines may be of help: gtk_entry_set_max_length() gtk_entry_set_width_chars() richard On Jul 16, 2006, at 9:39 AM, chao yeaj wrote: > Hello everyone > First ,I am sorry for my poor Englisth ! > > In my

Can I hide password in config file?

2006-07-16 Thread Karl Reichert
Hi, I'm using the GLIB Key-value file parser (http://developer.gnome.org/doc/API/2.0/glib/glib-Key-value-file-parser.html) to create or read from a config file. The contents of this file is servername, port, some other things and a password for accessing this server. The user can use an options

Re: platform support

2006-07-16 Thread ahmet alper parker
just to confirm, it is nearly ok on mac osX and ok on linux and windows. how about unix (and mostly on solaris)? I think it is ok since most of the linux programs run on unix too but I dont know exectly, I am a beginner and I dont know wether there is a difference for linux and unix programs. Regar

Re: platform support

2006-07-16 Thread Iago Rubio
On Sat, 2006-07-15 at 23:19 -0400, Allin Cottrell wrote: [big snip] I completely agree with Allin in his view of the GTK+ toolkit. > The alternative is running the X11 version on OS X, > which is quite doable but requires quite a lot of setup. Fortunately, there some quite good package distribu

Re: platform support

2006-07-16 Thread ahmet alper parker
thanks a lot for warm and kind answers... whish you all good things Regards with best wishes Ahmet Alper Parker On 7/15/06, ahmet alper parker <[EMAIL PROTECTED]> wrote: > > Dear all, I am planning to develop a c/c++ application and I am searching > for a good gui designer and found gtk+ and glade

What's worry with the "entry" widget? It makes my application so ugly!

2006-07-16 Thread chao yeaj
Hello everyone First ,I am sorry for my poor Englisth ! In my application, there are sveral "entry" widgets usually ,they are nice, and the widget's default size is that: it's width can accommodate 12 characters ,as follow, +-+ |0123456

Re: platform support

2006-07-16 Thread Allin Cottrell
On Sat, 15 Jul 2006, ahmet alper parker wrote: > Dear all, I am planning to develop a c/c++ application and I > am searching for a good gui designer and found gtk+ and glade. > I have a simple question. If I develop a gui with glade will > it be platform independent? (or how I can achieve this?