Tagged Questions
7
votes
1answer
343 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 ...
1
vote
1answer
27 views
Saving an image (jpg) on a remote server without local hard disk
I have a linux app programmed in C which uses gdk for image stuff. The images are sent to a remote server through FTP (with libcurl).
Currently I'm saving the images first to a local hard disk with ...
0
votes
1answer
22 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
3answers
301 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
1answer
30 views
GdkPixbuf Collection
I need to create GdkPixBuf collection. I try to save pixbufs in GList - mw->disp_list:
GtkTreeIter iter;
int i = 0;
for (i; i < g_list_length(list) - 1; ++i)
{
char* ...
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
206 views
gdk_pixbuf_composite usage
I have two png images First one with Width1 2247 Height1 190 and second one with Width2 155 Height2 36. I wan't the second image(src) to be placed in the center of first image(dest). I created pixel ...
0
votes
2answers
513 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 ...