Tagged Questions
The gdk tag has no wiki summary.
7
votes
1answer
332 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 ...
7
votes
3answers
3k views
Groovy GDK equivalent of Apache Commons StringUtils.capitalize(str) or Perl's ucfirst(str)
Yes/no-question: Is there a Groovy GDK function to capitalize the first character of a string?
I'm looking for a Groovy equivalent of Perl's ucfirst(..) or Apache Commons StringUtils.capitalize(str) ...
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
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
1answer
404 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
195 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
804 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
37 views
Anyone know how to edit the VC++ directories in Visual Studio 2008?
This site has often popped up in my google searches and has been very helpful in the past, so I finally decided to join. Anyway I've scoured the internet for a solution to this problem for days and ...
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
50 views
Bug in the Groovy 1.8.0 String class .tokenize(String) method?
Messing around with Groovy for a work project I ran into this oddity:
def string = "__RNDHPD(70.2300000..70.2310000)"
def params = []
string.find(/(?<=\().*?(?=\))/).tokenize("..").each { params ...
1
vote
1answer
169 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 ...
1
vote
0answers
380 views
Problem with gdk.Pixbuf in gtk# Mono
I'm creating a small drawing program in Mono gtk# and using the Cairo graphics library. I'm coding and compiling on a MacOs X system. I have a drawable object which I put into Pixbuf at a certain time ...
1
vote
2answers
836 views
Using Groovy comparison operators with Date objects
I'm investigating an issue and ran across some suspicious code involving comparison of Date instances using comparison operators. e.g.
def stamp = ... //Date
def offset = ... //Integer
...
1
vote
1answer
420 views
How to write contents of a Cairo Image surface into a Gdk Pixbuf?
I have a canvas(Gdk Drawing Area), which I can draw into it using Cairo, but I need to save contents of my canvas into a buffer which in my case is a Gdk Pixbuf. I want to know if it's possible or ...
1
vote
0answers
48 views
ruby memory leak Gdk::PixbufLoader
So I'm beginning to wonder how leaky the gnome2 libraries for ruby1.8.6 are.
#!/usr/bin/env ruby
require 'gtk2'
while true
sleep 0.1
pixbuf = Gdk::PixbufLoader.new
pixbuf = nil
end
this ...
1
vote
0answers
150 views
how can I get _NET_WORKAREA for seperate monitors
using gdk_screen_get_monitor_geometry (xrandr) I can get the resolutions for
separate monitors (for example when there are 2 monitors used as a single screen like nvidias twinview)
However ...
1
vote
1answer
165 views
Is there a way to get SendInput to work with an application using GDK?
I have an application that can successfully inject keyboard input using the SendInput API with the UNICODE flag set. This causes WM_KEYUP and WM_KEYDOWN messages to be generated with the VK code of E7 ...
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
283 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
20 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
0answers
40 views
how to take screenShot in vala
I have the following program does not work
NOTE: compiled on windows 7.
Gdk.Screen screen = Gdk.Screen.get_default ();
Gdk.Window rootWin2 = screen.get_active_window ();
int width, height;
...
0
votes
2answers
71 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
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
144 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
142 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
131 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
153 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
285 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
27 views
How to combine a number of screens into a single display in gtk
I have a problem where i am supposed to export the display to many other screens where those screens form a part of a single display( ie many screens combine to make a single display). I know i have ...
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
27 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
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
0answers
215 views
How do I remove (or apply) transparency on a gdk-pixbuf?
I have a c++ program in which a gdk-pixbuf is created. I want to output it as an image, so I call gdk_pixbuf_save_to_stream(pixbuf,stream,type,NULL,&err,NULL). This works fine when "type" is png ...
0
votes
1answer
130 views
How to scale GdkPixmap or XPixmap via X server?
I'm interested in offloading heavy computations from the X client. I think I can do so using XRender in some way, but I can't figure out how.
0
votes
1answer
92 views
Conversion of Gdk Events in Mono
I'm trying to intercept events using Gdk.Window.AddFilter(Gdk.FilterFunc) in Mono. So far, I have been able to hook up the filter function, but now I am trying to use the events in the filter ...
0
votes
1answer
186 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 ...