0
votes
0answers
25 views

XCreateWindow copying of data

How to copy bitmapdata to Xwindow with XCreateWindow as drawable.
4
votes
2answers
2k views

how to quit the blocking of xlib's XNextEvent

Under windows, the GUI thread usually call GetMessage to waiting for message, when another thread use PoseMessage put a message into the queue, then the GUI thread will return GetMessage (quit ...
0
votes
1answer
286 views

Window manager. Internal content of X windows in separate window?

I am writing my own Window Manager using Xlib and Qt 4.7. So in my application I catch all events from XServer. The problem is next. When I show window on "MapRequest" event, sometimes its internal ...
1
vote
1answer
172 views

Why does only one child window show?(x11)

I have a small piece of code where I create 4 non overlapping sets(Top/Bottom Left/Right) of 3 windows(1 parent window 1 child window almost as large as the parent window and 1 small button window). ...
0
votes
1answer
472 views

XCreateWindow fails on CentOS 5.6 with error: BadValue

I'm using the following code to create a fake window for some integration tests: class CXWindowsClipboardTests { protected: virtual void SetUp() { m_display = XOpenDisplay(NULL); ...
0
votes
1answer
451 views

Segmentation Fault In My Xlib Wrapper Class (C++)

I am attempting to create a wrapper class to the Xlib library, but I get a segmentation fault! I am new to C++ and this is probably out of my depth and maybe have my goals set to high, other than that ...