Questions tagged [glade]

Glade is a visual user interface designer for the GTK+ toolkit and the GNOME desktop environment.

User interface description files are saved as GtkBuilder XML files, which can then be easily loaded into a GTK+ app written in C, C++, C#, Vala, Java, Perl, Python, and others.

Although primary used on Linux, binaries are also available for Windows and Mac, and GTK+ apps developed with Glade can be written to run unmodified on Linux, Windows, and Mac.

Glade is Free Software released under the GNU GPL License

907 questions
0
votes
1 answer

WARNING **: Couldn't find pixmap file

Working with Windows Vista. I wrote the rough interface out with Glade so I am working from that source. GTK 2.0. When I compile & run I get the above error. Is there a way to absolute path images? If not how in the world do I find it? I tried…
Steve Ge
  • 1
  • 1
0
votes
1 answer

PyGTK/Glade keep button size standard

I have a simple pygtk/glade window with a menu and a 3x3 grid. Each row of the grid consists on: two labels and a button. When the Window is resized, the labels holds the same font size, but the buttons get resized, and they could become HUGE if the…
jeanc
  • 4,563
  • 4
  • 22
  • 27
0
votes
2 answers

How to change the defaults alignment to left in pygtk?

Every program that I'm making using pygtk is right-alignment by default (maybe because my default language is right to left language?) How can I change it?
Jah
  • 1,019
  • 1
  • 11
  • 25
0
votes
2 answers

How can I assign widget objects created with Gtk.Builder to my class attributes using widget IDs as names?

In my __init__ function I'm trying to do: builder = gtk.Builder() builder.add_from_file('main.glade') builder.connect_signals(Handle()) self.list = builder.get_objects() Now I want to add attributes to my class for all the widgets in my gui for i…
cpunkzzz
  • 1
  • 1
-1
votes
2 answers

How to run a function in another thread in gtkmm?

I want to make a useful application with gtkmm/glade and I need to pass a simple Button-signal to another thread. But unfortunately, I don't know how to do this. I made a small piece of software for a better demonstration. which is a button and a…
Ali
  • 7
  • 5
-1
votes
2 answers

Plotting by Using gnuplot and Glade

I am a new programmer. It is not my job but i want to learn python. I am a Windows 10 user and I am using the folllowing programs: Python 3.8 Gtk+ Glade Gnuplot Pycharm. I have installed the first 4 programs by using msys2 and Pycharm as…
onur
  • 1
  • 2
-1
votes
1 answer

Python, Glade, GTK+

I am struggling with my GTK GUI... I made a GUI for lights and etc and so far "everything" works but I can't figur it out for a timer that will start the lights on a given time and end it. The left spinbutton is for the "start Hour" and the right…
kevekop
  • 3
  • 2
-1
votes
1 answer

How to use a dialog without buttons in glade and pygtk?

I'm using a platform called 'Quickly' in Ubuntu, basically it helps to make the base for view and programing, but my program needs to open a new window, and with Quickly I just can open a Dialog, but the dialogs with glade already have two buttons…
Jose Palazuelos
  • 137
  • 2
  • 7
-1
votes
2 answers

Python : How to deal with threads priority in Gtk3

I am building an user interface using Python, Gtk3 and Glade. I want to change several things on the UI at the same time (i.e start an animation and display a new text) which leads to the application freezing. I have read that Gtk wasn't thread safe…
M.Brbr
  • 83
  • 7
-1
votes
1 answer

gtk glade aide : Destroy Signal problems

After generating my simple glade that just opens a signal I want to connect it with my .c for the destroy signal to apply, but always get the exception "we could not find a signal handler" on_window_main_destroy " can anyone figure out where the…
-1
votes
2 answers

Automatically generate gtk callback functions

I just started using Glade 3.8.5 on Slackware 14.2. I have successfully created a simple window with a callback handler for the "destroy" signal. This is fine for a small and simple tutorial. However, it can be tedious to implement all callback…
user4918296
-1
votes
1 answer

Python program 'module' object has no attribute 'required_version'

Working with some people to build a fake news detecting program and have made some great progress but out of 5 members of the group only 1 person can run the python program. I am running a clean install of Ubuntu 16.04 that is only a few hours old…
Neil Boyd
  • 1
  • 2
-1
votes
1 answer

Python+Glade Set Label text

I have a little python script with a Gladefile but my code i not doing was i wanted it to. There several issues that i can't solve. Just trying to get a date/time written on my label "DK_Tid". But I get an error: self.DK_Tid.set_text(dk_time) …
RAJensen
  • 65
  • 1
  • 8
-1
votes
1 answer

why gui made with glade not showing persian words properly?

I want to show data from sqlite3 db to python gui made with pygtk and glade. the problem is persian words from glade and sqlite db both are in irregular form. any idea? app GUI (all words are in Persian)
-1
votes
1 answer

how to remove error "passing argument 1 of ‘gtk_entry_get_buffer’ from incompatible pointer type"

I am new to GTK and GALDE. I am making a normal GUI in which I have one start button and one update button, so that if I click on start button, start should be displayed in text entry and same for the update button.I am using text entry and its…
user46573544
  • 137
  • 3
  • 4
  • 13
1 2 3
60
61