in reply to Re: GUI builders, good or bad?
in thread GUI builders, good or bad?

The Glade builder for Gnome uses grid layouts by default. You can place a pixel-by-pixel layout if you want, though. It has been a while since I've used it, and I don't remember anything about the quality of code.

----
send money to your kernel via the boot loader.. This and more wisdom available from Markov Hardburn.

Replies are listed 'Best First'.
Re^3: GUI builders, good or bad?
by Anonymous Monk on Jun 21, 2004 at 13:42 UTC
    This is why you use libglade and it's XML features. It produces the GUI as a description file that any program language can read, thus seperating the GUI definition and the code. As a result the code can work with multiple GUI definitions and you can change the GUI without changing the code. Python GTK has an excellent module for libglade. I don't know if Perl has one or not -- let me know if it does, I like Perl better. --MPD

      I don't know if Perl has one or not -- let me know if it does

      It does.

      ----
      send money to your kernel via the boot loader.. This and more wisdom available from Markov Hardburn.