监视X11剪贴板变化的方法(非轮询)

// gcc -o clipchange clipchange.c -lX11 -lXfixes -Wall
#include 
#include 
#include 
#include 
#include 

int main(int argc, char* argv[]){
    Display *display = XOpenDisplay(NULL);
    
    Atom CLIPBOARD = XInternAtom(display, "CLIPBOARD", False);

//  XFixesSelectSelectionInput(
//      display, DefaultRootWindow(display), 
//      XA_PRIMARY, XFixesSetSelectionOwnerNotifyMask
//  );

    XFixesSelectSelectionInput(
        display, DefaultRootWindow(display), 
        CLIPBOARD, XFixesSetSelectionOwnerNotifyMask
    );
    
    XEvent event;
    for(;;){
        XNextEvent(display, &event);
        printf("event.type = %d\n", event.type);
    }
    
    XCloseDisplay(display);
    return 0;
}

你可能感兴趣的:(监视X11剪贴板变化的方法(非轮询))