Re: polling sockets using glib

2006-10-10 Thread Peter Robinson
[EMAIL PROTECTED] wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > On Mon, Oct 09, 2006 at 09:20:59AM +1000, Peter Robinson wrote: > >> Hi, >> I am writing a server application (using glib) in which I want to be >> able to (frequently) turn pol

polling sockets using glib

2006-10-09 Thread Peter Robinson
. What is the recommended way of doing this? Peter Robinson ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: File Selector Filter, directory only

2006-06-30 Thread Peter Robinson
Thanks, that did the trick. The GtkFileChooser is much easier to use than the GtkFileSelection, I would suggest replacing the page: http://www.gtk.org/tutorial/x1228.html with the material http://developer.gnome.org/doc/API/2.0/gtk/GtkFileChooserDialog.html#gtkfilechooser-typical-usage there

Re: File Selector Filter, directory only

2006-06-29 Thread Peter Robinson
On Thu, Jun 29, 2006 at 10:16:06AM +0530, Santhosh wrote: > http://developer.gnome.org/doc/API/2.0/gtk/GtkFileChooser.html#gtk-file-chooser-set-action > > http://developer.gnome.org/doc/API/2.0/gtk/GtkFileChooser.html#GtkFileChooserAction > > The above URLs would be helpful... > > Regards, > San

File Selector Filter, directory only

2006-06-28 Thread Peter Robinson
Hi GTKlers, thanks to help from many people on this list I have nearly finished my very first GTK app...as opposed to Swing, GTK is something I like more the more I use it...there is one more question I have not been able to answer using the online docs. I would like to open a file selector dia

Send file to system browser

2006-06-16 Thread Peter Robinson
Hi GTKlers, I am writing my first GTK program in order to turn a command-line afair that does various bioinformatics calculations into a more user-friendly tool. I would like to results of analyis to appear in a browser window. I have had a look at gtkhtml for this, but wonder if it might not b

Strange Callback Behavior

2006-06-05 Thread Peter Robinson
Dear GTK'lers, I think I must have misunderstood something about the use of callback functions in GTK, but despite some amount of testing, I cannot get to the bottom of it. My goal is to have a label on the GUI be changed after a user chooses a file. To do this, I define a struct struct men

Start Progress After User Has Entered Info/Data

2006-06-04 Thread Peter Robinson
Dear List, I have studied the example program for creating a progress bar and tried some variations. For my application, the user must set a few parameters and open a few data files. I would like to have the progress bar start up after that. For whatever reason, although I can see the outline o

Simple Help Window

2006-05-18 Thread Peter Robinson
Hi folks, please forgive what is possible a stupid question, but I would appreciate any hints/tips about the best way to set up a simple help system with 4-5 relatively simple pages and howtos for an application I am working on (my first GTK prog...). Is there a way to create a simple HTML widge

Re: Beginner's question: About dialog

2006-05-07 Thread Peter Robinson
>"version", version, >"website", website, > // all other properties > NULL); // end on NULL, for end of list > > If you want to construct your own dialog, do it as

Beginner's question: About dialog

2006-05-07 Thread Peter Robinson
Hi guys and gals, I have recently started to learn GTK and haven't been able to find answers to some simple questions in the online docs or by Googling, I hope someone has the patience to bear with me... I am trying to create an 'about' dialog, but there seems to be some problem with my code.