vote up 8 vote down star
3

Hello there.

I've been learning python for a while now with some success. I even managed to create one or two (simple) programs using PyGtk + Glade.

The thing is: I am not sure if the best way to use GTK with python is by building the interfaces using Glade.

I was wondering if the more experienced ones among us (remember, I'm just a beginner) could point out the benefits and caveats of using Glade as opposed to creating everything in the code itself (assuming that learning the correct gtk bindings wouldn't exactly be a problem).

flag

There are more UI builders than just glade, maybe you should mention "UI builder" instead of just glade. – Johan Dahlin Nov 26 '08 at 14:18

9 Answers

vote up 8 vote down check

I would say that it depends: if you find that using Glade you can build the apps you want or need to make than that's absolutely fine. If however you actually want to learn how GTK works or you have some non-standard UI requirements you will have to dig into GTK internals (which are not that complicated).

Personally I'm usually about 5 minutes into a rich client when I need some feature or customization that is simply impossible through a designer such as Glade or Stetic. Perhaps it's just me. Nevertheless it is still useful for me to bootstrap window design using a graphical tool.

My recommendation: if making rich clients using GTK is going to be a significant part of your job/hobby then learn GTK as well since you will need to write that code someday.

P.S. I personally find Stetic to be superior to Glade for design work, if a little bit more unstable.

link|flag
Since Glade makes XML files instead of actual python code, is there a good way to start a project with Glade and then hand code more or tweak it? I have just started learning glade personally. – timothyawiseman Sep 9 at 0:45
1  
I think that comment is worth a separate SO question, no? – Boris Terzic Sep 9 at 11:50
Good point, Boris. I did just that. – timothyawiseman Sep 11 at 17:45
GTK+ internals are not that complicated if you don't go too deep... – ntd Nov 3 at 21:52
vote up 1 vote down

Personally I would recommend coding it out instead of using Glade. I'm still learning python and pyGtk but I will say that writing out the UI by hand gave me a lot of insight on how things work under the hood.

Once you have it learned I'd say to give glade, or other UI designers a try but definitely learn how to do it the "hard" way first.

link|flag
vote up 3 vote down

If you're writing a traditional GUI application which reuses a lot of standard components from GTK+ (buttons, labels, containers etc.) I'd personally go with Glade + Kiwi (a convenience framework for building GTK+ GUI applications).

The single greatest advantage to using Glade is that it greatly reduces layout/packing code. Here's an extremely simply example which already shows the issues with manually laying out a GUI (without using any helper functions):

container = gtk.HBox()
label = gtk.Label(str="test")
container.add(label)

For more examples take a look here. Even if you're writing a complicated custom widget you can always create a placeholder in Glade and replace that after instantiation.

It shouldn't be all too long now for the Glade team to release a new version of the designer (3.6.0). This new version will add support for GtkBuilder, which replaces libglade (the actual library that transforms the Glade XML files into a widget tree). The new Glade designer also once again adds support for defining catalogs (sets of widgets) in Python, so you can easily add your own custom widgets.

link|flag
vote up 2 vote down

I recommend using Glade for rapid development, but not for learning. Why? because some times you will need to tune up some widgets in order to work as you want they to work, and if you don't really know/understand the properties attributes of every widget then you will be in troubles.

link|flag
vote up 1 vote down

For quick and simple screens I use Glade. But for anything that needs finer levels of control, I create a custom classes for what I actually need (this is important, because it's too easy to get carried away with generalisations).

With a skinny applications specific classes, I can rapidly change the look and feel application wide from a single place. Rather like using CSS to mantain consistency for web sites.

link|flag
vote up 2 vote down

I usually start with Glade until I come to a point where it doesn't have the features I need, e.g. creating a wizard. As long as I'm using the standard widgets that Glade provides, there's really no reason to hand-code the GUI.

The more comfortable I become with how Glade formats the code, the better my hand-coding becomes. Not to mention, it's real easy to use Glade to make the underlying framework so you don't have to worry about all the initializations.

link|flag
vote up 4 vote down

I started out using glade, but soon moved to just doing everything in code. Glade is nice for simple things, and it's good when you're learning how GTK organizes the widgets (how things are packed, etc). Constructing everything in code, however, you have much more flexibility. Plus, you don't have the glade dependency.

link|flag
vote up 4 vote down

Glade is very useful for creating interfaces, it means you can easily change the GUI without doing much coding. You'll find that if you want to do anything useful (e.g. build a treeview) you will have to get familiar with various parts of the GTK documentation - in practice finding a good tutorial/examples.

link|flag
vote up 9 vote down

Use GtkBuilder instead of Glade, it's integrated into Gtk itself instead of a separate library.

The main benefit of Glade is that it's much, much easier to create the interface. It's a bit more work to connect signal handlers, but I've never felt that matters much.

link|flag
You can also create files that can be used via GtkBuilder with Glade. Theoretically, that is, since Glade still messes them up. The best option might be to create the GUI with glade, save it as a glade file and then convert with gtk-builder-convert. – Torsten Marek Sep 20 '08 at 21:11
What version of Glade are you using? The last few versions have the ability to save to either GtkBuilder format of LibGlade format. So you do not need to use gtk-builder-convert. – Pynt Nov 13 at 16:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.