Tagged Questions
Glade is a visual user interface designer for the GTK+ toolkit and the GNOME desktop environment.
18
votes
10answers
3k views
Glade or no glade: What is the best way to use PyGtk?
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 ...
7
votes
8answers
1k views
Is there a Python library that allows to build user interfaces without writing much code?
I am writing editing front ends in Python since several years now, and I am fed up with micromanaging every UI detail of a window or dialog every single time.
Is there a technology that allows me to, ...
6
votes
1answer
336 views
How to package a haskell gtk2hs glade application on windows?
I made a little GUI app with gtk2hs, Glade and Haskell. It runs fine on Windows XP, but users need to install GTK+, gtk2hs (it asks for libglade-2.0.0.dll) and GHC (as it's a gtk2hs dependency) in ...
6
votes
6answers
608 views
Where can I find a GUI designer for Python?
Does anyone know of any GUI designer for python like Glade but for windows?
6
votes
4answers
1k views
How to handle a glade project with many windows
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 ...
5
votes
1answer
340 views
Localization of GUI built with Glade and Python (Gtk)
I have made an application using Glade and Python and I would like to make several localizations.
I know how to localize strings that are in the Python code, I just encapsule all the strings that are ...
5
votes
3answers
943 views
Using custom widgets with glade / Gtkbuilder
I'm developing an application with Gtk and Glade. My impression is that it's common practice to create a subclass of GtkWindow for your main window, but I'm stuck on how I would construct my subclass ...
5
votes
2answers
5k views
Python Glade could not create GladeXML Object
I've created a simple window GUI in Glade 3.6.7 and I am trying to import it into Python. Every time I try to do so I get the following error:
(queryrelevanceevaluation.py:8804): libglade-WARNING **: ...
4
votes
2answers
1k views
Use glade with pygobject Gtk3
I am converting a script to use Gtk3 using the migration guide (Porting GTK2 to GTK3). I converted my import pygtk to a from gi.repository import Gtk and so on...
I'm stuck because the glade module ...
4
votes
1answer
204 views
How to reuse a widget tree from a glade file with GtkBuilder?
i want to populate a gtk.notebook on-the-fly. everytime a user opens a file, a new notebook-tab is generated. pretty straight forward. my problem is, that i use glade to build the ui and the ...
4
votes
2answers
1k views
How to use gtk/glade in vala
I'm trying to make a simple app with glade/gtk/vala. So far I have this:
using Gtk;
class HelloWorldApp : GLib.Object {
const string UI = "test.glade";
public Window main_window;
[CCode ...
4
votes
1answer
330 views
c++ sdl: can i have an sdl-opengl window inside a menu and buttons i created with glade?
I used glade to create some gtk buttons.
is it possible to add an sdl-opengl window to a glade application ? if so, how ?
how can I interact between the gtk events and the sdl events inside the gtk ...
3
votes
1answer
28 views
How do I add children to a StatusBar in Glade3?
In GTK2, a StatusBar was just a simple container like an HBox. Glade 3 (gtk3) now shows this message when I try to add child widgets to my status bar:
What are placeholders?
I prefer to build the ...
3
votes
2answers
474 views
putting glade interface in python
I've made a gui in glade that I want to put in a python program. I was adapting the instructions from a tutorial I found online to load in my glade file ...
3
votes
2answers
536 views
Missing dll's when using Py2Exe, PyGtk, and Glade
I'm trying to build my first application using Py2Exe and I'm following the instructions listed at http://www.py2exe.org/index.cgi/Py2exeAndPyGTK, with the exception that I'm creating the UI with ...
3
votes
2answers
853 views
Python GTK Listviews using Glade
I am currently developing an application for my Linux desktop that reads data from my Garmin Forerunner sports watch, parses the not-so-well-formed XML file, and writes the data to a MySQL database ...
3
votes
1answer
188 views
Glade-3 for Ada
I am trying to use Glade 3 for my Ada programs on Windows 7. I found a way with version 3.6 but gtk-builder-convert was not recognized as a script. I have tried Google to find a site that explains how ...
3
votes
1answer
324 views
How to get avoid assertion failure when loading gtk About dialog box?
I've programmed a software gui using glade and gtk. The main window has an About button. When I click on the button for the first time, the GtkAboutDialogBox runs perfectly. The action area is ...
3
votes
2answers
426 views
How do you draw a grid and rectangles in Python?
What Python-related code (PyGTK, Glade, Tkinter, PyQT, wxPython, Cairo, ...) could you easily use to create a GUI to do some or all of the following?
Part of the GUI has an immovable square grid.
...
3
votes
1answer
860 views
How to disable/inactive some of the GtkMenu Items
I am trying to disable/inactive some of menu items under GTK+. I have created Menu In GTK+Glade under C, and on some external event I need to disable some of the menu options.
How can I do this?
3
votes
2answers
3k views
What are the steps to convert from using libglade to GtkBuilder? (Python)
I have a small project that uses libglade and use the following to load the xml file:
self.gladefile = "sdm.glade"
self.wTree = gtk.glade.XML(self.gladefile)
self.window = ...
2
votes
1answer
157 views
glade/gtkbuiler export ui to png by code (or any image format)
The title says it all.
Is there a way to get a screenshot of a glade/gtkbuilder UI xml by code (preferrably C) ?
Thank you
2
votes
1answer
82 views
Adding widgets from Glade file to a subclass of gtk.Window in Python. How?
I've made an interface using Glade. I want to then create a subclass of gtk.Window - in Python - and pass in that file to it. Then I'd like to be able to play with the widgets that I added in Glade as ...
2
votes
2answers
169 views
Put a digital clock in a pygtk window
Hello,
I have this code for a digital clock with TKinter:
#!/usr/bin/python
# -*- coding: utf-8 -*-
import Tkinter
import time
def tick(time_old, clock):
# get the current local time from the ...
2
votes
1answer
126 views
Gtk+Glade: widgets using same signal handler. How to differ them from each other?
Now that I'm having a window including many buttons which perform similar behavior so it's natural to use same signal handler for them. But however after the signal happens I just can't differ them ...
2
votes
1answer
99 views
Can't pass user data in callback using Glade
I have an app I'm making with pygtk and Glade.
I have a radio button series I'm trying to get working. I'm getting stumped at trying to pass user data after a button is toggled. The callback works ...
2
votes
2answers
236 views
Connecting Signals with Perl and GtkBuilder
I'm trying to figure how to access a widget from within a signal handler.
I've got a label called "lblVerify" that I just want to change the text to "verified" when I click on the button. I know I ...
2
votes
2answers
921 views
Glade treeview liststore data not visible, can't imagine why
I've got 99% 44/100 of everything working. I have a glade file, I use gtkbuilder to render it and voila it comes up. Everything except the data in my treeview liststore.
I notice by default the tree ...
2
votes
1answer
373 views
Passing user data with glade/gtkbuilder
I am a newbie of glade/pygtk.
I am doing with some radio menu items.
I created a signal handler on the signals tab,
handler: on_group_menu_change
user data: 7
what I expected is pass the int(or ...
2
votes
2answers
802 views
Getting started with Mono, C# and Glade#: How to make window appear?
I've been trying to get started with Mono & GTK# (I come from a background of Qt/C++ GUI programming) and decided to start with a very simple test GUI.
I installed the MS Windows Mono/GTK# ...
2
votes
3answers
153 views
Command not defined in Python - Real basics, but confused!
I have written this short script (which I've stripped away some minor detail for size) and I'm getting a very simple error, yet, I don't understand why! I'm very new to Python, so maybe someone can ...
2
votes
1answer
438 views
Creating columns with editable cells in Gtk treeview using Glade
I am trying to create a simple GUI with table containing x and y coordinates of samples. I use treeview, and I want the cells of the table to be editable by user. Is it possible to specify if the ...
2
votes
4answers
532 views
Making GUI applications on Linux/Windows. What languages/tools to use?
My student group and I are trying to continue working on a project we worked on this semester over the summer to become a professional, deployable app. We originally did it in Adobe AIR but it seems ...
2
votes
4answers
408 views
How can I create a GUI on top of a Python APP so it can do either GUI or CLI?
I am trying to write an app in python to control a motor using serial. This all works in a CLI situation fine and is generally stable. but I was wondering how simple it was to add a GUI on top of this ...
2
votes
1answer
928 views
Multiple Thread Progress Bar Control with gtk
in my C program , download some files from the internet, im using a GTK progress bar to show the download progress.
i wanna if i download one file ,my app show one progress bar
if i download three ...
2
votes
4answers
796 views
On GNU/Linux systems, Where should I load application data from?
In this instance I'm using c with autoconf, but the question applies elsewhere.
I have a glade xml file that is needed at runtime, and I have to tell the application where it is. I'm using autoconf ...
2
votes
3answers
497 views
where can I find GladeGen?
I'd like to design a GUI using Glade, and generate python code from it. The thing is, I can't find GladeGen. Does anyone know where it can be downloaded from?
2
votes
1answer
3k views
How to install Glade in Mac OSX Leopard
How can I install Glade in Mac OSX Leopard? I haven't found any guide that really helped me.
Thanks!
2
votes
2answers
1k views
Is there any Glade3 installer for Windows?
I downloaded file:
http://downloads.sourceforge.net/gladewin32/glade-3.4.3-win32-1.zip
and when I extract it an run glade-3.exe from /bin folder, I get "no libxml2.dll" error.
Now, I want to find ...
2
votes
3answers
433 views
Where can i find the XML schema (XSD-file) for the Glade markup language?
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 ...
1
vote
0answers
58 views
How can I populate a GtkListStore with GdkPixbuf columns in Glade?
I'm working on a small PyGtk project that uses a GtkListStore to contain the data of the elements that I want to show as icons in a GtkIconView. I'm designing the UI with Glade.
I know how to add the ...
1
vote
1answer
57 views
Bold/Unbold rows in PyGTK TreeView
I want to make some rows in my TreeView bold, and some not as I append them to TreeView, later on, I want to unbold rows on click.
What is the easiest way to do this?
1
vote
1answer
58 views
GtkLabel alignment and padding
I have GtkLabel in Glade with X align set to 0, X pad set to 5, Expand set to No.
Label is located under horizontal box together with spin button and another label.
The problem is that X pad is ...
1
vote
1answer
35 views
Setting separate GtkTable column width
I'm building simple PyGTK app with Glade.
In one dialog I have table layout with labels in first column, and text entries in second column.
The problem is that two columns have always same width, ...
1
vote
2answers
47 views
Is there a way how to add title to Gtk.TextTag?
I'm developing Gtk based application with GtkTextView.
I created a GtkTextBuffer and set few tags there.
Here's my code
def tag(self, line, msg, bc_color="red"):
start = ...
1
vote
1answer
61 views
adding items to treeview in PyObject
I have a GUI created in Glade, and I would like to populate the treeview widget. Here is the relevant part of my code
def __init__(self):
.....
self.fill_store()
...
1
vote
1answer
69 views
Include console app in GTK app
I'd like to create an application similar to gvim, so that I'll have gtk application with console application included (in my case, it's vim or any other console text editor)
What is the best way to ...
1
vote
1answer
128 views
How do I fix the “unknown attribute `swapped'” warnings from libglade?
libglade was updated and my old Glade xml file has these "swapped" attributes for signals. These attributes generate the following warnings when the file is loaded:
libglade-WARNING **: unknown ...
1
vote
1answer
110 views
Opening a pop with custom UI in python gtk
I am new to Python GTK programming. In my UI i have a button. On click of that i have to open a popup which has a three button and some label. I have to pass some variables from main window to popup ...
1
vote
1answer
111 views
Removing a PYGTK treeview row programmatically
I'm trying to find out how you remove a row in a pygtk treeview without selecting it. I can remove rows by selecting the row first but the application I'm working on needs to be able to remove rows ...