|
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...
Started by Flávio Amieiro on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
It's a bit more work: if you find that using Glade you....
The main benefit of Glade is that it's much, much easier to create the interface.
Use GtkBuilder instead of Glade, it's integrated into Gtk itself instead of a separate library.
|
|
I am just starting to learn Glade with pyGTK. 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?
Are there times or reasons it would be preferrable to hand ...
Answer Snippets (Read the full thread at stackoverflow):
Read these tutorials to understand how to do it....
You can easily tweak any widgets you created with glade in python.
How much do you know about glade and pygtk? Glade creates xml files but you load these using gtk.Builder in python.
|
|
As stated in the title, i'm looking for an XML schema (XSD-file) for the Glade markup language?
Wikipedia states that Glade is a schema based markup language ( list of schemas at wikipedia ). I tried to search the web, wikipedia and the glade website,...
Started by Juve on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You may find the .defs files.
Down the glade to an particular schema since it's all run-time based.
|
Ask your Facebook Friends
|
I'm writing an app for gnome which will support plugins. Each plugin will contain a glade file and a python script.
How do I embed the glade file from the plugin in the main interface.
Plugin glade files should contain a page/tab and will be embeded into...
Started by Owais Lone on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You have two options:
You can open the two glade files into two.
Gtk.Builder documentation.
The best way would be to make the plugins load the glade file themselves and have a function it needs to.
|
|
I just downloaded and installed GLADE. What are some good tutorials for the C language?
Started by Lucas McCoy on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Linux Today" has A Pair of Glade Tutorials
and this one GTK+ and Glade3 GUI Programming Tutorial in details with examples in both C and Python: Designing a User Interface using Glade.
|
|
Hey guys,
I am trying to make a gui with Glade 3 (gtk) and ruby but cannot figure out how to actually populate a combo box dynamically with say a list of strings. I get the xml .glade file after i visually make my gui in Glade, and use ruby-glade-create...
Started by Javed Ahamed on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Here is a pretty good tutorial on glade 3 , it doesn't cover ruby but python a recent version of glade 3.
So do you load the glade to get specific widgets.
Why do you need to generate a .rb file? Code generation is Frowned Upon™ .
|
|
Glade helped me get started on a project quickly, but I've found it harder to maintain in the long run, and I'm thinking about switching it all to native code. In what circumstances would you choose glade, and when would you use native code?
Started by Matthew on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Also, gtkbuilder is easier to load widgets from than glade.
Have you used glade or gtkbuilder? With Glade 3, gtkbuilder format is easy to use and easy to layout and design.
With gtkbuilder.
|
|
I'm working on a PyGTK/glade application that currently has 16 windows/dialogs and is about 130KB, and will eventually have around 25 windows/dialogs and be around 200KB. Currently, I'm storing all the windows in one monolithic glade file. When I run ...
Started by Adam Plumb on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
I use different glade files....
As I understand it, Glade always creates all widgets when it parses an XML file, so if you open) into one glade file, and separate glade files for widgets that needed to be created several times.
|
|
I'm writing a python application that runs several subprocesses using subprocess.Popen objects. I have a glade GUI and want to display the output of these commands (running in subprocess.Popen) in the gui in real time.
Can anyone suggest a way to do this...
Started by M0E-lnx on
, 4 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
glade is only a program to build gui with gtk so when you ask for a glade object maybe you should.
|
|
Hey guys,
I am trying to add a browser using GtkMozEmbed into a gui I am designing using Glade. I want the browser to take up a tab in a notebook widget, but I cannot figure out how to actually do this. I am wondering what container to use to put the ...
Started by Javed Ahamed on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I do not think it is possible to get it setup using the Glade GUI, so you will have to get.
A window element into the tab, and in the ruby code associated with the glade file configure the GTKMozEmbed there.
|