Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
949 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 ...
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 ...
3
votes
1answer
332 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
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 = ...
3
votes
1answer
1k views

gtk.Builder, container subclass and binding child widgets

I'm trying to use custom container widgets in gtk.Builder definition files. As far as instantiating those widgets, it works great: #!/usr/bin/env python import sys import gtk class ...
2
votes
1answer
19 views

Set widget properties using GTKBuilder and Python

I am new with GTKBuilder. I have included a GTKBuilder file in my Python script. I want to change a property of a widget. For example, if someone clicks on "More Information", on_more_information ...
2
votes
1answer
166 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
86 views

How to write an extended gtk.CellRendererText() to have an image beside the text

I am doing a simple file browser in python and GtkBuilder. I am using a Treeview that has one TreeViewColumn with cells that are rendered like: self.cell = gtk.CellRendererText() As I mentioned I ...
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
1answer
186 views

How do i get the name (or id) on an widget which was created with Gtk2::Builder?

I am converting an app from using Gtk2::GladeXML to Gtk2::Builder. When getting all widgets with @widgets = $glade_object->get_widget_prefix('') I could get the name (set in Glade) of a widget ...
2
votes
1answer
175 views

Can I load a gtkbuilder app into a “parent” gtkbuilder frame?

I am using Glade-3 to build a suite of Gtk applications. The applications are supposed to have a common look-and-feel, and we have decided on a common "frame" that all apps will share, that includes ...
2
votes
1answer
591 views

How to connect GtkTextView to GtkMenuItem

I'm making a trivial text editor (as an exercise) in GTK using Glade, GtkBuilder, and C. I have an edit menu with Cut, Copy, and Paste as well as a GtkTextView for the text. GtkTextView ...
1
vote
0answers
14 views

Dialog breaks when using GtkBuilder to automatically connect signals, but works when manually connecting signals

I want to have a dialog window where some buttons close the dialog and others don't. The way I do this is by using the response signal from the Gtk.Dialog to call emit_stop_by_name('response') on the ...
1
vote
1answer
55 views

GtkBuilder and “names”

I've been trying to get the "names" of all GtkWidgets in a GtkBuilder object. I've managed to get all objects from the builder object via gtk_builder_get_objects() and store them in a GSList. ...
1
vote
1answer
70 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
367 views

Handling multiple windows in PyGTK/GtkBuilder

How can I store multiple different windows/dialogs in a single GtkBuilder file and then load these windows in different classes (each class corresponding to a different window)? For instance, ...
1
vote
2answers
241 views

Center fixed-size GtkDrawingArea widget inside of parent widget

I've got a glade layout going, and in it I have a fixed-size GtkDrawingArea. The current relevant part of the hierarchy is: GtkWindow > GtkVBox > GtkHPaned > GtkViewport > GtkAlignment ...
1
vote
1answer
178 views

How do I use Xfce widgets with Pygi?

I've been playing around with pygi recently, trying to put together a mixer plugin for xfce, but when I try to load the GtkBuilder file from python it doesn't recognize the XfceTitledDialog (which I'm ...
1
vote
1answer
97 views

gtk+ Gtkbuilder && OOP principles

I got a pretty awkward feeling after messing with GtkBuilder + *.ui-files for a few weeks now. Either I doom the OOP principles to get a real advantage from the usage of GtkBuilder and *.ui files OR ...
1
vote
3answers
1k views

How to repeatedly show a Dialog with PyGTK / Gtkbuilder?

I have created a PyGTK application that shows a Dialog when the user presses a button. The dialog is loaded in my __init__ method with: builder = gtk.Builder() builder.add_from_file("filename") ...
1
vote
2answers
553 views

I'm missing something obvious with glade gtkbuilder and connecting signals. Help?

I make my interface with glade. Works great. I write a tiny little main function which calls gtkbuilder and renders everything in the glade file. Gtk::Main kit(num, opts); // Load the GtkBuilder file ...
1
vote
1answer
748 views

Where can I find the gtk-builder-convert script?

I've built a small GUI app for work that uses some .glade files for pop-up windows. Recently, the ground beneath me was shifted - my environment was upgraded. Newer pyGTK versions require GTKBuilder ...
1
vote
1answer
280 views

Why does Gtk2::Builder mix up my signals?

I'm having this perl code: #!/usr/bin/perl use warnings; use strict; use Data::Dumper; use Gtk2 '-init'; my $data; my $builder_file = "lists.glade"; my $builder = Gtk2::Builder->new(); ...
1
vote
2answers
670 views

In Gtk, when is it better to use Glade/GtkBuilder than native code?

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 ...
1
vote
1answer
719 views

How do I connect glade signals using GtkBuilder in C#?

In python, I could just do builder.connect_signals(self). It doesn't seem like this method exists in C#, and after looking at the GtkBuilder documentation, it looks like python is the exception, ...
1
vote
3answers
3k views

ruby glade/gtkbuilder example?

I was using ruby and glade2 to design the user interface for a while in the new version of glade3 i can use gtkbuilder format to generated xml file instead of libglade. is there any example? i ...
0
votes
1answer
25 views

Gtk::Builder fails and immediately aborts when reading a file?

I'm trying to load a very basic Glade file from the same directory. However, Gtk::Builder always fails and aborts with terminate called after throwing an instance of 'Gtk::BuilderError' even ...
0
votes
2answers
222 views

Can't generate GtkBuilder.xml in glade

I'm trying to design some window in glade, and I want it to use in my python code using GtkBuilder I just somehow can't generate GtkBuilder xml When I save something in Glade I get .glade file Can ...
0
votes
0answers
41 views

gtkbuilder interface not available in lablgtk2?

Currently I am using libglade for building gui. However, I would like to use gtkbuilder. I couldn't find gtkbuilder interface in lablgtk2 (OCaml interface to gtk+). Is it not available in lablgtk2?
0
votes
0answers
151 views

ruby glade3/gtkbuilder example

I'm trying to use glade3 with Ruby, but unfortunately examples of this are few and far between. Looking at what's available, I've come up with the following code, but there's still something missing, ...
0
votes
1answer
115 views

UI in GtkSharp (Glade\GtkBuilder\Stetic\etc?)

Could you please advice a good interface tool for creation GtkSharp application. I started use glade, because it has wrapper in GtkSharp and it allows to load widgets from resource glade files. But ...
0
votes
0answers
55 views

Glade GTK accessing individual widgets

I constructed a database manipulating GUI using glade, for my add button hierarchy is add->confirmation dialog->(if yes)add data. how could each widget values in the main form be accessed? i am new to ...
0
votes
1answer
108 views

simple questions about PyGTK, GTKbuilder, GTK+

Okay, I'm just starting to get into creating GUIs with python and I'm a bit confused as how how I should go forward: Should I download PyGTK or the current version of GTK+ if I'm using Python or ...
0
votes
0answers
246 views

gtk/glade combobox problems in C

I'm doing a C gtkbuilder application using glade for the GUI. Following the tutorial in http://www.micahcarrick.com/gtk-glade-tutorial-part-1.html, I could create the GUI, get the entry and label ...
0
votes
1answer
96 views

convert gtkglade to libglade for a backwards compatibility

I have a python gtk app that I am porting to an environment that can only use pygtk2.10. pygtk2.10 doesn't not use the gtkbuilder infrastructure but rather the libglade infrastructure I have a 2 goals ...
0
votes
1answer
216 views

problem implementing get_filename() method for GtkFileChooser Button in glade and python?

As a newbee I am trying to create a basic theme installer using Glade and python. Everything is working fine but i am not able to find anywhere how to use get_filename() method for ...
0
votes
2answers
638 views

pygtk gtk.Builder.connect_signals onto multiple objects?

I am updating some code (in blurtr) from using libglade to GtkBuilder, which is supposed to be the way of the future. With gtk.glade, you could call glade_xml.signal_autoconnect(...) repeatedly to ...
0
votes
1answer
204 views

c code for gtk+ vs glade generated .glade files

I am new in the field of gtk+ programming. I'm still exploring many options to use. I will be coding in C language. I have the following questions: Which is better? Writing code or using the .glade ...
0
votes
1answer
362 views

Python Glade GTKBuilder Checkbutton

How do I find if a GTKBuilder Checkbutton is checked?
0
votes
2answers
129 views

How do I programmatically add a widget to a container created from GtkBuilder?

I've created a window that has some containers and widgets in it, and I want to add a new widget dynamically at run-time to one of the Vboxes in this window. So I have this code, which brings up the ...
0
votes
2answers
305 views

Window management with pygtk

I'm having an issue with PyGTK and GTK Builder windows. Here's a simplified version of my code. class GUI: def __init__(self,parent): builder_file = "./ui/window.builder" self.builder = ...
0
votes
2answers
438 views

Glade and static linking

If I'm statically linking a GTK+ program under FreeBSD 8, gtk_builder_add_from_file() suddenly returns with an error: Invalid object type `GtkWindow' How to fix that? With dynamic linking ...