Tagged Questions
3
votes
2answers
2k views
Python GTK Drag and Drop - Get URL
I'm creating a small app must be able to receive URLs. If the apps window is open, I should be able to drag a link from a browser and drop it into the app - and the app will save the URL to a ...
2
votes
1answer
84 views
pygtk WINDOW_TYPE_HINT_DOCK not working on windows
I've been developing a dock-like program for linux, but the problem is that when I wanna run it on windows (xp/vista/7) these properties don't work:
...
2
votes
2answers
1k views
Keyboard/Mouse events on desktop / root window with pygtk (gtk.gdk) on Linux
As the title states, I'm trying to capture Mouse and Keyboard events with Python-gtk.
I can do this easily with python-xlib with:
self.display = display.Display()
self.screen = ...
1
vote
1answer
170 views
GDK events handling without GTK
I'm programming (in python) GDK without GTK, simply as a x11 abstraction. THIS POST IS MY LAST CHANCE.
My problem is that I don't know how capture the GDK window's signals/events or what are their ...
1
vote
1answer
207 views
Create Gtk.Atom with PyGobject Introspection and Gtk+3
Context:
There was once a post on preventing window overlap with Gtk+2.x Recent changes in Gtk+3 have however affected the gdk_property_change() function, which has the PyGobject Introspection ...
0
votes
2answers
73 views
How to resize gtk.gdk.Pixmap
I am created an instance of gtk.gdk.Pixmap, and painted on it something. For example:
pixmap = gtk.gdk.Pixmap(widget.window,100,800)
pixmap.draw_rectangle(gc, True, 0, 0, 100, 800)
...
0
votes
2answers
142 views
Simulate mouse/keyboard events (gtk + HOOPS 3D)
how can I simulate mouse/keyboard events in gtk/gdk? I have a window widget containing HOOPS 3D widget and need to simulate mouse clicking on various parts of the window, along with simulating ...
0
votes
1answer
132 views
Problems importing GDK
I am trying to import GDK to my program however I continue to get an error
No module named GDK
Do you know how I can fix this? Since it was working before I already tried import gtk.GDK
and import ...
0
votes
0answers
98 views
gtk.gdk: make image 50% grayer
I have an image wiht gtk.gdk. I want to make it look grayed out, so I wanna do something like draw a gray rectangle over it with 50% alpha value. How would I do this? The docs are so confusing.