Re: Fundamentals of GTK

2006-04-05 Thread Iago Rubio
On Tue, 2006-04-04 at 20:45 -0700, 3saul wrote: > Thanks for the information...that was very helpful. So in terms of how the > main function works in a GTK app is it like this: > > > int main( int argc, char *argv[] ) - start here and work down to... > gtk_main (); - check to see if anything need

Re: Fundamentals of GTK

2006-04-04 Thread 3saul
Thanks for the information...that was very helpful. So in terms of how the main function works in a GTK app is it like this: int main( int argc, char *argv[] ) - start here and work down to... gtk_main (); - check to see if anything needs to be done for the gui then loop back up to int main( int

Re: Fundamentals of GTK

2006-04-04 Thread Michael Torrie
On Tue, 2006-04-04 at 19:20 -0700, 3saul wrote: > OK I'm having some trouble understanding how a GTK application actually > works. I've created a few terminal based applications in C for linux. When I > want my application to continually perform a particular function I set up a > loop. Within this