glade

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(); $builder->add_from_file( $builder_file ) or die "Couldn't read $builder_file"; $builder->connect_signals( undef ); my $window = $builder->get_...

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 and .xml files instead of Glade and .glade files and now my poor app is broken. I need to convert the .glade file to the newer .xml file....

Getting values from Multiple Text Entry using Pygtk and Python

On a click of a button named "Add Textbox" it calls a function which creates a single textbox using (gtk.Entry) function. So each time i click that button it creates a textbox. I have a submit button which should fetches all the values of the text boxes(say 10 textboxes) generated with the name of "entry". It works for one textbox but no...

pygtk - dynamically update the widgets taking input from the gtk combo box

On selecting value from 1 to 10 from gtk combox box it should populate the checkbox by taking combo box value as an input. Say for example if i select 5 then 5 checkbox will be generated. It works.. But the issue is after i selected 5 now im selecting next value as 3 from combo box then there 8 checkboxes are displayed. The old 5 checkbo...

PyGTK, Glade, Changing the window view and threads

Heya Everyone, Forgive me if this seems like a stupid question, just so far no where on the internet can I find someone offering a solution to this and I just wanted to get some feedback from someone with more experience than myself (I've only been using python, pyGTK and Glade for 2 days now). I have a UI window displaying and it upda...

c++ sdl: can i have an sdl-opengl window inside a menu and buttons i created with glade?

Hiya. 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 window ? thanks ...

Glade: How do I pass more than one argument to a signal handler?

Glade: How do I pass more than one argument to a signal handler? ...

GUI freezes when executing def function. Use threads?

Hi, I've made a small program which has 2 buttons and each does certain thing. Here's a simplified version of the code. Thing is it works fine except that the button freezes and stays in a clicked position and whole GUI freezes until the command is completed. As far as I know threads would be best to use in this situation, but I have no...

Python Glade could not create GladeXML Object

Hey, 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 **: Expected <glade-interface>. Got <interface>. (queryrelevanceevaluation.py:8804): libglade-WARNING **: did not finish in PARSER_F...

Glade 3 Standard Button Layout

Hey, I want to create a dialog using Glade 3 (or gtk and Python). In Glade 2 if you wanted to create a dialog box there was an option to set a "standard button layout" which would automatically create an Ok button and a Cancel button which return either gtk.RESPONSE_OK or gtk.REPONSE_CANCEL. This feature has not been reimplmented in Gla...

Creating a pygtk text field that only accepts number

Hi, Does anybody know how to create a text field using PyGTK that only accepts number. I am using Glade to build my UI. Cheers, ...

Tool to convert .Glade (or xml) file to C source.

I am looking for tool that can convert .Glade (or xml) file to C source. I have tried g2c (Glade To C Translator) but i am looking for windows binary. Any one does know any good tool for window. Thanks, PP. ...

Python Glade GTKBuilder Checkbutton

How do I find if a GTKBuilder Checkbutton is checked? ...

How do I edit GTKAssistant on Glade

How do I edit a GTKAssistant and add other GTK widgets with Glade? Every time I try to do this it just goes wrong. ...

How can I create a GUI on top of a Python APP so it can do either GUI or CLI?

Hello, 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 code base? I assume there will be more code, but is there a simple way of detecting something like GTK, so it only applied the co...

[Glade] button problem

Hi, i'm using glade to designa a interface for my program written in C but i have some problem with the buttons. Can someone explain me how to set in glade an action for a button? i mean, i wrote a function in my code but i don't know how to associate it to the graphic... i set i the Signal box the GtkButton activate and i chose "on_b...

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 now that the computers this program will be running on will be very slow, maybe 600mhz and 128-256mb ram so flash just isn't going to cut it...

Using custom widgets with glade / Gtkbuilder

Hi all. 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 from a GtkBuilder definition. Does anyone know how? ...

Linux / C++ Help with glade3 and gtkmm

Here is a C application source code, which creates GUI using Glade3 and GTK2+: // gcc -o simple simple.c $(pkg-config --cflags --libs gtk+-2.0 gmodule-2.0) #include <stdio.h> #include <stdlib.h> #include <string.h> #include <gtk/gtk.h> GtkBuilder *builder; GtkWidget *window1; G_MODULE_EXPORT void on_window1_destroy (GtkObject *obje...

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 cells should be editable directly in Glade in cellrenderer properties, or do I have to specify it in my code? I use Glade 3.6.1 I have just fo...