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 (1)

0
votes
0answers
3 views

Useing Gtk.spinner with a long time function

I am trying to get working a gtk.spinner using Pygobject in python. The main thing is that I use this element to show the user that a long time action is in progress. The problem is that the spinner ...
2
votes
1answer
35 views

Memory Leaks in GTK hello_world program

So... I'm trying to eliminate some memory leaks from my GTK+ 3 program. I though it would be a good idea to look back at some simple examples to see if there is some cleanup stuff I'm forgetting, but ...
0
votes
4answers
84 views

why segmentation fault?

Im style having problems in my GTK program ...and this is 1 of em . i can't determine the exact mistake i made here so that when i click encode(or decode) button i get error message:segmentation ...
0
votes
0answers
9 views

altering GTK::Image using GTK::pixbuff. Image is not redrawn. (solved)

I'm trying to make the pixels of a png file visible which where hidden by setting the alpha value to 0. I've bound the following code to execute when a button is hit: uint32_t width, height, i; ...
0
votes
1answer
14 views

Using a GTK window and waiting for the response

I am using PyGTK inside another application to take user input. I am building an window which has lots of Check Buttons and according to response I need to go ahead. The problem is that in python ...
0
votes
0answers
14 views

Setting up GTK+ with DEV-CPP 4.9.9.2

I am trying to set up GTK+ with DEV-CPP 4.9.9.2. I have been following this tutorial. I have included the additional command line options found using pkg-config --cflags gtkmm-2.4 > cflags.txt ...
0
votes
1answer
22 views

“Assertion `cr != NULL' failed” when working with Cairo.context from different objects

My program consists of 3 classes. Gtk and Cairo.Context are instantiated in one of them. Other two classes work with this context, passing it around and drawing stuff on it. However, when I try to ...
0
votes
1answer
12 views

How do you save a gui to file in GtkD?

GtkBuilder lets you load a GUI from a file, but how do you do the opposite? What I'd first like to do is save the position and size of the main window and upon starting up the app setting the main ...
1
vote
0answers
14 views

Embedding an IPython shell in a Gtk+ program

I'd like to embed an IPython shell inside a graphical Gtk+ program. The traditional IPython embedding API is geared towards console usage. It should be possible to export program variables to the ...
0
votes
1answer
24 views

Theming GTK CSS doesn't work properly

I have a Python/Gtk+3.0 application with the following layout Gtk.Window Gtk.Box CustomClass : Gtk.ScrolledWindow Gtk.ViewPort # created automatically Gtk.Grid Gtk.Box # ...
0
votes
0answers
8 views

How can I get the tooltip text of a process in Ubuntu 12.04?

I have a process with a icon when it's running. I can see the tooltip text if I move my cursor over the icon. But I want to read that text in my code. So if I know the PID or name of that process, is ...
0
votes
1answer
24 views

Using glib and gtk+ to control ftdi device over USB

I am developing a simple application in C with GTK+2.0 GUI, on Linux of course, this application is designed to control a device which is connected over the USB port and is using FTDI driver to ...
1
vote
2answers
25 views

Trying to populate a GtkComboBox with model in C

I'm really new to C and GTK+ so my problem might be painfully obvious. I have tried to follow examples and tutorials found all over the net. I want a combo box with three values, the middle one being ...
0
votes
0answers
17 views

case-insensitive text search using gtk 2.2, python

I checked all the flags that can be passed to forward_search/backward_search method of gtk2+, but I could not find a way to search text case insensitively for my application written in gtk2+ python. ...
0
votes
0answers
11 views

How to combine notifications and GTK tray object properly in Python?

I'm writing a small python-tray-app which gets some data from a server every n seconds and pops up an notification when new data received.. What I can't figure out is why the notification takes over ...
0
votes
1answer
15 views

Gtk Widget for Suggestion

Which gtk widget should I use for achieving this functionality:
1
vote
2answers
30 views

thread getting stuck (python)

Basically I have a program that starts a new thread, then tries to do stuff in this new thread. However, the new thread seems to get stuck until the main thread reaches the end of the program. here ...
2
votes
0answers
58 views

What are the limitations of buffer size of textBufferSetView in haskell using gtk?

What is the buffer size? I can set a buffer to take in VC "Cons" [VC "Z" [],VC "Cons" [VC "S" [VC "Z" []],VC "Cons" [VC "S" [VC "S" [VC "Z" []]],VC "Cons" [VC "S" [VC "S" [VC "S" [VC "Z" ...
0
votes
0answers
29 views

GtkD noob: Executable broken after linking with GtkD.lib

I've installed all combinations of GtkD with the Gtk-Runtime found here: https://code.google.com/p/gtkd-packages/downloads/list except for trying GtkD 1.7.2 because it had errors on build. My setup ...
0
votes
1answer
16 views

I'm trying to build a GTK app with Glade - is there a Python text-editor widget I can insert into my UI?

I want to build an application which will have an input field where a user can type in a very small fragment of Python code. Rather than use a dumb text-input field I'd like to use something that is ...
1
vote
3answers
21 views

How to convert .glade file to python class?

I'm learning the Python and now I'm trying to choose cross-platform-GUI-framework. As I see, the PyGTK is the best one, which fits my goals completely. The only question: is there any analog of ...
1
vote
2answers
83 views

Is mono still suitable for a Linux Desktop Application [closed]

I want to make a Desktop App for Linux and I'm wondering if C#/mono is still suitable for that. Do they plan to make a wrapper for GTK 3? Or is Qyoto a better choice? Also, I'm wondering if GTK is a ...
0
votes
0answers
19 views

GTK2{NOTEPAD} in BASH(ubuntu-10.04)::redirect VALUES(RC) in HASH using BASH FUNCTION

General_::Using GTK2 calling by bash V>=4.0 Specific__:: Using a GTK{notepad}, collecting some Parameters and show output on last page of notepad. Using a Hash (declare -A HxDATA) saving all ...
1
vote
1answer
23 views

Call to undefined function curl_init() PHP-Gtk [duplicate]

What I'm trying to do is creating a time tracker track time and saving it to server via curl remaining part of application works fine but when I'm calling curl to submit time it shows me error "Call ...
1
vote
0answers
24 views

How to use a custom font in a GTK app

I have a font file /path/to/app/fonts/custom-font.ttf and I want to use it. How do you import a custom TTF for use in a GTK+3.0 app? from gi.repository import Gtk, Pango # ... lbl = Gtk.Label() ...
-1
votes
1answer
24 views

Application crashes after adding elements to TreeView/ListStore

My program is working fine when adding small number of files but crashes when list of files >500. The error: The program 'gui.py' received an X Window System error. This probably reflects a bug in ...
1
vote
2answers
50 views

Add tooltip to GtkButton

I want to add a tooltip to a GtkButton. This seems like an easy thing to do, except I have no idea why is not working. What I have: 1) GtkButton* button = gtk_button_new_with_label("button"); ...
0
votes
1answer
36 views

Right align in spin button (gtk/C)

I am writing GIMP plugin in C and need to right align a number inside a GTK+ spin button. I found out about gtk_button_set_alignment() but nothing like gtk_spin_button_set_alignment() seems to exist. ...
0
votes
2answers
25 views

gtk+ crashes on calling any cairo drawing function

Sorry for my bad English. I am learning gtk+ 3 as a "helloworld" by following this article https://developer.gnome.org/gtk3/stable/gtk-getting-started.html My environment: * Mac OS X 10.8.3 * ...
0
votes
0answers
42 views

unable to add a border around gtk label

I try to put a solid border around a gtk_hbox. My application is split in 2 parts : a drawing aera at the top and at the bottom, a dialog with 6 labels (gtk_hbox). I would like to add a border around ...
0
votes
2answers
15 views

GLib-GObject-CRITICAL **: g_signal_handler_disconnect: assertion `handler_id > 0' failed

What generally causes this? What strategies can I use to track the problem down? I have 6 buttons in a glade (gtk3.0) file - I see 6 warnings..., initially I wasn't getting these errors unitl after ...
0
votes
0answers
14 views

Segfault in gtk_text_buffer_get_end_iter

in my GTK+ program, I get a segfault in gtk_text_buffer_get_end_iter. I get the buffer and set it's contents using: GtkWidget* view = gtk_text_view_new(); GtkTextBuffer* buffer = ...
1
vote
2answers
49 views

Change G_PARAM_CONSTRUCT_ONLY property via inheritance

I try to inherit a gobject and, among other things, would like to change the value of a G_PARAM_CONSTRUCT_ONLY property so the next child class doesn't have to care. Here's an example to depict this: ...
1
vote
1answer
41 views

Build complex layout in a dynamic list/grid

I'm building a simple app with python3 and GTK3.0 looking for the correct element for display a layout like the following image I need display N items this items are load from a database (can be ...
0
votes
2answers
15 views

Put a label beside a text entry in python gtk

So I'm trying to build a pretty basic GUI using python GTK, but I'm getting frustrated very quickly. How do I put my label beside my text entry? How can I make the entry smaller? The button smaller? ...
2
votes
3answers
47 views

GtkEntry change text on user input

In a gui I want to modify the text a user inserts in a GtkEntry. eg if the user enters 'joHn doe', my gui should see this is not a nicely formatted name and changes this into 'John Doe'. I connect ...
0
votes
2answers
85 views

Calling C++ from JavaScript / HTML using GTK+ Webkit Webview (and Qt WebKit bridge)

I am currently evaluating different approaches / solutions to call C++ functions from JavaScript code embedded in an HTML page. The application must be run on Ubuntu Server 12.04 LTS. I am not an ...
1
vote
1answer
31 views

clutter stage in gtk can't not handle stage mouse press event

I have tried to use the clutter-gtk. I wrote a small piece of code that create a gtk window with a clutter stage in it. I try to get mouse button press event on the stage but there is nothing. Here ...
0
votes
1answer
33 views

Compilation error with makefile and gtk+

I have a big problem with gtk+ When i compile with my makefile, i have : gcc Affichage.c -W -Wall `pkg-config --cflags --libs gtk+-2.0` ...
1
vote
1answer
48 views

getting GtkTressStore parent from child in python

I've got this hierarchy in GTKTreeView -Title ---Header ------numbers a ------numbers b ------numbers c when I click on a number I want to print out the header To get the parent of a child I use ...
1
vote
0answers
36 views

GTK+ SpinButton value is always min

I'm currently working in an assigment using GTk+ on Linux. My question is very very simple: I have two SpinButtons, defined as such: void editor_pedir_datos(GtkWidget * ventana, gpointer ...
0
votes
0answers
16 views

GTK 2.22 with Visual Studio 2010

I'm trying to compile a VS 2010 project that uses GTK2.22. I added the all-in-one packages, include paths and libraries but there is still over a thousands errors. As an example, here are a few of ...
0
votes
1answer
47 views

Map a key press to a button click in Gtk Python

I want a key press to be mapped with a button click function in Gtk-python, i.e. if Enter key is pressed, the data-process function should execute, which is called by pressing the process button. Can ...
0
votes
1answer
31 views

Multiple buttons to call same function in python Gtk

I am developing a small application using Gtk-Python, in which i have some 10 to 20 buttons, and when any of them are clicked, i want the value of the button to be appended in the text box I have done ...
0
votes
0answers
39 views

GTK rendering using cairo gles

I have successfully changed the backend of cairo that GTK uses to GLES(in the X11 window implementation). I am using a eglWIndowSurface for every gdkwindow. The problem I am facing is that because GTK ...
1
vote
0answers
11 views

TK-“Canvas” like widget that renders shapes

I want to draw some objects in my Gtk+ application, and let the user interact with them. I know about draw (expose) events and cairo drawing, and have used that before, but now I'm looking for ...
0
votes
1answer
30 views

Is it possible for a gtk_menu_item to act like a button and throw a signal for a callback?

I have a gtk_menu_bar and one of the gtk_menu_item must, instead of dropping down a submenu, throw a signal for a callback. Is this possible? I have tried adding a gtk_event_box, but the menu bar ...
0
votes
1answer
32 views

How to print R results in an updatable graphics device?

I'm working on a project involving time series analysis and to make it more user friendly for people not keen on R I'm working on GUI through the packages gWidgets and RGtk2. I've already set up an ...
-1
votes
1answer
18 views

better practice for work with saved buffer

I am working on a gtk_list_store, that will save the rows to a file (g_file_set_contents(file, buffer)) After saving the datas to a file, without exiting, I will like to edit the file (as buffer) ...
1
vote
1answer
51 views

GTK and CSS : Rounded buttons

I am trying to create a rounded button by calling a external CSS file in my C++ application. I manage to get a round button but some rectangular border remains and I cannot find how to get rid of ...

1 2 3 4 5 67