Loading AI tools
来自维基百科,自由的百科全书
在計算技術中,客戶間通信協定手冊(Inter-Client Communication Conventions Manual:縮寫為ICCCM或I39L即「I, 39個字母, L」)[1]是X窗口系統的標準協議。它規定有一個共同的X服務器的客戶間的通信。它主要用於在窗口管理器和X服務器的其他客戶之間的通信。
它由MIT X聯盟的David S. H. Rosenthal在1988年設計,其版本1.0發行於1989年7月而版本2.0發行於1994年早期。
X刻意的規定窗口交互的「機制而非政策」。因此,客戶互操作需要超出X協議自身的額外規定。
ICCCM規定剪切和粘貼緩衝區,窗口管理器交互,會話任務管理,如何操縱共享資源和如何管理設備顏色。這些底層功能一般實現在部件工具箱或桌面環境之內。這把應用編程者隔離於直接與ICCCM自身打交道,因為這些功能被委託給了實現工具箱。
ICCCM聲名狼藉於有歧義和難於正確實現[2]。進而有些部分被廢除或不再實踐上去實現[3]。
針對目前需要而更新和澄清ICCCM的努力導致了擴展窗口管理器提示(EWMH),它獲得了相當廣泛接受並隨着需要出現而被持續擴展。
下面以Nick Welch寫的極小化的窗口管理器TinyWM[4]的源代碼,展示窗口管理器的基本工作原理,它做四件基本工作:通過Alt+Button1(鼠標左鍵)拖動來交互式的移動(move)窗口,通過Alt+Button3(鼠標右鍵)拖動來交互式的調整大小(resize)窗口,通過Alt+F1來前置(raise)窗口,通過鼠標指針來聚焦(focus)窗口。
/* TinyWM is written by Nick Welch <mack@incise.org>, 2005.
*
* This software is in the public domain
* and is provided AS IS, with NO WARRANTY. */
#include <X11/Xlib.h>
#define MAX(a, b) ((a) > (b) ? (a) : (b))
int main()
{
Display * dpy;
Window root;
XWindowAttributes attr;
XButtonEvent start;
XEvent ev;
if(!(dpy = XOpenDisplay(0x0))) return 1;
root = DefaultRootWindow(dpy);
XGrabKey(dpy, XKeysymToKeycode(dpy, XStringToKeysym("F1")), Mod1Mask, root,
True, GrabModeAsync, GrabModeAsync);
XGrabButton(dpy, 1, Mod1Mask, root, True, ButtonPressMask, GrabModeAsync,
GrabModeAsync, None, None);
XGrabButton(dpy, 3, Mod1Mask, root, True, ButtonPressMask, GrabModeAsync,
GrabModeAsync, None, None);
for(;;)
{
XNextEvent(dpy, &ev);
if(ev.type == KeyPress && ev.xkey.subwindow != None)
XRaiseWindow(dpy, ev.xkey.subwindow);
else if(ev.type == ButtonPress && ev.xbutton.subwindow != None)
{
XGrabPointer(dpy, ev.xbutton.subwindow, True,
PointerMotionMask|ButtonReleaseMask, GrabModeAsync,
GrabModeAsync, None, None, CurrentTime);
XGetWindowAttributes(dpy, ev.xbutton.subwindow, &attr);
start = ev.xbutton;
}
else if(ev.type == MotionNotify)
{
int xdiff, ydiff;
while(XCheckTypedEvent(dpy, MotionNotify, &ev));
xdiff = ev.xbutton.x_root - start.x_root;
ydiff = ev.xbutton.y_root - start.y_root;
XMoveResizeWindow(dpy, ev.xmotion.window,
attr.x + (start.button==1 ? xdiff : 0),
attr.y + (start.button==1 ? ydiff : 0),
MAX(1, attr.width + (start.button==3 ? xdiff : 0)),
MAX(1, attr.height + (start.button==3 ? ydiff : 0)));
}
else if(ev.type == ButtonRelease)
XUngrabPointer(dpy, CurrentTime);
}
}
Seamless Wikipedia browsing. On steroids.
Every time you click a link to Wikipedia, Wiktionary or Wikiquote in your browser's search results, it will show the modern Wikiwand interface.
Wikiwand extension is a five stars, simple, with minimum permission required to keep your browsing private, safe and transparent.