Tagged Questions
GTK+ is a highly usable, feature-rich toolkit for creating graphical user interfaces (GUIs) that boasts cross platform compatibility and an easy to use API.
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 ...
17
votes
8answers
2k views
What should I choose: GTK+ or Qt?
Can someone suggest what's the best uses for those libraries today? Is it just GUI, or do they have database, XML, networking, threading, etc support too?
I was reading about them, and considered ...
14
votes
8answers
12k views
showing a message box from a bash script in linux
I'm writing a few little bash scripts under Ubuntu linux. I want to be able to run them from the GUI without needing a terminal window to enter any input or view any output.
So far the only input ...
13
votes
1answer
405 views
Has threading in GTK w/ Python changed in PyGObject introspection?
I'm in the process of converting a program from PyGTK to PyGObject introspection for the first time and I've hit a roadblock with threading. I have a process that takes some time to complete, so I pop ...
13
votes
3answers
4k views
How to integrate Boost.Asio main loop in GUI framework like Qt4 or GTK
Is there any way to integrate Boost.Asio with Qt4 (prefered) or GTK main loop?
GTK provides poll(2) like API so technically is should be possible. Qt provides its own networking layer, however I ...
13
votes
3answers
2k views
Vala (C#-like language) compiles to C?
I'm a C# developer who stumbled across a new programming language for linux called vala. It has almost exactly the same syntax as C#, which is awesome. I never really was a big fan of Mono. This ...
11
votes
2answers
624 views
How to change the highlight color in autocomplete box in Eclipse
I can't find a way to change the color of the highlighted selection in the autocomplete box in Eclipse.
As you can see from the screenshot white text on light gray background is not very readable.
...
10
votes
11answers
10k views
How to do GUI for bash scripts?
I want to make some graphical dialogs for my script but don't know how.
I hear something about GTK-Server or something like that.
If someone knows how to link Bash with tcl/tk I also be satisfied.
...
9
votes
7answers
4k views
GTK+ or QT under Windows
I was wondering which one should I consider if I need the software to be used on both platforms, WIN and Linux and why?
8
votes
0answers
62 views
Sometimes GTK modal dialogs are not modal — bug or feature?
When I create a custom dialog in GTK (both, GTK2 or GTK3) and set it to be modal, all input to other windows of my application is ignored. This works nearly always, but it fails under certain ...
8
votes
2answers
3k views
Which GUI toolkit for Go language?
I'd like to learn go language and I want to rewrite a FOSS fractal program I did in Delphi many years ago.
So to catch two birds with a stone, I need to choose a gui toolkit. I develop in Linux but ...
8
votes
2answers
2k views
How do I get my Emacs to *always* use 6x13 on X11
I recently declared .emacs bankrupcy and reorganized my init stuff. In
the process, I ripped out all the hacky font selection stuff I had
accrued over the years, figuring there are probably easier ...
8
votes
2answers
1k views
How can I determine the display idle time from Python in Windows, Linux, and MacOS?
I would like to know how long it's been since the user last hit a key or moved the mouse - not just in my application, but on the whole "computer" (i.e. display), in order to guess whether they're ...
7
votes
2answers
74 views
Automatically sizing a GtkTextView in a GtkScrolledWindow
I work on gschem, a free software tool for editing electronics schematic diagrams. Recently we have encountered a problem using a GtkScrolledWindow containing a GtkTextView.
Context
Recent versions ...
7
votes
1answer
115 views
Suppressing Valgrind errors from GTK+
I have an application that uses GTK+ and Glade; running Valgrind with the memcheck tool outputs about 2,000 errors. Does anyone have a good suppression file they can share for GTK applications?
I ...
7
votes
2answers
254 views
How to create a login-screen replacement for Ubuntu
I'm interested in writing a replacement login screen for Ubuntu that would present the user with a puzzle rather than prompt for a password. I'm looking for some advice on how to go about creating ...
7
votes
1answer
232 views
Resizing gtk TreeView in HPaned problem
I have a treeview in the left side of an hpaned but when I try to move the bar to the left to make the treeview smaller than its automatic size instead of resizing the treeview it expands the entire ...
7
votes
1answer
332 views
How to directly write to display buffer in GTK/GDK
I have a program that displays an animation with a fixed frame rate (say 30 fps) in a window.
Currently I use SDL but unfortunately it lacks desktop integration(like drag & drop) and now I want ...
7
votes
0answers
414 views
Programmatically open Mac Help menu
I'm integrating a GTK# application into Mac OS X. GTK on Mac OS X is a wrapper over some Cocoa and Carbon fundamentals. We have some platform-specific stuff directly using Carbon global menu APIs ...
7
votes
1answer
384 views
GTK and PYGTK difference
many programmers import both gtk and pygtk in this way:
import gtk
import pygtk
I have created a simple program using only gtk and it works:
import gtk
window = gtk.Window()
...
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, ...
7
votes
6answers
2k views
pyGame within a pyGTK application
What is the best way to use PyGame (SDL) within a PyGTK application?
I'm searching for a method that allows me to have a drawing area in the GTK window and at the same time being able to manage both ...
7
votes
3answers
3k views
GTK implementation of MessageBox
I have been trying to implement Win32's MessageBox using GTK. The app using SDL/OpenGL, so this isn't a GTK app.
I handle the initialisation (gtk_init) sort of stuff inside the MessageBox function ...
6
votes
1answer
87 views
Display image without gtk
I would like to display an image in Python using gstreamer bindings, but without using GTK+ (I'm on ARM).
I know how to listen to music with python and gstreamer :
#!/usr/bin/python
# Simply ...
6
votes
2answers
375 views
6
votes
2answers
176 views
image loading performance problems with python and gobject
I have a script with a GTK(GObject) interface I use for posting to my photo blog.
I'm trying to improve it's responsiveness by loading the images in a background thread.
I've had no luck trying to ...
6
votes
1answer
337 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
2answers
164 views
Undergrad Computer Science student in need of C tutorials
Until recently most of my programming knowledge has been self-taught (I am proficient in Java and Python.) However, I would like to learn more low level languages, like C (I'm not even considering ...
6
votes
2answers
287 views
GTK theme engine: where to start?
I would like to start coding a gtk theme engine, but i'm wondering where i can find some documentation, if any exists.
I know how to have look at someone else engine's code, examples, or torture tests ...
6
votes
3answers
466 views
twisted + gtk: should I run GUI things in threads, or in the reactor thread?
From what I understand about twisted, nothing running in the reactor thread should block. All blocking activities should be delegated to other threads, to fire callbacks back into the reactor thread ...
6
votes
6answers
634 views
How would you build a “pixel perfect” GUI on Linux?
I'd like build a GUI where every single pixel is under my control (i.e. not using the standard widgets that something like GTK+ provides). Renoise is a good example of what I'm looking to produce.
Is ...
6
votes
1answer
944 views
Authenticating GTK app to run with root permissions
I have a UI app (uses GTK) for Linux that requires to be run as root (it reads and writes /dev/sd*).
Instead of requiring the user to open a root shell or use "sudo" manually every time when he ...
6
votes
4answers
2k views
How do I render *parts* of a svg file?
I want to render parts of a svg file by name but for the life of me I cannot figure out how to do so (using python + gtk).
Here's the svg file in question: ...
6
votes
4answers
1k views
Is Perl a good option for writing platform independent desktop applications?
Is Perl a good option for writing (possibly and partially) platform independent desktop applications? I know there are interesting widget libraries like GTK2 Perl and wxWidgets but I'm not familiar ...
6
votes
3answers
255 views
Can you cast a pointer to a function of one type to a function of another type that takes additional arguments?
Can you cast a function pointer of this type:
void (*one)(int a)
to one of this type:
void (*two)(int a, int b)
and then safely invoke the pointed-to function with the additional arguments(s) it ...
6
votes
3answers
3k views
Run a function every X minutes - Python
I'm using Python and PyGTK. I'm interested in running a certain function, which gets data from a serial port and saves it, every several minutes.
Currently, I'm using the sleep() function in the time ...
6
votes
10answers
589 views
PHP desktop applications
I have quite a few years experience of developing PHP web applications, and have recently started to delve into Python as well. Recently I've been interested in getting into desktop applications as ...
6
votes
3answers
1k views
What is the fasted way to draw an image in Gtk+?
I have an image/pixbuf that I want to draw into a gtk.DrawingArea and refresh frequently, so the blitting operation has to be fast. Doing it the easy way:
def __init__(self):
self.drawing_area = ...
6
votes
3answers
402 views
How up to date is OpenStep as a development Environment?
Long time ago, the Game Developer magazine published an article about ID Software and their DOOM game. In the article ID states that they used a NeXT Step machine for development with GNU GCC cross ...
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 ...
6
votes
6answers
1k views
How do I coherently organize modules for a PyGTK desktop application?
I am working on a desktop application in PyGTK and seem to be bumping up against some limitations of my file organization. Thus far I've structured my project this way:
application.py - holds the ...
6
votes
4answers
15k views
How do you find out which version of the GTK Ubuntu is using?
I need to determine which version of GTK Ubuntu is using.
Man does not seem to help
6
votes
3answers
2k views
How do I create a new signal in pygtk
I've created a python object, but I want to send signals on it. I made it inherit from gobject.GObject, but there doesn't seem to be any way to create a new signal on my object.
5
votes
1answer
123 views
Stop a Python program until a user performs an action
My original program used input, like this:
n = input("Enter your favorite number: ")
# do stuff with number
Now, I have switched to a GTK GUI, but still want the accomplish the same thing. Now look ...
5
votes
2answers
3k views
Where can I download precompiled GTK+ 3 binaries or windows installer?
I have taken a look at GTK+3 and I like it. But unfortunately compiling from source has never worked for me. Is there any okace with decent binaries or even better, a windows installer?
5
votes
2answers
197 views
Gtk Terminal Widget
Simple question: Is there a linux-style terminal widget for GTK? Preferably for Haskell, too, as I want to use gtk2hs
5
votes
1answer
425 views
use the system monospace font in gtk textview
I would like to have a GtkTextView in my (Python) program which shows text with the system monospace font. I found many ways which use an expicit font family name and size. However, I would like to ...
5
votes
2answers
438 views
Comparison of GUI developing tools for linux
I am fairly new in the domain of GUI designing and development. I do have some prior experience but that is with Visual Basic.
I would like to develop a reasonably comprehensive (though not ...
5
votes
1answer
526 views
gtkD: Minimal Drawing Example?
I'm a fairly experienced programmer, but new to GUI programming. I'm trying to port a plotting library I wrote for DFL to gtkD, and I can't get drawings to show up. The following code produces a ...
5
votes
3answers
945 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 ...