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, ...
1
vote
1answer
283 views

X11 screenshot of active window fails for GTK windows

this is a sub-project of a much larger research project. I am trying to take screenshots of an active window (browser) every 100ms, which are then to be stored in memory for OpenCV processing. I found ...
4
votes
2answers
154 views

Using GTK and Xlib in Python

I am writing some code where I need to drop down from GTK+ to Xlib. Specifically, I would like to set the icon of a toplevel window to be a window itself, rather than a pixmap, in order to write a ...
3
votes
0answers
201 views

Gtk+ delayed white screen (flash plugin + NPAPI)

I created an standalone application which run compiled flash (.swf) on a gtk+ UI with NPAPI. When my video runs, there's a small time where there's a white screen (maybe 1 or 2 sec). It's kind of ...
1
vote
1answer
205 views

I need to draw a line moving with the cursor, but I want to avoid redrawing the whole window every 100ms

I have a program which displays a ruler on the screen, and with Xlib it polls for the cursor position every 100ms and updates the display. The display consists of numbers/lines etc, in particular a ...
0
votes
1answer
84 views

keep gtk window fixed on screen

How you keep gtk window fixed on screen like a taskbar or keep some space like taskbar reserved for our gtk window, Do i need to write some WM plugin. if it helps my wm is metacity, and can you ...
0
votes
2answers
280 views

How to embed a program inside another using GTK, XLib or any similar?

I'm trying to make a "simple" program, all it does is to list all opened programs and, once you choose one, it opens it inside your window (like a thumbnail you may say, but you can also interact). ...
1
vote
2answers
837 views

Activating a Window on X11, why do I lose the title bar?

Using the bellow code, I am activating a window on X11. I'm using FindWindow to get the window handle, which works just fine. Then I want to bring the specified window in the foreground. To do this, ...
2
votes
0answers
97 views

gnome window switches and password fields

I wrote a small key logger for Ubuntu, but I don't want it to record specific windows or password fields (in all windows). So I need some way to: Detect when a new window gets focus (so that I can ...
0
votes
1answer
760 views

Python window focus

I would like to find out if a window has focus. I am using pyGTK and would be helpful to us that but have got some Xlib in my script aswell. I've used: self.window.add_events( gdk.FOCUS_CHANGE_MASK ...
7
votes
6answers
1k views

How would you build a “pixel perfect” GUI on Linux?

I'd like build a GUI where every single pixel is under my control (i.e. not using the standard widgets that something like GTK+ provides). Renoise is a good example of what I'm looking to produce. Is ...