The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
18 views

Deprecated In Groovy 2.1.X but where to find explanation and alternatives?

I see that there are many deprecated methods and fields in the GDK (http://groovy.codehaus.org/api/deprecated-list.html). For example, DefaultGroovyMethods.withObjectInputStream{} is deprecated now. ...
0
votes
0answers
35 views

How do i read the Title property of a GDK.Window

I'm converting an .NET Windows application for Mono to run on Linux (Ubuntu). One of the features depends on a native library (user32.dll). The Mono guide that talks about conversion of applications ...
0
votes
1answer
40 views

GDK signal, keypress, and key masks

I am trying to catch user key press Ctrl+d on a GUI window to quit. My code looks like this: static gboolean callback(GtkWidget *widget, GdkEventKey *event, gpointer data) { ...
0
votes
0answers
8 views

GTK+ mapping Win keys during runtime

Linux, GTK 2.0 I'm writing an application that have VNC functionality (VNC consoles for Xen machines) All works almost fine but the Win-keys. Some applications I use, for example Virtual Box interpret ...
1
vote
2answers
32 views

Can GDK/GTK recognize two keys pressed simultaneously?

So I'm trying to work toward developing a platform style game, writing in C and using GTK as my graphical toolkit. Right now I have a program that places three blocks on the screen. Two of them are ...
0
votes
1answer
70 views

gdkmm: how to destroy gdk window?

Status quo: I have a custom widget (MyWidget) with an event window. Problem: if I create, show and then, later, hide and destroy the widget I get the following message from the application: ...
1
vote
1answer
75 views

Convert Gdk.Pixbuf to System.Drawing.Bitmap?

How do you convert a Gdk.Pixbuf (_pixbuf below) into a Windows Forms (System.Drawing) Bitmap? Below is code that uses Gtk.DotNet.Graphics, but it just gives a white image. Is there a better, more ...
0
votes
1answer
57 views

Change GtkScale font/align/color

Is there a simple way to change the value-text's font, align and color of a GtkScale widget? For example, I want to have a red and bold number, instead of the standard black one.
0
votes
1answer
190 views

'gi.repository.Gtk' object has no attribute 'gdk'

I'm trying to create a multiple threading with GTK. Gtk.gdk is needed but i received error about no gdk attribute. I'm using a Raspberry Pi with Raspbian. This is how i import GTK library. try: ...
0
votes
1answer
76 views

MonoDevelop - Detect Enter Keypress in TextBox

I am currently making a web browser in MonoDevelop using C#, but I am having problems implementing the Keypress event. I already know the code for how to make the web browser navigate, but the ...
0
votes
0answers
19 views

Gtk+ Error when Copy / Paste performed outside of application

I'm fairly new to Gtk. I'm working on a GUI application. Everything works great until I press Ctrl + C, Ctrl + V to copy/paste (in an outside application like excel). I am using Windows 8 64bit with a ...
0
votes
0answers
28 views

gdk_screen_get_window_stack(GdkScreen *) doesn't work as expected

Code: GdkScreen *screen = gdk_screen_get_default(); GList *wl = gdk_screen_get_window_stack(screen); g_list_foreach(wl,hide_window,NULL); g_list_free(wl); function: void hide_window(gpointer ...
0
votes
1answer
54 views

GTK3 - Monitoring all signals emitted from a widget

Is there any way to monitor all signals emitted from a widget with GTK3? I know that the event signal is emitted before an event, but I'm not sure of the distinction between "event" and "signal" in ...
0
votes
1answer
97 views

Drawing on the GtkDrawingArea with Xlib func

I have a problem. I need to draw on the widget type GtkDrawingArea using functions Xlib (XDrawLine etc). Why? I use the library, which draws with Xlib. And I need to pass any arguments (Display, ...
0
votes
1answer
31 views

pygtk issue - unable to create gdk.Color object

I'm creating a simple application through glade, and I want to be able to set the color displayed in the color selection dialog. I found the set_current_color function, however, it requires a ...
2
votes
1answer
69 views

Gdk: how to remove bit from event mask in Python?

I want to remove the POINTER_MOTION_MASK from my window's events. I tried: win.set_events(win.get_events() & ~Gdk.EventMask.POINTER_MOTION_MASK) however, I get this error: TypeError: Expected ...
1
vote
1answer
87 views

Understanding the way from hid usage id to gdk keyval on Linux

I wanted to understand the way from the hid usage id of a keyboard through the system up to a GDK keyval inclusive layout translation. Or to be more specific: I have a UTF-8 string and wan't to create ...
1
vote
0answers
62 views

NDK debugging fails with gdbserver error: “Function <foo_bar> not defined”

NDK debugging on Windows fails. I use Cygwin and gdb to debug native code. I can attach debugger to an app process, but then I receive errors: gdbserver: symbol is not loaded and a dialog with ...
0
votes
1answer
93 views

MonoDevelop project build fails with 'The type or namespace 'GDK' could not be found

'...are you missing a using directive or an assembly reference?' I tried the solution in this question Gtk# in monodevelop not working anymore after upgrading to ubuntu 11.10 unity but appears to not ...
1
vote
1answer
70 views

What are the three arguments to Gdk.threads_add_idle()?

Using python and the gi.repository module, I am trying to call Gdk.threads_add_idle, but I get the error message that three arguments are required. The documentation, however, only mentions two args. ...
0
votes
1answer
45 views

DarkGDK, make a gap between sprite spawn times

I have a for loop in which I declare positions of sprites. But they usually get spawned near each other and it looks horrible. Using such functions as dbWait(1000); freezes all the sprites with it so ...
1
vote
1answer
87 views

DarkGDK changing display mode makes sprites dissapear

After executing the application, user clicks the start button. At the time I want to change the display to different dimensions. But doing that the screen becomes black and images doesn't paste. ...
1
vote
1answer
82 views

Accessing the Gdk area after import Gtk and closing a window

I found myself in the situation where I needed to close a window which I had subclassed from Gtk.Window. I was connecting the window.destroy event to close the window initially to Gtk.main_quit for ...
0
votes
0answers
53 views

gtk_widget_add_accelerator with no GdkModifierType

I'm trying to add an accelerator to a "Play" GTK+ 3.0 menu item using the following C code: gtk_widget_add_accelerator(play, "activate", accel_group, GDK_KEY_F5, NULL, GTK_ACCEL_VISIBLE); I want ...
1
vote
1answer
220 views

Create a gtk.gdk.Pixbuf from binary data

I am struggling to get binary data into a gtk.gdk.pixbuf. This should illuminate my problem: file = open("image.jpg", "rb") //Ultimately this is going to come from a BLOB binary = f.read() //I ...
0
votes
1answer
152 views

Save an image from JPEG to PNG using libCurl and GdkPixBuff

I'm trying to build up an algorithm that downloads a JPEG image from an URL and saves it as a PNG into the disk. To achieve this I've used libCurl, for download, and GdkPixbuff library for the other ...
0
votes
1answer
47 views

How would one go about opening an image not as widget in C/GTK?

What I am trying to do is open several images in C, then create a table comprised of GtkImages who's actual images can be set or reset to one of the initial images(I'm trying to create a chess board). ...
1
vote
1answer
261 views

How to stretch draw a cairo gdk pixbuf pattern region with an arbitrary opacity?

How can I stretch draw an area of a gdk pixbuf to a cairo surface with a user defined opacity? I am trying to write a cross platform interface for working with bitmaps and want to add alpha blending ...
0
votes
1answer
119 views

How to repair “error: gdk-pixbuf/gdk-pixdata.h: No such file or directory?”

I need to rotate a Pixbuf. The vala code contains using Gst, GLib, Posix, Sqlite, Gdk; public class RotateSaveImage { public void RotateSaveImage(string input, string output) { var ...
0
votes
1answer
98 views

Convert GIcon into GdkPixbuf

I'm using the GAppInfo/GDesktopAppInfo. GIcon *icon = gtk_app_info_get_icon (G_APP_INFO(appinfo)); Now I need to put it on a GtkIconView but I found that there is no way to create a GdkPixbuf from ...
0
votes
1answer
126 views

How to emit an gtk.gdk event with a string as a data package in Python

I have a problem in that I need to emit data based on data I receive from a hardware thread. Ideally, I'd like to emit a signal with a data package. I don't know what to fill in for the ???? below. ...
0
votes
1answer
134 views

DARK gdk, background covering sprite?

dbLoadImage("media/backdrop.bmp", 2); dbSprite ( 2, 0, 0, 2 ); dbLoadImage("media/greyback.png", 3); dbCreateAnimatedSprite(1, "media/bugsheetsheild.png", 3, 1, 1); 3 is the background that covers ...
0
votes
1answer
339 views

Multithreading, gtk3 and cairo: drawing in a cairo surface

I'm trying to draw into a cairo image surface from a thread and I'm getting an assertion error: gtk_mt: /build/buildd/cairo-1.10.2/src/cairo-surface.c:385: _cairo_surface_begin_modification: ...
0
votes
0answers
54 views

convert Gtk::Image to Gdk::Image in ruby?

how can I convert Gtk::Image to Gdk::Image? I am making a tile map editor with ruby. pick a tile up from tile image, and paste to another image. but Gtk::Image seems have no cut and paste method. ...
0
votes
1answer
75 views

Why we should return True in the end of button_press_event.handler?

Look at the example in the bottom of this page: http://www.pygtk.org/pygtk2tutorial/sec-EventHandling.html it says: 57 def button_press_event(widget, event): 58 if event.button == 1 and ...
0
votes
1answer
172 views

How to put gtk.DrawingArea into gtk.Layout

I have some gtk.DrawingArea with circle i painted on it, if i put DA right into the window - everything is ok, but if i put it into the gtk.Layout that i put into the same window - i could not see the ...
2
votes
2answers
101 views

GDK function not found

I have a gtk program in which I am calling a gdk function. I am compiling the program using: gcc `pkg-config --cflags --libs gtk+-2.0 cairo glib-2.0` ... and I have included #include ...
0
votes
0answers
55 views

Is it possible to specify the length of the data with gtk.gdk.Window.property_get?

I'm writing a window-list sort of program in Python, in which current windows are displayed in a panel along with their icons. I'm using gdk (from pygtk, not gobject introspection) to do all the ...
1
vote
1answer
139 views

How is Cairo related to GDK?

What exactly is the function of the GDK library and how does Cairo fit in? Are they competing or complementary technologies? Does one of them depend upon the other in any way?
7
votes
1answer
278 views

How do I get size of the screen excluding Unity side panel in GDK

I'm trying to make Guake terminal work correctly in Unity. Its window have width that is equal to screen width. But because of Unity left bar window's right border becomes invisible. So, I want to set ...
0
votes
1answer
258 views

How to get XID of Gtk2 GtkDrawingArea to embed Mplayer

I'm writing a Gtk2 application that among other things needs to have Mplayer play a video into aGtkDrawingArea. From what I can tell, this is possible if one can find the XID of theGtkDrawingArea and ...
0
votes
1answer
388 views

How to catch gtk scroll-event on menu item

Gtk widgets emit a signal scroll-event. I would like to connect a function to that signal on a MenuItem. The following example code doesn't work. $ cat scroll-event-on-menu-item.c #include ...
0
votes
2answers
880 views

LibreOffice OnLine build

I'm trying to compile libreoffice, to use it "online", i.e: in a web browser (see a demo here: http://www.youtube.com/watch?v=CVR7HqDokmA ). When running the executable, I get this error: ...
-1
votes
1answer
506 views

Gdk-WARNING **: /build/…/gdkdrawable-x11.c:952 drawable is not a pixmap or window

My OS is Ubuntu 11.10, I started Sublime Text 2 from the terminal, everytime when I operated it, this Gdk-warning will be shown on the terminal, it's very annoying. How to fix it? $ subl . & [1] ...
0
votes
1answer
918 views

How do I get the gdk window for a gtk window in C?

I'm trying to set the cursor to a watch. The problem is that gdk_set_cursor() requires a gdk_window. How do I get the gdk_window of a gtk_window in C? I've seen examples for gtkmm and pygtk but I ...
1
vote
3answers
267 views

How to get events in X11 child window?

I need to handle events (MouseDown, MouseUp, MouseMove, KeyDown, KeyUp) in X11 child window. Parent of this child X11 window - GtkWidget, so I can't create main loop... How can I do this? Thanks!
2
votes
1answer
367 views

Sending an image to ftp server from gchar buffer (libcurl)

I'm developing a linux app programmed in C which processes gdk pixbuf images and then should send them to a remote server via ftp (libcurl). The images are saved into a gchar buffer with ...
1
vote
1answer
86 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 ...
2
votes
1answer
1k views

How to use Gdk# library in C# (mono)?

I'm a complete newbie with Gtk# and Gdk# and I'm completely lost as to how to get started. All I'm trying to do is to draw points and lines in whatever widget/pixmap/image and then display them in my ...
1
vote
1answer
311 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 2