Tagged Questions

GTK+ is written in C, but has bindings to many other popular programming languages such as C++ (gtkmm), Python (pygtk), and C# among others. GTK+ is licensed under the GNU LGPL 2.1, allowing development of both free and proprietary software with GTK+ without any license fees or royalties. "GTK" ...

learn more… | top users | synonyms

6
votes
3answers
262 views

Introspection on pygtk3 possible?

One of the great things of python is the ability to have introspection on methods and functions. As an example, to get the function signature of math.log you can (in ipython) run this: In [1]: ...
6
votes
4answers
2k views

GTK+ 3.0 and GNOME 3 Programming! Any Blog or Book or Tutorial?

I am new to gtk and gnome programming and like to study GTK+ 3.0 and Gnome 3 programming. Since both of these are recent APIs, I can't find a good tutorial or blog post about these topics. The books I ...
5
votes
1answer
130 views

How to use CssStyleProvider in Gtkmm3

I'm programming in c++ with gtkmm3. I want to change some fonts in my program. I read all the things about CssStyleProvider, StyleContext in gtkmm documentation and also in gtk+ documentaion but i ...
5
votes
1answer
575 views

How to create a cairo-gl surface under Gtk

I want to create a window using GTK 3 under linux (fedora 12) and draw on it a simple rectangle using cairo-gl backend, for this I want to create a cairo-gl surface. How can I do this, can anybody ...
5
votes
2answers
4k 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
2k views

Use glade with pygobject Gtk3

I am converting a script to use Gtk3 using the migration guide (Porting GTK2 to GTK3). I converted my import pygtk to a from gi.repository import Gtk and so on... I'm stuck because the glade module ...
3
votes
2answers
149 views

Why does the hover animation ignore the transition time and function in Gtk3?

With the new gtk, it is possible to create graphical themes with a file in something like css. Given this css file (named my-gtk-widgets.css): .button { border-radius: 0; border-style: ...
3
votes
1answer
53 views

GtkTextView top/bottom margin?

I would like to know the correct and generally accepted way of adding a top and bottom margin to a GtkTextView that is inside of a GtkScrolledWindow. There are functions to set the left and right ...
3
votes
1answer
367 views

Python & GTK3: How to create a Liststore

In PyGtk I always used this to create a ListStore with an Image (using it with an IconView for displaying files): store = gtk.ListStore(str, gtk.gdk.Pixbuf, bool) But I can't figure out how to do ...
3
votes
2answers
1k views

Learning GUI programming with GTK+2 or GTK+3?

I am new to GUI programming, and I haven't found yet what library is best for my purpose (i want to make desktop environment applications, eg. docks, panels, desklets etc.) I have started learning ...
3
votes
1answer
3k views

Precompiled GTK3 for windows?

Is there any place where i can download it. The GTK site only provides binaries for the 2.22 version.
2
votes
1answer
40 views

How do I raise a window that is minimized or covered with PyGObject?

I'd been using the answer provided in the PyGTK FAQ, but that doesn't seem to work with PyGObject. For your convenience, here is a test case that works with PyGTK, and then a translated version that ...
2
votes
1answer
179 views

How to capture Enter key press in GtkEntry

I am trying to capture the Enter key when it is pressed in a GtkEntry. Most of the resources I have found suggest connecting to the activate signal, but the documentation for GtkEntry states ...
2
votes
4answers
222 views

Is there a gi.repository documentation for python?

I'm looking for a gi.repository module documentation and I can't find anything on the internet. All I found is documentation of new Gtk3 libraries for C, or old PyGtk 2.0 Reference Manual I'm looking ...
2
votes
1answer
202 views

Python. Doing some work on background with Gtk GUI

python 3.2.2 gtk3 3.2.2 python-gobject 3.0.2 I'm trying to display a GUI and do some work in the background. As I understand it should look something like this: #!/usr/bin/env python3 # -*- ...
2
votes
1answer
145 views

Sending XKeyEvent to gtk3 applications

I used following documentation to write a method in Vala to send key press events (e.g. <Ctrl>V) to the application which has the focus. Here is the code: public void press(string accelerator) ...
2
votes
3answers
305 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
3answers
906 views

Looking for a tutorial/a bit of help to test python+gtk3

The new version of gtk just around the corner, I am wondering if anybody has a (simple) setup to test gtk3 with python on ubuntu and windows. I would like to evaluate the whole tool-chain (glade + ...
1
vote
0answers
95 views

Gtk3 Css button states

I'm using gtk+-3.2.3 with css on Ubuntu natty. In the code below I have a button that starts out with a background color of green with blue text. When I hover over it the background color changes to ...
1
vote
0answers
65 views

pango attributes with pygobject

I have the following code, that uses pygtk: attr = pango.AttrList() attr.change(pango.AttrSize(( 50 * window_height / 100) * 1000, 0, -1)) attr.change(pango.AttrFamily("Sans", 0, -1)) ...
1
vote
0answers
97 views

GTK3 GtkLayout with cairo, cannot get update region

I am trying to draw a GtkLayout using cairo. The layout is huge and I need to get the part that is visible in the container window and update that part only. With GTK2 the expose event data was ...
1
vote
1answer
312 views

GTK3: Getting a style's class property

I'm trying to get the text color of a class of a GTK style. I have a GtkStyleContext with the widget path and the classes that I want to get their properties. GtkWidgetPath* widgetPath = ...
1
vote
1answer
102 views

pygobject creating a drag and drop source

from gi.repository import Gtk, Gdk def drag_data_get_cb(widget, drag_context, selection_data, info, time): print selection_data.get_data_type() print widget.get_text() return ...
1
vote
1answer
103 views

Will gtk# support gtk 3.0?

GTK+ 3.0 released in February 2011. But unfortunately gtksharp doesn't support it yet. Are they going to support it?
1
vote
0answers
80 views

unresponsive drag and drop in pygobject

im trying to get drag and drop working well in pygobject, but it is slow and unresponsive, 90% of the time i have to wave the item i am dragging around before i can drop it successfully, can anyone ...
1
vote
2answers
433 views

how to compile gtk2.0 program with gtk3?

i have a simple program which is compiled with gtk2.0 in ubuntu.In ubuntu11.04 i installed gtk3.then i compile the same code,i got an error in the following line /* Add a timer callback to update the ...
1
vote
1answer
73 views

scale surface without blurring it

I try to scale an image derivedfrom a file, to any (sensible) scale. The problem is, cairo somhow autoblurrs it. How can I fix/remove it? The aim is to see the individual pixels. Thanks for any ...
1
vote
2answers
282 views

VAPI problems with GTK+ 3

I'm trying to compile some Vala on ArchLinux, and when I try to include the package gtk+-3.0, it seems GDK and GTK+ 2.0 are being included as well; valac --pkg gtk+-3.0 test.vala gives the following ...
1
vote
3answers
321 views

Setting Cursor-Color in GTK+ 3

I'm looking to set a GtkTextView cursor-color. I know I can do it through the gtk_rc_parse command or something similar, but the documentation says that those commands are depreciated, and I don't ...
0
votes
1answer
26 views

pyGObject transparent cursor

How can I get a transparent cursor using Python GTK3 and pyGObject. I have search the internet high and low but can not find anthing. I have found a lot of example using pixmap but I believe ...
0
votes
1answer
22 views

text changed signal for text view widget in gtk3

i want to t know the way to know when text has been changed in a text view widget in the gtk3 framework. i think there must be a signal associated with it, but could not find it. for example, there is ...
0
votes
0answers
52 views

Formatting a spinbutton's display in PyGObject/GTK+3

I'm in the process of porting an application from PyGTK to PyGObject. Mostly it's going well because mostly I did conventional things with PyGTK. But there's one somewhat ugly hack I was using to ...
0
votes
1answer
83 views

GtkTreeView with CSS in Gtk3

How can I make every other row a different color in a GtkTreeView using CSS for Gtk3? I've tried using: even-row-color, -GtkWidget-even-row-color and GtkTreeView row:nth-child(even). I'm using ...
0
votes
1answer
77 views

Cairo with gtk3

Could someone please show me a minimal working example of using C language for Cairo with Gtk3 to draw a single line in a GtkDrawingArea. I've tried to modify testcairo.c in the gtk3 tests folder but ...
0
votes
1answer
48 views

Read configuration settings from XML file for Gtk3 application

I am trying to develop a desktop application using Gtk3 and Python. It's basically a Twitter client. I had intended to store the authentication settings (access token and access token secret) in an ...
0
votes
1answer
72 views

check which button is pressed gtk3 using python

i have 10 button, which correspond to the same method. how am i going to check which button was clicked in the corresponding method? i tried to check for the button press of a particular button in the ...
0
votes
1answer
67 views

Widget repeaters in gtk3 using python and glade

I am trying to develop applications for gtk3 using python. I have designed the UI using glade. I want to know if there is any way of using widget arrays, in which each widget of similar type would ...
0
votes
1answer
136 views

gtk3 transparent menu's

Is it possible in gtk3 to create a menu that is transparent? The underling window would use an image as it's background. I can use a color for the window background but not a image.
0
votes
1answer
60 views

gtk3 GtkWindow title bar color

Using gtk3, how can I change the default GtkWindow titlebar color? Would it involve GtkStyleContext? I've only used GtkCssProvider.
0
votes
1answer
190 views

using cairo with gtk3

I am trying to draw a scatterplot with cairo in gtk3. To start, I am using the examples here: http://zetcode.com/tutorials/cairographicstutorial/ They compile with gtk2 successfully but display no ...
0
votes
0answers
28 views

No go back button on assistant's pages / Assistant GTK 3.0

I'm really new to GTK and I'm making a GUI for a project. Here is my code : http://pastebin.com/XigrWuAH I use GTK3-demo to help me making my program but I can't get the "go back" button on the '>1' ...
0
votes
1answer
180 views

Gtk3 installation

I'm trying to install gtk+-3.2.3 on Ubuntu natty. This is a fresh Ubuntu install with security updates only. I have not installed any new versions of gtk. I just have gtk2, that Ubuntu comes with. ...
0
votes
0answers
113 views

border-image gtk3 theme

Im having problems with border-image in unico and adwaita engines. While this will work for adwaita buttons but not tabs and in unico just wont work border-image: ...
0
votes
0answers
74 views

add combobox in glade with python and GObject

I'm trying to apply a combobox to a small GTK3 interface, but I can't really figure it out, how to populate it's list, and how to connect the interface's combobox with my python code. Could someone ...
0
votes
2answers
225 views

GTK3 program no longer compiles - GCC “undefined reference” at link time

So I was merrily learning GTK+ programming with 3.0 in Ubuntu 11.04, and even got a working ruler program running. It compiled with my makefile perfectly. I took some time away from it, upgraded to ...
0
votes
1answer
59 views

Python and Gtk+3 Entry problems

Greetings guys and girls! I am new in programming Gtk+ and need a "decent" opensource twitter client and I can't find one, so I'm developing one that 'll be opensource. I'm using Gtk+3 and Python ...
0
votes
1answer
138 views

Scrolling model dialog in gtk3? how to do it

does any one know how to create a modal dialog that scrolls in from the top of the parent window (like the about window in glade 3.10). I'm using Glade 3.10 with python. I tried creating a dialog and ...
0
votes
1answer
85 views

gtk3 get settings value from GtkSettings

I want to programmatically retrieve the value of the word wrap setting for GEdit3 from inside a Python plugin. The GtkSettings class provides a method to set a string property, but how does one ...
0
votes
1answer
269 views

Can't import Webkit from gi.repository

When I try to import Webkit from gi.repository, it gives ImportError... from gi.repository import Webkit ERROR:root:Could not find any typelib for Webkit Traceback (most recent call last): File "", ...
0
votes
0answers
44 views

GLib assertion failure with simple gtk 3 line of code

I'm trying to port my gtk 2 program to gtk 3, but I keep getting "assertion failure" errors on runtime, such as G_TYPE_IS_PARAM (param_type) && param_type != G_TYPE_PARAM failure on simple ...

1 2