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.

learn more… | top users | synonyms

7
votes
2answers
73 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 ...
6
votes
8answers
210 views

How much of an increase in size do inline functions cause?

I have recently started making a C++ Wrapper of GTK+ (Nothing special, just wrapping everything into C++ classes for easy development, to be used in-house) and to cause minimum performance bloat to ...
6
votes
2answers
373 views

How can I use GTK3 with perl?

How can I use GTK3 with Perl? Is it already possible?
6
votes
1answer
218 views

Using Vim warning style in gVim

When for example an edited file is changed outside of Vim, Vim issues a warning and offers to reload the file. In command line Vim a green text on the bottom appears, but in gVim there is a GTK+ ...
6
votes
5answers
2k views

Gtk+ vs Qt language bindings

Put shortly: For those familiar with language bindings in Qt and Gtk+. E.g. python and ruby. Are there any quality or capability difference? More background: I know C++ and Qt very well. Minimal ...
5
votes
1answer
230 views

Get GTK+ theme colors with python and GObject introspection

With introduction of GObject introspection the way to access theme colors through widget.get_style() method is gone. I am interested on how to get theme colors when GTK+ is used through GOBject ...
5
votes
1answer
310 views

GTK+ Filechooser to open both files and folders

How do I get my filechooser to be able to select both files and folders when the open button on the filechooser dialog is hit ? I want to squeeze the ability to open files and filders in just one ...
5
votes
5answers
610 views

What is this character ` called?

I never noticed the character ` (the one in the same key as tilde ~). There is another single quote character ' in the same key as ". I see that the characters ` and ' aren't interchangeable whereas ' ...
5
votes
3answers
185 views

Where is a good place for a code review?

A few colleagues and I created a simple packet capturing application based on libpcap, GTK+ and sqlite as a project for a Networks Engineering course at our university. While it (mostly) works, I am ...
5
votes
4answers
710 views

Why use glib functions?

While programming in C and GTK+, Why is it "better" to use g_strdup_printf, g_free, g_strcmp0 etc... and fellow glib functions? Merci!
4
votes
3answers
876 views

Ruby bindings for GTK+ 3?

I’ve spent some time learning Ruby, and I wanted to move over to some GUI programming. GNOME 3 is the environment most appealing to me at the moment, so I thought I would have a look at GTK+ 3. ...
4
votes
1answer
216 views

Segmentation fault when enabling optimization in a simple GTK+ application?

Might be that it is too late, but I find it at least curious that the following few lines seem to be causing a segmentation fault if and only when compiled with gcc's optimization, even "-O1"! ...
4
votes
1answer
319 views

How to set a fixed windows size in GTK and C

How do I set in GTK+ a fixed window size. I have: gtk_window_set_default_size(GTK_WINDOW(mainWindow), 400, 300); gtk_window_set_policy (GTK_WINDOW(mainWindow), FALSE, FALSE, FALSE); but the window ...
4
votes
5answers
2k views

import gtk/glib produces ImportError: DLL load failed

I installed the latest versions of python (2.6.5), gtk+, pygtk (and friends) from their respective websites on Windows XP SP3. When you try to import gtk (or just glib for that matter), an ImportError ...
4
votes
5answers
4k views

The best ide for gtk+ programming

Recently i start to studying C/gtk+ programming. And want to ask one question: how do you think, what is the best ide for C/gtk+ development? Thank you.
3
votes
0answers
52 views

Repeated window invalidation in GTK+: failure after several steps

I have a timer which calls a method (perform_step) every second. perform_step does some computation and invalidates my window. This works well initially but after a small number of iterations the ...
3
votes
2answers
154 views

What is the Gtk event called when a window minimizes?

If I want some function to be called when a window gets closed I connect with delete_event. What should I connect with if I want the function to be called when the user minimizes a Gtk Window. ...
3
votes
2answers
153 views

Desktop integrated application (desktop widget like)

i'm currently playing with the idea writing a desktop-integrated application for my personal system, which should act similar like usual desktop widget engines (screenlets, gdesklets, google gadgets). ...
3
votes
1answer
209 views

What is wrong with my Windows GTK+ for Python installation?

Getting pretty frustrated with this. I installed pygtk 2.24, pycairo 1.8.10, and pyobject 2.28.3 all for my 32 bit system and my installed Python version of 2.7. I have GTK+ installed and working. ...
3
votes
1answer
160 views

Installing GTK2 in windows !

I am trying to install GTK in windows and use GLADE develop GUI interface. For GTK i need to install Glib, which is creating a problem for me. I am trying to do: perl Makefile.pl dmake dmake test ...
3
votes
1answer
794 views

How to install GTK+/PyGTK on OSX?

I'm trying to install PyGTK on OSX 10.6 (snow leopard). I have followed this topic Where is PyGTK for Mac OS X?. When I run the last command : ~/.local/bin/jhbuild build meta-gtk-osx-python I have ...
3
votes
1answer
401 views

GUI cross-development in OCaml with natural look and feel

I would like to build a GUI for an OCaml application I'm writing. My first idea was to use GTK+. I would like my application to run on Macs, Linux, Windows with a natural look and feel. I know that, ...
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
1answer
101 views

Does pygtk support absolute positioning?

I just want to put an Image on a screen given the X and Y.
3
votes
2answers
507 views

How to grab 'key-press-event' when the window is not focused?

I am writing a program using gtk. What the program does is monitor the keystroke the user entered and play a sound. My question is that how do I catch the key-press-event when the window is not ...
3
votes
2answers
141 views

What can I do with Seed?

I found Seed, which is basically a JavaScript environment and binding for programming GTK+. Are there any limitations compared to using e.g. C and C++? Are there any major speed concerns?
3
votes
3answers
1k views

Totally fed-up with get Gtk widget height and width

Trying to get Height and Width of GtkEventBox. Tried following Things. GtkRequisition requisition; gtk_widget_get_child_requisition(widget, &requisition); // Getting requisition.height 0 ...
3
votes
1answer
279 views

How to copy or duplicate gtk widgets?

How to copy or duplicate gtk widgets? In my application I have one huge GtkComboBox created with one long for loop which eats up so much of time and I am using this combo at two places in one single ...
3
votes
4answers
328 views

C code compilation failure

i have this makefile below and in it my includes are gtk/gtk.h and webkit/webkit.h but when i try to build the project using the make command i have the errors error: gtk/gtk.h: No such file or ...
2
votes
2answers
93 views

Compiling 32-bit GTK+ Applications of 64 bit Linux

I am having some trouble compiling 32-bit GTK+ applications on 64-bit Linux, specifically Ubuntu 10.04. Compiling 64-bit GTK+ applications works fine, and everything is set up to compile 32-bit apps ...
2
votes
1answer
83 views

Embedding SDL into GTK+

I have an application that uses GTK+ to display some nice GUI, but I am using SDL to display a small RGB frame buffer inside GTK+ I have used the following code to get SDL into GTK+: char ...
2
votes
3answers
96 views

Calling method using main thread from secondary thread

I have called a method using a secondary thread. From inside the method i need to call a method from main thread. here is the structure void main_thread_method() { } void ...
2
votes
1answer
48 views

Is PHP-GTK being used at all today? if yes what is it being used for or can be used for?

I dont seem to see any popular php based tutorial sites ever talking about GDK. Is it even being used? If yes what is it that can be made? the way i see it is I have the ability to build a Linux ...
2
votes
1answer
89 views

How to “disconnect” an accelerator , key-press-event or mouse-press-event in a GTK+ Widget?

Say I have a custom GTK+ widget obtained from a third party library. It has an accelerator, e.g it hides itself when I press 'h' or click it, and shows itself when I press 'h' again or double-click ...
2
votes
1answer
49 views

How do you make a Caption Less Window in Gtk?

I want to make a Window in Gtk (Gtk# to be specific, but GTK+ or any other binding will do, the functions are generally the same) without a caption. Kind of like Mozilla Firefox 4 and Google Chrome. I ...
2
votes
2answers
76 views

How to display a PostScript file in GTK+?

Does anyone know how to take a PostScript file and display it in a GTK+ application? I've been trying to use ImageMagick++ to open a PostScript file (which it does just fine), and then somehow open ...
2
votes
5answers
123 views

A GUI Question: Dynamic Modular Panel Layout?

I am a student working on a college engineering project team. Our software subteam is looking to create a modular GUI that allows for real time reconfiguration through snapping panels that the user ...
2
votes
1answer
73 views

How Can I use the GtkPlug/GtkSocket in GTK+

I'm a newbie to GTK+, I want to use GtkPlug/GtkSocket to embed another application with my application. I referred to Devhelp, but only a few introduction about these two class. I also searched many ...
2
votes
1answer
124 views

deadlock problem with threads in GTK

In my GUI, I have a list store treeview in my main window. When the user double clicks a row, a dialog pops up. The problem is that the data I populate in the dialog box takes a while to process, so ...
2
votes
3answers
259 views

Embed a web browser in a cross platform Gtk application

I need to embed a very simple browser ( can parse HTML, and JS Ext ) in a Gtk Widget hopefully in gtkmm. I looked into gtkmozembed, but the c++ wrapper is very out dated, so I tried to just write it ...
2
votes
1answer
173 views

How to use GTK+ with ada

Anyone can show me some examples, simple, how to use GTK with Ada? examples, like: How to use Glade with Ada, create an simple window.... an simple window, like this: #include <gtk/gtk.h> ...
2
votes
2answers
152 views

Customizing GtkFileChooser

GTK+ noob question here: Would it be possible to customize the GtkFileChooserButton or GtkFileChooserDialog to remove the 'Places' section (on the left) and the 'Location' entry box on the top? What ...
2
votes
1answer
86 views

How do I find out programmatically which GTK+ theme and engine are being used?

The Murrine engine hard-codes some behavior that I need to duplicate in my own code, so I need to find out whether the Murrine engine is being used, or some other one. How can I do that? Which config ...
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
108 views

C GTK+ periodic event to update the UI

How can I update a GTK+ interface on a periodic event. For example, let's say I wanted to update a text field containing the time every 200 milliseconds. How is this typically done? Update: ...
2
votes
1answer
85 views

MonoDevelop not support display Thai font

I'm now learning iPhone development with Monotouch and use Mono Develop for IDE. Everything works fine and I'm going to buy a license for MonoTouch. However, the IDE can not display Thai text ...
2
votes
2answers
160 views

Capture ALT+F4 inside a GTK application

Is there any way to capture shortcuts as ALT+F4 and CTRL+ALT+DEL within a GTK Ubuntu app? I intend to make a kiosk aplication and I'd like to avoid these keys from my app not at OS level to avoid to ...
2
votes
1answer
149 views

Finding children of a GtkWidget

I need to be able to explore a GTK GUI's structure programmatically. I have the GtkWidget and I want to find any children of that widget. Now I know that GtkContainer's have a function to find ...
2
votes
1answer
670 views

Qt vs GTK+ performance

Is there anybody compared the performance of Qt apps and Gtk+ apps in different platforms? e.g.:create the same layout windows or paint the same 2D/3D graphics with 1000 times.
2
votes
1answer
228 views

Accessing DOM elements in Gtk+ with Webkit < 1.3

I'm using the Gtk+ Webkit bindings to load a page in a WebKitWebView, and I need to access the content of a DIV element on the loaded page. Until just now I was developing on an Ubuntu Natty machine ...

1 2 3 4 5 8