Tagged Questions

7
votes
1answer
328 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 ...
3
votes
2answers
138 views

lambda-gtk negative pointer

I was trying to write my own put-pixel on (Gdk) pixbuf in Lisp. When I finally realized how I can operate on C pointers in CL, new obstacle came along - (gdk:pixbuf-get-pixels pb) returns me negative ...
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
83 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
1answer
400 views

Gtk+: How to set the cursor of a window from a Cairo context?

I have written the following code to set the cursor of a Gtk::Window from a Cairo::Context. When I run the program and move the cursor into the window, the cursor changes to a horizontal black line at ...
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 = ...
2
votes
1answer
194 views

GTK/GDK How to find out if a window is overlayed by another one?

I've got a gtk application which features a tray icon, if the user clicks on the icon the visibility of the window is toggled when he's on the same workspace as the window is. When he's on another ...
2
votes
1answer
802 views

Pointers in Lisp?

I've started learning Lisp recently and wanted to write a program which uses gtk interface. I've installed lambda-gtk bindings (on CMUCL). I want to have putpixel/getpixel ability on a pixbuf. But I ...
1
vote
1answer
34 views

Drawing Oval with Gdk Cairo Context

I want to draw only the circumference of an oval. I use this: gc->save(); gc->translate( xc, yc ); gc->arc( 0.0, 0.0, 1.0, 0.0, 2.0*M_PI ); gc->scale( width*0.5, height*0.5 ); ...
1
vote
1answer
29 views

Scrolling GtkDrawingArea

(C language, GTK library) On my form, I have a GtkDrawingArea widget on which I draw GdkPixbufs (loaded from files) with Cairo. What I'd like to accomplish is to be able to scroll the drawing area ...
1
vote
1answer
206 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 ...
1
vote
2answers
202 views

How to copy Gdk.image?

Is it possible to make a copy of Gdk.image object using lablgtk2 for Ocaml? I tried to find 'copy' or 'clone' methods but failed.
1
vote
3answers
282 views

How do I find out what GDK events are required for a GTK+ signal?

I'm using Glade-3 for my GUI design, but I keep hitting this problem. I don't see anything in the GTK+ documentation mapping signals to events or in Glade-3 (3.4.5). Is there a place in the GTK+ ...
0
votes
1answer
17 views

C, GTK: window stops updating

I'm developing an application that periodically draws images on a GTK Drawing Area inside a window. The rendering first works well and the window content gets repainted if I drag another window over ...
0
votes
0answers
19 views

Capture mouse being dragged outside pygtk window

When the mouse is pressed on a PyGTK button, I'd like to receive all mouse-movement information until the button is released def btn_press(self, widget, event, data): ...
0
votes
1answer
23 views

Detect mouse leaving pygtk window

In PyGTK application, I'd like to detect when the mousepointer leaves my top-level window. window = gtk.Window(gtk.WINDOW_TOPLEVEL) ... window.connect("leave-notify-event", window_exit, "") However ...
0
votes
1answer
21 views

Where can I find a list of the GDK_comma, GDK_dollar, … constants?

A C project contains a couple of lines including GDK_comma, GDK_dollar, GDK_o, etc. Where can I find a list of these constants? Specifically, I'm looking for the constant for ö (ö).
0
votes
2answers
139 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
34 views

How do you use GdkRectangle to determine whether you size-allocate is growing or shrinking?

I have a callback for the size-allocate signal on my GtkScrolledWindow. I want to scroll to the right when I am adding stuff to that window. This works fine but introduces a subtle bug when removing ...
0
votes
2answers
143 views

Get screen vendor and serial number under Linux

I have an instance of Gdk::Screen which represents a monitor connected to my computer. How can I read that monitor's vendor ID and/or serial number? Getting the Vendor ID and Serial Number from an ...
0
votes
1answer
141 views

How to set bg image of a window in a GTK3 application

I found this way: GdkPixmap *backPixMap = gdk_pixmap_create_from_xpm ( window , NULL , NULL , fileName ); gdk_window_set_back_pixmap( GTK_WIDGET( window )->window , backPixMap , FALSE ); but it ...
0
votes
0answers
24 views

Is gdk_pixbuf multithread safe?

I want to use "gdk_pixbuf_save" and "GdkPixbufLoader" from a background thread? Is this safe?
0
votes
1answer
130 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
1answer
152 views

Remove the background of a GtkViewport

Is it possible to remove the grey background of a GtkViewport (making the background transparent)?
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.
0
votes
3answers
284 views

Gtk: send focus to a toplevel window without losing the first toplevel window

Here is the situation: 1) I have two toplevel windows, A and B 2) A is in front of B How can I send to keyboard focus to the window B while keeping the window A in front of B ?
0
votes
2answers
285 views

Displaying RGB Image in GTK+-2.2

I'm writing a class that can take my own RGB images and display them to windows using GTK+-2.2. My Image class stores the images as packed 24-bit RGB bytes, so the conversion should be trivial. I'm ...
0
votes
1answer
21 views

how to export the display faster to another system in gtk?

I have to run my scrolling gtk application on systems which are in network. But the display is slower when i try to run the application by doing telnet to other systems. Is there any way to render ...
0
votes
1answer
57 views

how to store image data in X server in gtk, gdk?

Is there anyway to store image data in X server memory so that rendering of images, (for example in scrolling), is faster and so that round trips to x client can be reduced?
0
votes
1answer
20 views

Does GdkRectangle have an activate event?

I want to make a GdkRectangle clickable so that I can select it and get a dot in every corner of the rectangle, implying that the user can move or resize the rectangle. Is there an event that ...
0
votes
1answer
68 views

Ellipse object in GDK

In GDK there's an object called GdkRectangle that is used to draw rectangles. Is there a similar object for ellipses?
0
votes
1answer
220 views

Newbie: Render RGB to GTK widget — howto?

Big picture: I want to render an RGB image via GTK on a linux box. I'm a frustrated GTK newbie, so please forgive me. I assume that I should create a Drawable_area in which to render the image -- ...
0
votes
2answers
505 views

Drawing directly to the screen via GTK or GDK

I am working on a demo application for a library me and two colleagues are writing to allow GNOME applications that run audio events though libCanberra to allow users to select visual events to ...