The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
205 views

Mechanism of clipboard of xwindow

Can anybody explain the mechanism of clipboard of xwindow to me? For example, if I make a operation of open a file from gedit and copy the content of this file using ctrl+c. And then I open vim and ...
-2
votes
1answer
672 views

How to draw an image from file on window with Xlib

This is my code: int main() { Display *d = XOpenDisplay(0); unsigned int bitmap_width, bitmap_height; int x, y; Pixmap bitmap; if ( d ) { Window w = XCreateWindow(d, ...