├── .gitignore ├── .gitlab-ci.yml ├── AUTHORS ├── COPYING ├── Makefile.am ├── README.md ├── autogen.sh ├── configure.ac ├── cpprules.in ├── docbook.am ├── include ├── Makefile.am └── X11 │ ├── .gitignore │ ├── ImUtil.h │ ├── XKBlib.h │ ├── Xcms.h │ ├── Xlib-xcb.h │ ├── Xlib.h │ ├── XlibConf.h.in │ ├── Xlibint.h │ ├── Xlocale.h │ ├── Xregion.h │ ├── Xresource.h │ ├── Xutil.h │ ├── cursorfont.h │ └── extensions │ └── XKBgeom.h ├── m4 ├── ax_define_dir.m4 └── ax_gcc_builtin.m4 ├── man ├── AllPlanes.man ├── BitmapBitOrder.man ├── BitmapPad.man ├── BitmapUnit.man ├── BlackPixel.man ├── BlackPixelOfScreen.man ├── CellsOfScreen.man ├── ClientWhitePointOfCCC.man ├── Compose.man ├── ConnectionNumber.man ├── DefaultColormap.man ├── DefaultColormapOfScreen.man ├── DefaultDepth.man ├── DefaultDepthOfScreen.man ├── DefaultGC.man ├── DefaultGCOfScreen.man ├── DefaultRootWindow.man ├── DefaultScreen.man ├── DefaultScreenOfDisplay.man ├── DefaultVisual.man ├── DefaultVisualOfScreen.man ├── DisplayCells.man ├── DisplayHeight.man ├── DisplayHeightMM.man ├── DisplayOfCCC.man ├── DisplayOfScreen.man ├── DisplayPlanes.man ├── DisplayString.man ├── DisplayWidth.man ├── DisplayWidthMM.man ├── DoesBackingStore.man ├── DoesSaveUnders.man ├── EventMaskOfScreen.man ├── HeightMMOfScreen.man ├── HeightOfScreen.man ├── ImageByteOrder.man ├── IsCursorKey.man ├── IsFunctionKey.man ├── IsKeypadKey.man ├── IsMiscFunctionKey.man ├── IsModifierKey.man ├── IsPFKey.man ├── IsPrivateKeypadKey.man ├── LastKnownRequestProcessed.man ├── Makefile.am ├── MaxCmapsOfScreen.man ├── MinCmapsOfScreen.man ├── NextRequest.man ├── PlanesOfScreen.man ├── ProtocolRevision.man ├── ProtocolVersion.man ├── QLength.man ├── RootWindow.man ├── RootWindowOfScreen.man ├── ScreenCount.man ├── ScreenNumberOfCCC.man ├── ScreenOfDisplay.man ├── ScreenWhitePointOfCCC.man ├── ServerVendor.man ├── VendorRelease.man ├── VisualOfCCC.man ├── WhitePixel.man ├── WhitePixelOfScreen.man ├── WidthMMOfScreen.man ├── WidthOfScreen.man ├── XActivateScreenSaver.man ├── XAddConnectionWatch.man ├── XAddHost.man ├── XAddHosts.man ├── XAddPixel.man ├── XAddToSaveSet.man ├── XAllocClassHint.man ├── XAllocColor.man ├── XAllocColorCells.man ├── XAllocColorPlanes.man ├── XAllocIconSize.man ├── XAllocNamedColor.man ├── XAllocSizeHints.man ├── XAllocStandardColormap.man ├── XAllocWMHints.man ├── XAllowEvents.man ├── XAnyEvent.man ├── XArc.man ├── XAutoRepeatOff.man ├── XAutoRepeatOn.man ├── XBaseFontNameListOfFontSet.man ├── XBell.man ├── XButtonEvent.man ├── XChangeActivePointerGrab.man ├── XChangeGC.man ├── XChangeKeyboardControl.man ├── XChangeKeyboardMapping.man ├── XChangePointerControl.man ├── XChangeProperty.man ├── XChangeSaveSet.man ├── XChangeWindowAttributes.man ├── XChar2b.man ├── XCharStruct.man ├── XCheckIfEvent.man ├── XCheckMaskEvent.man ├── XCheckTypedEvent.man ├── XCheckTypedWindowEvent.man ├── XCheckWindowEvent.man ├── XCirculateEvent.man ├── XCirculateRequestEvent.man ├── XCirculateSubwindows.man ├── XCirculateSubwindowsDown.man ├── XCirculateSubwindowsUp.man ├── XClassHint.man ├── XClearArea.man ├── XClearWindow.man ├── XClientMessageEvent.man ├── XClipBox.man ├── XCloseDisplay.man ├── XCloseIM.man ├── XCloseOM.man ├── XColor.man ├── XColormapEvent.man ├── XCompose.man ├── XConfigureEvent.man ├── XConfigureRequestEvent.man ├── XConfigureWindow.man ├── XContextDependentDrawing.man ├── XContextualDrawing.man ├── XConvertCase.man ├── XConvertSelection.man ├── XCopyArea.man ├── XCopyColormapAndFree.man ├── XCopyGC.man ├── XCopyPlane.man ├── XCreateBitmapFromData.man ├── XCreateColormap.man ├── XCreateFontCursor.man ├── XCreateFontSet.man ├── XCreateGC.man ├── XCreateGlyphCursor.man ├── XCreateIC.man ├── XCreateImage.man ├── XCreateOC.man ├── XCreatePixmap.man ├── XCreatePixmapCursor.man ├── XCreatePixmapFromBitmapData.man ├── XCreateRegion.man ├── XCreateSimpleWindow.man ├── XCreateWindow.man ├── XCreateWindowEvent.man ├── XCrossingEvent.man ├── XDefaultString.man ├── XDefineCursor.man ├── XDeleteContext.man ├── XDeleteModifiermapEntry.man ├── XDeleteProperty.man ├── XDestroyIC.man ├── XDestroyImage.man ├── XDestroyOC.man ├── XDestroyRegion.man ├── XDestroySubwindows.man ├── XDestroyWindow.man ├── XDestroyWindowEvent.man ├── XDirectionalDependentDrawing.man ├── XDisableAccessControl.man ├── XDisplayKeycodes.man ├── XDisplayMotionBufferSize.man ├── XDisplayName.man ├── XDisplayOfIM.man ├── XDisplayOfOM.man ├── XDrawArc.man ├── XDrawArcs.man ├── XDrawImageString.man ├── XDrawImageString16.man ├── XDrawLine.man ├── XDrawLines.man ├── XDrawPoint.man ├── XDrawPoints.man ├── XDrawRectangle.man ├── XDrawRectangles.man ├── XDrawSegments.man ├── XDrawString.man ├── XDrawString16.man ├── XDrawText.man ├── XDrawText16.man ├── XEmptyRegion.man ├── XEnableAccessControl.man ├── XEqualRegion.man ├── XErrorEvent.man ├── XEvent.man ├── XEventsQueued.man ├── XExposeEvent.man ├── XExtendedMaxRequestSize.man ├── XExtentsOfFontSet.man ├── XFetchBuffer.man ├── XFetchBytes.man ├── XFetchName.man ├── XFillArc.man ├── XFillArcs.man ├── XFillPolygon.man ├── XFillRectangle.man ├── XFillRectangles.man ├── XFilterEvent.man ├── XFindContext.man ├── XFlush.man ├── XFocusChangeEvent.man ├── XFontProp.man ├── XFontSetExtents.man ├── XFontStruct.man ├── XFontsOfFontSet.man ├── XForceScreenSaver.man ├── XFree.man ├── XFreeColormap.man ├── XFreeColors.man ├── XFreeCursor.man ├── XFreeEventData.man ├── XFreeExtensionList.man ├── XFreeFont.man ├── XFreeFontInfo.man ├── XFreeFontNames.man ├── XFreeFontPath.man ├── XFreeFontSet.man ├── XFreeGC.man ├── XFreeModifiermap.man ├── XFreePixmap.man ├── XFreeStringList.man ├── XGCValues.man ├── XGContextFromGC.man ├── XGenericEventCookie.man ├── XGetAtomName.man ├── XGetAtomNames.man ├── XGetClassHint.man ├── XGetCommand.man ├── XGetErrorDatabaseText.man ├── XGetErrorText.man ├── XGetEventData.man ├── XGetFontPath.man ├── XGetFontProperty.man ├── XGetGCValues.man ├── XGetGeometry.man ├── XGetICValues.man ├── XGetIMValues.man ├── XGetIconName.man ├── XGetIconSizes.man ├── XGetImage.man ├── XGetInputFocus.man ├── XGetKeyboardControl.man ├── XGetKeyboardMapping.man ├── XGetModifierMapping.man ├── XGetMotionEvents.man ├── XGetOCValues.man ├── XGetOMValues.man ├── XGetPixel.man ├── XGetPointerControl.man ├── XGetPointerMapping.man ├── XGetRGBColormaps.man ├── XGetScreenSaver.man ├── XGetSelectionOwner.man ├── XGetSubImage.man ├── XGetTextProperty.man ├── XGetTransientForHint.man ├── XGetVisualInfo.man ├── XGetWMClientMachine.man ├── XGetWMColormapWindows.man ├── XGetWMHints.man ├── XGetWMIconName.man ├── XGetWMName.man ├── XGetWMNormalHints.man ├── XGetWMProtocols.man ├── XGetWMSizeHints.man ├── XGetWindowAttributes.man ├── XGetWindowProperty.man ├── XGetXCBConnection.man ├── XGrabButton.man ├── XGrabKey.man ├── XGrabKeyboard.man ├── XGrabPointer.man ├── XGrabServer.man ├── XGraphicsExposeEvent.man ├── XGravityEvent.man ├── XHostAddress.man ├── XIMOfIC.man ├── XIconSize.man ├── XIconifyWindow.man ├── XIfEvent.man ├── XInitImage.man ├── XInitThreads.man ├── XInsertModifiermapEntry.man ├── XInstallColormap.man ├── XInternAtom.man ├── XInternAtoms.man ├── XInternalConnectionNumbers.man ├── XIntersectRegion.man ├── XKeyEvent.man ├── XKeyboardControl.man ├── XKeycodeToKeysym.man ├── XKeymapEvent.man ├── XKeysymToKeycode.man ├── XKeysymToString.man ├── XKillClient.man ├── XListDepths.man ├── XListExtensions.man ├── XListFonts.man ├── XListFontsWithInfo.man ├── XListHosts.man ├── XListInstalledColormaps.man ├── XListPixmapFormats.man ├── XListProperties.man ├── XLoadFont.man ├── XLoadQueryFont.man ├── XLocaleOfFontSet.man ├── XLocaleOfIM.man ├── XLocaleOfOM.man ├── XLockDisplay.man ├── XLookupColor.man ├── XLookupKeysym.man ├── XLookupString.man ├── XLowerWindow.man ├── XMapEvent.man ├── XMapRaised.man ├── XMapRequestEvent.man ├── XMapSubwindows.man ├── XMapWindow.man ├── XMappingEvent.man ├── XMaskEvent.man ├── XMatchVisualInfo.man ├── XMaxRequestSize.man ├── XModifierKeymap.man ├── XMotionEvent.man ├── XMoveResizeWindow.man ├── XMoveWindow.man ├── XNewModifiermap.man ├── XNextEvent.man ├── XNoExposeEvent.man ├── XNoOp.man ├── XOMOfOC.man ├── XOffsetRegion.man ├── XOpenDisplay.man ├── XOpenIM.man ├── XOpenOM.man ├── XParseColor.man ├── XParseGeometry.man ├── XPeekEvent.man ├── XPeekIfEvent.man ├── XPending.man ├── XPixmapFormatValues.man ├── XPoint.man ├── XPointInRegion.man ├── XPolygonRegion.man ├── XProcessInternalConnection.man ├── XPropertyEvent.man ├── XPutBackEvent.man ├── XPutImage.man ├── XPutPixel.man ├── XQueryBestCursor.man ├── XQueryBestSize.man ├── XQueryBestStipple.man ├── XQueryBestTile.man ├── XQueryColor.man ├── XQueryColors.man ├── XQueryExtension.man ├── XQueryFont.man ├── XQueryKeymap.man ├── XQueryPointer.man ├── XQueryTextExtents.man ├── XQueryTextExtents16.man ├── XQueryTree.man ├── XRaiseWindow.man ├── XReadBitmapFile.man ├── XReadBitmapFileData.man ├── XRebindKeysym.man ├── XRecolorCursor.man ├── XReconfigureWMWindow.man ├── XRectInRegion.man ├── XRectangle.man ├── XRefreshKeyboardMapping.man ├── XRegisterIMInstantiateCallback.man ├── XRemoveConnectionWatch.man ├── XRemoveFromSaveSet.man ├── XRemoveHost.man ├── XRemoveHosts.man ├── XReparentEvent.man ├── XReparentWindow.man ├── XResetScreenSaver.man ├── XResizeRequestEvent.man ├── XResizeWindow.man ├── XResourceManagerString.man ├── XRestackWindows.man ├── XRotateBuffers.man ├── XRotateWindowProperties.man ├── XSaveContext.man ├── XScreenNumberOfScreen.man ├── XScreenResourceString.man ├── XSegment.man ├── XSelectInput.man ├── XSelectionClearEvent.man ├── XSelectionEvent.man ├── XSelectionRequestEvent.man ├── XSendEvent.man ├── XSetAccessControl.man ├── XSetAfterFunction.man ├── XSetArcMode.man ├── XSetBackground.man ├── XSetClassHint.man ├── XSetClipMask.man ├── XSetClipOrigin.man ├── XSetClipRectangles.man ├── XSetCloseDownMode.man ├── XSetCommand.man ├── XSetDashes.man ├── XSetErrorHandler.man ├── XSetEventQueueOwner.man ├── XSetFillRule.man ├── XSetFillStyle.man ├── XSetFont.man ├── XSetFontPath.man ├── XSetForeground.man ├── XSetFunction.man ├── XSetGraphicsExposure.man ├── XSetICFocus.man ├── XSetICValues.man ├── XSetIMValues.man ├── XSetIOErrorHandler.man ├── XSetIconName.man ├── XSetIconSizes.man ├── XSetInputFocus.man ├── XSetLineAttributes.man ├── XSetLocaleModifiers.man ├── XSetModifierMapping.man ├── XSetOCValues.man ├── XSetOMValues.man ├── XSetPlaneMask.man ├── XSetPointerMapping.man ├── XSetRGBColormaps.man ├── XSetRegion.man ├── XSetScreenSaver.man ├── XSetSelectionOwner.man ├── XSetState.man ├── XSetStipple.man ├── XSetSubwindowMode.man ├── XSetTSOrigin.man ├── XSetTextProperty.man ├── XSetTile.man ├── XSetTransientForHint.man ├── XSetWMClientMachine.man ├── XSetWMColormapWindows.man ├── XSetWMHints.man ├── XSetWMIconName.man ├── XSetWMName.man ├── XSetWMNormalHints.man ├── XSetWMProperties.man ├── XSetWMProtocols.man ├── XSetWMSizeHints.man ├── XSetWindowAttributes.man ├── XSetWindowBackground.man ├── XSetWindowBackgroundPixmap.man ├── XSetWindowBorder.man ├── XSetWindowBorderPixmap.man ├── XSetWindowBorderWidth.man ├── XSetWindowColormap.man ├── XShrinkRegion.man ├── XSizeHints.man ├── XStandardColormap.man ├── XStoreBuffer.man ├── XStoreBytes.man ├── XStoreColor.man ├── XStoreColors.man ├── XStoreName.man ├── XStoreNamedColor.man ├── XStringListToTextProperty.man ├── XStringToKeysym.man ├── XSubImage.man ├── XSubtractRegion.man ├── XSupportsLocale.man ├── XSync.man ├── XSynchronize.man ├── XTextExtents.man ├── XTextExtents16.man ├── XTextItem.man ├── XTextItem16.man ├── XTextProperty.man ├── XTextPropertyToStringList.man ├── XTextWidth.man ├── XTextWidth16.man ├── XTimeCoord.man ├── XTranslateCoordinates.man ├── XUndefineCursor.man ├── XUngrabButton.man ├── XUngrabKey.man ├── XUngrabKeyboard.man ├── XUngrabPointer.man ├── XUngrabServer.man ├── XUninstallColormap.man ├── XUnionRectWithRegion.man ├── XUnionRegion.man ├── XUniqueContext.man ├── XUnloadFont.man ├── XUnlockDisplay.man ├── XUnmapEvent.man ├── XUnmapSubwindows.man ├── XUnmapWindow.man ├── XUnregisterIMInstantiateCallback.man ├── XUnsetICFocus.man ├── XVaCreateNestedList.man ├── XVisibilityEvent.man ├── XVisualIDFromVisual.man ├── XVisualInfo.man ├── XWMGeometry.man ├── XWMHints.man ├── XWarpPointer.man ├── XWindowAttributes.man ├── XWindowChanges.man ├── XWindowEvent.man ├── XWithdrawWindow.man ├── XWriteBitmapFile.man ├── XXorRegion.man ├── XcmsAllocColor.man ├── XcmsAllocNamedColor.man ├── XcmsCCCOfColormap.man ├── XcmsCIELab.man ├── XcmsCIELabQueryMaxC.man ├── XcmsCIELabQueryMaxL.man ├── XcmsCIELabQueryMaxLC.man ├── XcmsCIELabQueryMinL.man ├── XcmsCIELuv.man ├── XcmsCIELuvQueryMaxC.man ├── XcmsCIELuvQueryMaxL.man ├── XcmsCIELuvQueryMaxLC.man ├── XcmsCIELuvQueryMinL.man ├── XcmsCIEXYZ.man ├── XcmsCIEuvY.man ├── XcmsCIExyY.man ├── XcmsColor.man ├── XcmsConvertColors.man ├── XcmsCreateCCC.man ├── XcmsDefaultCCC.man ├── XcmsFreeCCC.man ├── XcmsLookupColor.man ├── XcmsPad.man ├── XcmsQueryBlack.man ├── XcmsQueryBlue.man ├── XcmsQueryColor.man ├── XcmsQueryColors.man ├── XcmsQueryGreen.man ├── XcmsQueryRed.man ├── XcmsQueryWhite.man ├── XcmsRGB.man ├── XcmsRGBi.man ├── XcmsSetCCCOfColormap.man ├── XcmsSetWhiteAdjustProc.man ├── XcmsSetWhitePoint.man ├── XcmsStoreColor.man ├── XcmsStoreColors.man ├── XcmsTekHVC.man ├── XcmsTekHVCQueryMaxC.man ├── XcmsTekHVCQueryMaxV.man ├── XcmsTekHVCQueryMaxVC.man ├── XcmsTekHVCQueryMaxVSamples.man ├── XcmsTekHVCQueryMinV.man ├── XmbDrawImageString.man ├── XmbDrawString.man ├── XmbDrawText.man ├── XmbLookupString.man ├── XmbResetIC.man ├── XmbSetWMProperties.man ├── XmbTextEscapement.man ├── XmbTextExtents.man ├── XmbTextListToTextProperty.man ├── XmbTextPerCharExtents.man ├── XmbTextPropertyToTextList.man ├── XrmCombineDatabase.man ├── XrmCombineFileDatabase.man ├── XrmDestroyDatabase.man ├── XrmEnumerateDatabase.man ├── XrmGetDatabase.man ├── XrmGetFileDatabase.man ├── XrmGetResource.man ├── XrmGetStringDatabase.man ├── XrmInitialize.man ├── XrmLocaleOfDatabase.man ├── XrmMergeDatabases.man ├── XrmOptionDescRec.man ├── XrmOptionKind.man ├── XrmParseCommand.man ├── XrmPermStringToQuark.man ├── XrmPutFileDatabase.man ├── XrmPutLineResource.man ├── XrmPutResource.man ├── XrmPutStringResource.man ├── XrmQGetResource.man ├── XrmQGetSearchList.man ├── XrmQGetSearchResource.man ├── XrmQPutResource.man ├── XrmQPutStringResource.man ├── XrmQuarkToString.man ├── XrmSetDatabase.man ├── XrmStringToBindingQuarkList.man ├── XrmStringToQuark.man ├── XrmStringToQuarkList.man ├── XrmUniqueQuark.man ├── XrmValue.man ├── Xutf8DrawImageString.man ├── Xutf8DrawString.man ├── Xutf8DrawText.man ├── Xutf8LookupString.man ├── Xutf8ResetIC.man ├── Xutf8SetWMProperties.man ├── Xutf8TextEscapement.man ├── Xutf8TextExtents.man ├── Xutf8TextListToTextProperty.man ├── Xutf8TextPerCharExtents.man ├── Xutf8TextPropertyToTextList.man ├── XwcDrawImageString.man ├── XwcDrawString.man ├── XwcDrawText.man ├── XwcFreeStringList.man ├── XwcLookupString.man ├── XwcResetIC.man ├── XwcTextEscapement.man ├── XwcTextExtents.man ├── XwcTextListToTextProperty.man ├── XwcTextPerCharExtents.man ├── XwcTextPropertyToTextList.man └── xkb │ ├── Makefile.am │ ├── XkbActionCtrls.man │ ├── XkbAddDeviceLedInfo.man │ ├── XkbAddGeomColor.man │ ├── XkbAddGeomDoodad.man │ ├── XkbAddGeomKey.man │ ├── XkbAddGeomKeyAlias.man │ ├── XkbAddGeomOutline.man │ ├── XkbAddGeomOverlay.man │ ├── XkbAddGeomOverlayKey.man │ ├── XkbAddGeomOverlayRow.man │ ├── XkbAddGeomProperty.man │ ├── XkbAddGeomRow.man │ ├── XkbAddGeomSection.man │ ├── XkbAddGeomShape.man │ ├── XkbAddSymInterpret.man │ ├── XkbAllocClientMap.man │ ├── XkbAllocCompatMap.man │ ├── XkbAllocControls.man │ ├── XkbAllocDeviceInfo.man │ ├── XkbAllocDeviceLedInfo.man │ ├── XkbAllocGeomColors.man │ ├── XkbAllocGeomDoodads.man │ ├── XkbAllocGeomKeyAliases.man │ ├── XkbAllocGeomKeys.man │ ├── XkbAllocGeomOutlines.man │ ├── XkbAllocGeomOverlayKeys.man │ ├── XkbAllocGeomOverlayRows.man │ ├── XkbAllocGeomOverlays.man │ ├── XkbAllocGeomPoints.man │ ├── XkbAllocGeomProps.man │ ├── XkbAllocGeomRows.man │ ├── XkbAllocGeomSectionDoodads.man │ ├── XkbAllocGeomSections.man │ ├── XkbAllocGeomShapes.man │ ├── XkbAllocGeometry.man │ ├── XkbAllocIndicatorMaps.man │ ├── XkbAllocKeyboard.man │ ├── XkbAllocNames.man │ ├── XkbAllocServerMap.man │ ├── XkbApplyCompatMapToKey.man │ ├── XkbBell.man │ ├── XkbBellEvent.man │ ├── XkbChangeControls.man │ ├── XkbChangeDeviceInfo.man │ ├── XkbChangeEnabledControls.man │ ├── XkbChangeIndicators.man │ ├── XkbChangeMap.man │ ├── XkbChangeNames.man │ ├── XkbChangeTypesOfKey.man │ ├── XkbComputeRowBounds.man │ ├── XkbComputeSectionBounds.man │ ├── XkbComputeShapeBounds.man │ ├── XkbComputeShapeTop.man │ ├── XkbCopyKeyType.man │ ├── XkbCopyKeyTypes.man │ ├── XkbDeviceBell.man │ ├── XkbDeviceBellEvent.man │ ├── XkbFindOverlayForKey.man │ ├── XkbForceBell.man │ ├── XkbForceDeviceBell.man │ ├── XkbFreeClientMap.man │ ├── XkbFreeCompatMap.man │ ├── XkbFreeComponentList.man │ ├── XkbFreeControls.man │ ├── XkbFreeDeviceInfo.man │ ├── XkbFreeGeomColors.man │ ├── XkbFreeGeomDoodads.man │ ├── XkbFreeGeomKeyAliases.man │ ├── XkbFreeGeomKeys.man │ ├── XkbFreeGeomOutlines.man │ ├── XkbFreeGeomOverlayKeys.man │ ├── XkbFreeGeomOverlayRows.man │ ├── XkbFreeGeomOverlays.man │ ├── XkbFreeGeomPoints.man │ ├── XkbFreeGeomProperties.man │ ├── XkbFreeGeomRows.man │ ├── XkbFreeGeomSections.man │ ├── XkbFreeGeomShapes.man │ ├── XkbFreeGeometry.man │ ├── XkbFreeIndicatorMaps.man │ ├── XkbFreeKeyboard.man │ ├── XkbFreeNames.man │ ├── XkbFreeServerMap.man │ ├── XkbGetAccessXTimeout.man │ ├── XkbGetAutoRepeatRate.man │ ├── XkbGetAutoResetControls.man │ ├── XkbGetBounceKeysDelay.man │ ├── XkbGetCompatMap.man │ ├── XkbGetControls.man │ ├── XkbGetControlsChanges.man │ ├── XkbGetDetectableAutoRepeat.man │ ├── XkbGetDeviceButtonActions.man │ ├── XkbGetDeviceInfo.man │ ├── XkbGetDeviceInfoChanges.man │ ├── XkbGetDeviceLedInfo.man │ ├── XkbGetGeometry.man │ ├── XkbGetIndicatorChanges.man │ ├── XkbGetIndicatorMap.man │ ├── XkbGetIndicatorState.man │ ├── XkbGetKeyActions.man │ ├── XkbGetKeyBehaviors.man │ ├── XkbGetKeyExplicitComponents.man │ ├── XkbGetKeyModifierMap.man │ ├── XkbGetKeySyms.man │ ├── XkbGetKeyTypes.man │ ├── XkbGetKeyVirtualModMap.man │ ├── XkbGetKeyboard.man │ ├── XkbGetKeyboardByName.man │ ├── XkbGetMap.man │ ├── XkbGetNameChanges.man │ ├── XkbGetNamedDeviceIndicator.man │ ├── XkbGetNamedGeometry.man │ ├── XkbGetNamedIndicator.man │ ├── XkbGetNames.man │ ├── XkbGetSlowKeysDelay.man │ ├── XkbGetState.man │ ├── XkbGetStickyKeysOptions.man │ ├── XkbGetUpdatedMap.man │ ├── XkbGetVirtualMods.man │ ├── XkbGetXlibControls.man │ ├── XkbIgnoreExtension.man │ ├── XkbInitCanonicalKeyTypes.man │ ├── XkbKeyAction.man │ ├── XkbKeyActionEntry.man │ ├── XkbKeyActionsPtr.man │ ├── XkbKeyGroupInfo.man │ ├── XkbKeyGroupWidth.man │ ├── XkbKeyGroupsWidth.man │ ├── XkbKeyHasActions.man │ ├── XkbKeyNumActions.man │ ├── XkbKeyNumGroups.man │ ├── XkbKeyNumSyms.man │ ├── XkbKeySymEntry.man │ ├── XkbKeySymsOffset.man │ ├── XkbKeySymsPtr.man │ ├── XkbKeyType.man │ ├── XkbKeyTypeIndex.man │ ├── XkbKeyTypesForCoreSymbols.man │ ├── XkbKeycodeToKeysym.man │ ├── XkbKeysymToModifiers.man │ ├── XkbLatchGroup.man │ ├── XkbLatchModifiers.man │ ├── XkbLibraryVersion.man │ ├── XkbListComponents.man │ ├── XkbLockGroup.man │ ├── XkbLockModifiers.man │ ├── XkbLookupKeyBinding.man │ ├── XkbLookupKeySym.man │ ├── XkbModActionVMods.man │ ├── XkbNoteControlsChanges.man │ ├── XkbNoteDeviceChanges.man │ ├── XkbNoteIndicatorChanges.man │ ├── XkbNoteNameChanges.man │ ├── XkbOpenDisplay.man │ ├── XkbOutOfRangeGroupInfo.man │ ├── XkbOutOfRangeGroupNumber.man │ ├── XkbPtrActionX.man │ ├── XkbPtrActionY.man │ ├── XkbQueryExtension.man │ ├── XkbRefreshKeyboardMapping.man │ ├── XkbResizeDeviceButtonActions.man │ ├── XkbResizeKeyActions.man │ ├── XkbResizeKeySyms.man │ ├── XkbResizeKeyType.man │ ├── XkbSAActionSetCtrls.man │ ├── XkbSAGroup.man │ ├── XkbSAPtrDfltValue.man │ ├── XkbSARedirectSetVMods.man │ ├── XkbSARedirectSetVModsMask.man │ ├── XkbSARedirectVMods.man │ ├── XkbSARedirectVModsMask.man │ ├── XkbSAScreen.man │ ├── XkbSASetGroup.man │ ├── XkbSASetPtrDfltValue.man │ ├── XkbSASetScreen.man │ ├── XkbSelectEventDetails.man │ ├── XkbSelectEvents.man │ ├── XkbSetAccessXTimeout.man │ ├── XkbSetAutoRepeatRate.man │ ├── XkbSetAutoResetControls.man │ ├── XkbSetBounceKeysDelay.man │ ├── XkbSetCompatMap.man │ ├── XkbSetControls.man │ ├── XkbSetDebuggingFlags.man │ ├── XkbSetDetectableAutoRepeat.man │ ├── XkbSetDeviceButtonActions.man │ ├── XkbSetDeviceInfo.man │ ├── XkbSetIgnoreLockMods.man │ ├── XkbSetIndicatorMap.man │ ├── XkbSetMap.man │ ├── XkbSetModActionVMods.man │ ├── XkbSetNamedDeviceIndicator.man │ ├── XkbSetNamedIndicator.man │ ├── XkbSetNames.man │ ├── XkbSetPtrActionX.man │ ├── XkbSetPtrActionY.man │ ├── XkbSetServerInternalMods.man │ ├── XkbSetXlibControls.man │ ├── XkbTranslateKeyCode.man │ ├── XkbTranslateKeySym.man │ ├── XkbUpdateMapFromCore.man │ └── XkbVirtualModsToReal.man ├── modules ├── Makefile.am ├── im │ ├── Makefile.am │ └── ximcp │ │ ├── Makefile.am │ │ ├── imCallbk.c │ │ ├── imDefFlt.c │ │ ├── imDefIc.c │ │ ├── imDefIm.c │ │ ├── imDefLkup.c │ │ ├── imDispch.c │ │ ├── imEvToWire.c │ │ ├── imExten.c │ │ ├── imImSw.c │ │ ├── imInsClbk.c │ │ ├── imInt.c │ │ ├── imLcFlt.c │ │ ├── imLcGIc.c │ │ ├── imLcIc.c │ │ ├── imLcIm.c │ │ ├── imLcLkup.c │ │ ├── imLcPrs.c │ │ ├── imLcSIc.c │ │ ├── imRm.c │ │ ├── imRmAttr.c │ │ ├── imThaiFlt.c │ │ ├── imThaiIc.c │ │ ├── imThaiIm.c │ │ ├── imTrX.c │ │ ├── imTrans.c │ │ └── imTransR.c ├── lc │ ├── Makefile.am │ ├── Utf8 │ │ ├── Makefile.am │ │ └── lcUTF8Load.c │ ├── def │ │ ├── Makefile.am │ │ └── lcDefConv.c │ └── gen │ │ ├── Makefile.am │ │ └── lcGenConv.c └── om │ ├── Makefile.am │ └── generic │ ├── Makefile.am │ ├── omDefault.c │ ├── omGeneric.c │ ├── omImText.c │ ├── omText.c │ ├── omTextEsc.c │ ├── omTextExt.c │ ├── omTextPer.c │ └── omXChar.c ├── nls ├── .gitignore ├── C │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── Makefile.am ├── am_ET.UTF-8 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── armscii-8 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── compose-check.pl ├── compose.dir.pre ├── cs_CZ.UTF-8 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── el_GR.UTF-8 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── en_US.UTF-8 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── fi_FI.UTF-8 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── georgian-academy │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── georgian-ps │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── ibm-cp1133 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── iscii-dev │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── isiri-3342 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── iso8859-1 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── iso8859-10 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── iso8859-11 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── iso8859-13 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── iso8859-14 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── iso8859-15 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── iso8859-2 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── iso8859-3 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── iso8859-4 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── iso8859-5 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── iso8859-6 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── iso8859-7 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── iso8859-8 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── iso8859-9 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── iso8859-9e │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── ja.JIS │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── ja.SJIS │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── ja │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── ja_JP.UTF-8 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── km_KH.UTF-8 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── ko │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── ko_KR.UTF-8 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── koi8-c │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── koi8-r │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── koi8-u │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── locale.alias.pre ├── locale.dir.pre ├── microsoft-cp1251 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── microsoft-cp1255 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── microsoft-cp1256 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── mulelao-1 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── nokhchi-1 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── pt_BR.UTF-8 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── pt_PT.UTF-8 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── ru_RU.UTF-8 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── sr_RS.UTF-8 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── tatar-cyr │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── th_TH.UTF-8 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── th_TH │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── tscii-0 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── vi_VN.tcvn │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── vi_VN.viscii │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── zh_CN.UTF-8 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── zh_CN.gb18030 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── zh_CN.gbk │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── zh_CN │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── zh_HK.UTF-8 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── zh_HK.big5 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── zh_HK.big5hkscs │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── zh_TW.UTF-8 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── zh_TW.big5 │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre └── zh_TW │ ├── Compose.pre │ ├── XI18N_OBJS │ └── XLC_LOCALE.pre ├── specs ├── .gitignore ├── Makefile.am ├── XIM │ ├── Makefile.am │ ├── dynamicflow.svg │ ├── dynamicflowsampleseq.svg │ ├── eventflow.svg │ ├── sampleprotocolflow1.svg │ ├── sampleprotocolflow2.svg │ ├── staticflow.svg │ ├── staticflowsampleseq.svg │ └── xim.xml ├── XKB │ ├── Makefile.am │ ├── XKBlib-1.svg │ ├── XKBlib-10.svg │ ├── XKBlib-11.svg │ ├── XKBlib-12.svg │ ├── XKBlib-13.svg │ ├── XKBlib-14.svg │ ├── XKBlib-15.svg │ ├── XKBlib-16.svg │ ├── XKBlib-17.svg │ ├── XKBlib-18.svg │ ├── XKBlib-19.svg │ ├── XKBlib-2.svg │ ├── XKBlib-20.svg │ ├── XKBlib-21.svg │ ├── XKBlib-3.svg │ ├── XKBlib-4.svg │ ├── XKBlib-5.svg │ ├── XKBlib-6.svg │ ├── XKBlib-7.svg │ ├── XKBlib-8.svg │ ├── XKBlib-9.svg │ ├── acknowledgement.xml │ ├── ch01.xml │ ├── ch02.xml │ ├── ch03.xml │ ├── ch04.xml │ ├── ch05.xml │ ├── ch06.xml │ ├── ch07.xml │ ├── ch08.xml │ ├── ch09.xml │ ├── ch10.xml │ ├── ch11.xml │ ├── ch12.xml │ ├── ch13.xml │ ├── ch14.xml │ ├── ch15.xml │ ├── ch16.xml │ ├── ch17.xml │ ├── ch18.xml │ ├── ch19.xml │ ├── ch20.xml │ ├── ch21.xml │ ├── ch22.xml │ ├── glossary.xml │ └── xkblib.xml ├── i18n │ ├── Makefile.am │ ├── compose │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── compose-chart.pl │ │ └── docbook-nl.am │ ├── framework │ │ ├── Makefile.am │ │ ├── framework.svg │ │ └── framework.xml │ ├── localedb │ │ ├── Makefile.am │ │ └── localedb.xml │ └── trans │ │ ├── Makefile.am │ │ └── trans.xml └── libX11 │ ├── AppA.xml │ ├── AppB.xml │ ├── AppC.xml │ ├── AppD.xml │ ├── CH01.xml │ ├── CH02.xml │ ├── CH03.xml │ ├── CH04.xml │ ├── CH05.xml │ ├── CH06.xml │ ├── CH07.xml │ ├── CH08.xml │ ├── CH09.xml │ ├── CH10.xml │ ├── CH11.xml │ ├── CH12.xml │ ├── CH13.xml │ ├── CH14.xml │ ├── CH15.xml │ ├── CH16.xml │ ├── Makefile.am │ ├── credits.xml │ ├── glossary.xml │ └── libX11.xml ├── src ├── .gitignore ├── AllCells.c ├── AllPlanes.c ├── AllowEv.c ├── AutoRep.c ├── Backgnd.c ├── BdrWidth.c ├── Bell.c ├── Border.c ├── ChAccCon.c ├── ChActPGb.c ├── ChClMode.c ├── ChCmap.c ├── ChGC.c ├── ChKeyCon.c ├── ChPntCon.c ├── ChProp.c ├── ChSaveSet.c ├── ChWAttrs.c ├── ChWindow.c ├── ChkIfEv.c ├── ChkMaskEv.c ├── ChkTypEv.c ├── ChkTypWEv.c ├── ChkWinEv.c ├── CirWin.c ├── CirWinDn.c ├── CirWinUp.c ├── ClDisplay.c ├── Clear.c ├── ClearArea.c ├── Cmap.h ├── ConfWind.c ├── Context.c ├── ConvSel.c ├── CopyArea.c ├── CopyCmap.c ├── CopyGC.c ├── CopyPlane.c ├── Cr.h ├── CrBFData.c ├── CrCmap.c ├── CrCursor.c ├── CrGC.c ├── CrGlCur.c ├── CrPFBData.c ├── CrPixmap.c ├── CrWindow.c ├── Cursor.c ├── DefCursor.c ├── DelProp.c ├── Depths.c ├── DestSubs.c ├── DestWind.c ├── DisName.c ├── DrArc.c ├── DrArcs.c ├── DrLine.c ├── DrLines.c ├── DrPoint.c ├── DrPoints.c ├── DrRect.c ├── DrRects.c ├── DrSegs.c ├── ErrDes.c ├── ErrHndlr.c ├── EvToWire.c ├── FSSaver.c ├── FSWrap.c ├── FetchName.c ├── FillArc.c ├── FillArcs.c ├── FillPoly.c ├── FillRct.c ├── FillRcts.c ├── FilterEv.c ├── Flush.c ├── Font.c ├── FontInfo.c ├── FontNames.c ├── FreeCmap.c ├── FreeCols.c ├── FreeCurs.c ├── FreeEData.c ├── FreeEventData.c ├── FreeGC.c ├── FreePix.c ├── GCMisc.c ├── Geom.c ├── GetAtomNm.c ├── GetColor.c ├── GetDflt.c ├── GetEventData.c ├── GetFPath.c ├── GetFProp.c ├── GetGCVals.c ├── GetGeom.c ├── GetHColor.c ├── GetHints.c ├── GetIFocus.c ├── GetImage.c ├── GetKCnt.c ├── GetMoEv.c ├── GetNrmHint.c ├── GetPCnt.c ├── GetPntMap.c ├── GetProp.c ├── GetRGBCMap.c ├── GetSOwner.c ├── GetSSaver.c ├── GetStCmap.c ├── GetTxtProp.c ├── GetWAttrs.c ├── GetWMCMapW.c ├── GetWMProto.c ├── GrButton.c ├── GrKey.c ├── GrKeybd.c ├── GrPointer.c ├── GrServer.c ├── Host.c ├── Iconify.c ├── IfEvent.c ├── ImText.c ├── ImText16.c ├── ImUtil.c ├── InitExt.c ├── InsCmap.c ├── IntAtom.c ├── Key.h ├── KeyBind.c ├── KeysymStr.c ├── KillCl.c ├── LiHosts.c ├── LiICmaps.c ├── LiProps.c ├── ListExt.c ├── LoadFont.c ├── LockDis.c ├── LookupCol.c ├── LowerWin.c ├── Macros.c ├── Makefile.am ├── MapRaised.c ├── MapSubs.c ├── MapWindow.c ├── MaskEvent.c ├── Misc.c ├── ModMap.c ├── MoveWin.c ├── NextEvent.c ├── OCWrap.c ├── OMWrap.c ├── OpenDis.c ├── ParseCmd.c ├── ParseCol.c ├── ParseGeom.c ├── PeekEvent.c ├── PeekIfEv.c ├── Pending.c ├── PixFormats.c ├── PmapBgnd.c ├── PmapBord.c ├── PolyReg.c ├── PolyTxt.c ├── PolyTxt16.c ├── PropAlloc.c ├── PutBEvent.c ├── PutImage.c ├── QuBest.c ├── QuColor.c ├── QuColors.c ├── QuCurShp.c ├── QuExt.c ├── QuKeybd.c ├── QuPntr.c ├── QuStipShp.c ├── QuTextE16.c ├── QuTextExt.c ├── QuTileShp.c ├── QuTree.c ├── Quarks.c ├── RaiseWin.c ├── RdBitF.c ├── RecolorC.c ├── ReconfWM.c ├── ReconfWin.c ├── Region.c ├── RegstFlt.c ├── RepWindow.c ├── RestackWs.c ├── RotProp.c ├── ScrResStr.c ├── SelInput.c ├── SendEvent.c ├── SetBack.c ├── SetCRects.c ├── SetClMask.c ├── SetClOrig.c ├── SetDashes.c ├── SetFPath.c ├── SetFont.c ├── SetFore.c ├── SetFunc.c ├── SetHints.c ├── SetIFocus.c ├── SetLStyle.c ├── SetLocale.c ├── SetNrmHint.c ├── SetPMask.c ├── SetPntMap.c ├── SetRGBCMap.c ├── SetSOwner.c ├── SetSSaver.c ├── SetStCmap.c ├── SetState.c ├── SetStip.c ├── SetTSOrig.c ├── SetTile.c ├── SetTxtProp.c ├── SetWMCMapW.c ├── SetWMProto.c ├── StBytes.c ├── StColor.c ├── StColors.c ├── StNColor.c ├── StName.c ├── StrKeysym.c ├── StrToText.c ├── Sync.c ├── Synchro.c ├── Text.c ├── Text16.c ├── TextExt.c ├── TextExt16.c ├── TextToStr.c ├── TrCoords.c ├── UndefCurs.c ├── UngrabBut.c ├── UngrabKbd.c ├── UngrabKey.c ├── UngrabPtr.c ├── UngrabSvr.c ├── UninsCmap.c ├── UnldFont.c ├── UnmapSubs.c ├── UnmapWin.c ├── VisUtil.c ├── WMGeom.c ├── WMProps.c ├── WarpPtr.c ├── WinEvent.c ├── Window.c ├── Withdraw.c ├── WrBitF.c ├── XErrorDB ├── Xatomtype.h ├── Xintatom.h ├── Xintconn.h ├── XlibAsync.c ├── XlibInt.c ├── XomGeneric.h ├── Xprivate.h ├── Xresinternal.h ├── Xrm.c ├── Xxcbint.h ├── evtomask.c ├── globals.c ├── imConv.c ├── locking.c ├── locking.h ├── os2Stubs.c ├── pathmax.h ├── poly.h ├── reallocarray.c ├── reallocarray.h ├── util │ ├── .gitignore │ ├── Makefile.am │ ├── makekeys.c │ └── mkks.sh ├── utlist.h ├── x11_xcb.c ├── xcb_disp.c ├── xcb_io.c ├── xcms │ ├── AddDIC.c │ ├── AddSF.c │ ├── CCC.c │ ├── Cv.h │ ├── CvColW.c │ ├── CvCols.c │ ├── HVC.c │ ├── HVCGcC.c │ ├── HVCGcV.c │ ├── HVCGcVC.c │ ├── HVCMnV.c │ ├── HVCMxC.c │ ├── HVCMxV.c │ ├── HVCMxVC.c │ ├── HVCMxVs.c │ ├── HVCWpAj.c │ ├── IdOfPr.c │ ├── LRGB.c │ ├── Lab.c │ ├── LabGcC.c │ ├── LabGcL.c │ ├── LabGcLC.c │ ├── LabMnL.c │ ├── LabMxC.c │ ├── LabMxL.c │ ├── LabMxLC.c │ ├── LabWpAj.c │ ├── Luv.c │ ├── LuvGcC.c │ ├── LuvGcL.c │ ├── LuvGcLC.c │ ├── LuvMnL.c │ ├── LuvMxC.c │ ├── LuvMxL.c │ ├── LuvMxLC.c │ ├── LuvWpAj.c │ ├── Makefile.am │ ├── OfCCC.c │ ├── PrOfId.c │ ├── QBlack.c │ ├── QBlue.c │ ├── QGreen.c │ ├── QRed.c │ ├── QWhite.c │ ├── QuCol.c │ ├── QuCols.c │ ├── SetCCC.c │ ├── SetGetCols.c │ ├── StCol.c │ ├── StCols.c │ ├── UNDEFINED.c │ ├── XRGB.c │ ├── XYZ.c │ ├── Xcms.txt │ ├── Xcmsint.h │ ├── cmsAllCol.c │ ├── cmsAllNCol.c │ ├── cmsCmap.c │ ├── cmsColNm.c │ ├── cmsGlobls.c │ ├── cmsInt.c │ ├── cmsLkCol.c │ ├── cmsMath.c │ ├── cmsProp.c │ ├── cmsTrig.c │ ├── uvY.c │ └── xyY.c ├── xkb │ ├── Makefile.am │ ├── XKB.c │ ├── XKBAlloc.c │ ├── XKBBell.c │ ├── XKBBind.c │ ├── XKBCompat.c │ ├── XKBCtrls.c │ ├── XKBCvt.c │ ├── XKBExtDev.c │ ├── XKBGAlloc.c │ ├── XKBGeom.c │ ├── XKBGetByName.c │ ├── XKBGetMap.c │ ├── XKBList.c │ ├── XKBMAlloc.c │ ├── XKBMisc.c │ ├── XKBNames.c │ ├── XKBRdBuf.c │ ├── XKBSetGeom.c │ ├── XKBSetMap.c │ ├── XKBUse.c │ ├── XKBleds.c │ └── XKBlibint.h └── xlibi18n │ ├── ICWrap.c │ ├── IMWrap.c │ ├── Makefile.am │ ├── XDefaultIMIF.c │ ├── XDefaultOMIF.c │ ├── Xaixlcint.h │ ├── XimImSw.h │ ├── XimProto.h │ ├── XimThai.h │ ├── XimTrInt.h │ ├── XimTrX.h │ ├── XimTrans.h │ ├── Ximint.h │ ├── XimintL.h │ ├── XimintP.h │ ├── XlcDL.c │ ├── XlcGeneric.h │ ├── XlcPubI.h │ ├── XlcPublic.h │ ├── XlcSL.c │ ├── Xlcint.h │ ├── imKStoUCS.c │ ├── lcCT.c │ ├── lcCharSet.c │ ├── lcConv.c │ ├── lcDB.c │ ├── lcDynamic.c │ ├── lcFile.c │ ├── lcGeneric.c │ ├── lcInit.c │ ├── lcPrTxt.c │ ├── lcPubWrap.c │ ├── lcPublic.c │ ├── lcRM.c │ ├── lcStd.c │ ├── lcTxtPr.c │ ├── lcUTF8.c │ ├── lcUniConv │ ├── 8bit_tab_to_h.c │ ├── COPYRIGHT │ ├── README │ ├── armscii_8.h │ ├── ascii.h │ ├── big5.h │ ├── big5_emacs.h │ ├── big5hkscs.h │ ├── cjk_tab_to_h.c │ ├── cp1133.h │ ├── cp1251.h │ ├── cp1255.h │ ├── cp1256.h │ ├── gb2312.h │ ├── gbk.h │ ├── georgian_academy.h │ ├── georgian_ps.h │ ├── iso8859_1.h │ ├── iso8859_10.h │ ├── iso8859_11.h │ ├── iso8859_13.h │ ├── iso8859_14.h │ ├── iso8859_15.h │ ├── iso8859_16.h │ ├── iso8859_2.h │ ├── iso8859_3.h │ ├── iso8859_4.h │ ├── iso8859_5.h │ ├── iso8859_6.h │ ├── iso8859_7.h │ ├── iso8859_8.h │ ├── iso8859_9.h │ ├── iso8859_9e.h │ ├── jisx0201.h │ ├── jisx0208.h │ ├── jisx0212.h │ ├── koi8_c.h │ ├── koi8_r.h │ ├── koi8_u.h │ ├── ksc5601.h │ ├── mulelao.h │ ├── tatar_cyr.h │ ├── tcvn.h │ ├── tis620.h │ ├── ucs2be.h │ ├── utf8.h │ └── viscii.h │ ├── lcUtil.c │ ├── lcWrap.c │ ├── mbWMProps.c │ ├── mbWrap.c │ ├── utf8WMProps.c │ ├── utf8Wrap.c │ ├── wcWrap.c │ └── xim_trans.c ├── x11-xcb.pc.in └── x11.pc.in /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/configure.ac -------------------------------------------------------------------------------- /cpprules.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/cpprules.in -------------------------------------------------------------------------------- /docbook.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/docbook.am -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/include/Makefile.am -------------------------------------------------------------------------------- /include/X11/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/include/X11/.gitignore -------------------------------------------------------------------------------- /include/X11/ImUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/include/X11/ImUtil.h -------------------------------------------------------------------------------- /include/X11/XKBlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/include/X11/XKBlib.h -------------------------------------------------------------------------------- /include/X11/Xcms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/include/X11/Xcms.h -------------------------------------------------------------------------------- /include/X11/Xlib-xcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/include/X11/Xlib-xcb.h -------------------------------------------------------------------------------- /include/X11/Xlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/include/X11/Xlib.h -------------------------------------------------------------------------------- /include/X11/Xlibint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/include/X11/Xlibint.h -------------------------------------------------------------------------------- /include/X11/Xlocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/include/X11/Xlocale.h -------------------------------------------------------------------------------- /include/X11/Xregion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/include/X11/Xregion.h -------------------------------------------------------------------------------- /include/X11/Xresource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/include/X11/Xresource.h -------------------------------------------------------------------------------- /include/X11/Xutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/include/X11/Xutil.h -------------------------------------------------------------------------------- /include/X11/cursorfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/include/X11/cursorfont.h -------------------------------------------------------------------------------- /m4/ax_define_dir.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/m4/ax_define_dir.m4 -------------------------------------------------------------------------------- /m4/ax_gcc_builtin.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/m4/ax_gcc_builtin.m4 -------------------------------------------------------------------------------- /man/AllPlanes.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/AllPlanes.man -------------------------------------------------------------------------------- /man/BitmapBitOrder.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/BitmapBitOrder.man -------------------------------------------------------------------------------- /man/BitmapPad.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/BitmapPad.man -------------------------------------------------------------------------------- /man/BitmapUnit.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/BitmapUnit.man -------------------------------------------------------------------------------- /man/BlackPixel.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/BlackPixel.man -------------------------------------------------------------------------------- /man/CellsOfScreen.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/CellsOfScreen.man -------------------------------------------------------------------------------- /man/Compose.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/Compose.man -------------------------------------------------------------------------------- /man/ConnectionNumber.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/ConnectionNumber.man -------------------------------------------------------------------------------- /man/DefaultColormap.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/DefaultColormap.man -------------------------------------------------------------------------------- /man/DefaultDepth.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/DefaultDepth.man -------------------------------------------------------------------------------- /man/DefaultGC.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/DefaultGC.man -------------------------------------------------------------------------------- /man/DefaultScreen.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/DefaultScreen.man -------------------------------------------------------------------------------- /man/DefaultVisual.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/DefaultVisual.man -------------------------------------------------------------------------------- /man/DisplayCells.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/DisplayCells.man -------------------------------------------------------------------------------- /man/DisplayHeight.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/DisplayHeight.man -------------------------------------------------------------------------------- /man/DisplayHeightMM.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/DisplayHeightMM.man -------------------------------------------------------------------------------- /man/DisplayOfCCC.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/DisplayOfCCC.man -------------------------------------------------------------------------------- /man/DisplayOfScreen.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/DisplayOfScreen.man -------------------------------------------------------------------------------- /man/DisplayPlanes.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/DisplayPlanes.man -------------------------------------------------------------------------------- /man/DisplayString.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/DisplayString.man -------------------------------------------------------------------------------- /man/DisplayWidth.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/DisplayWidth.man -------------------------------------------------------------------------------- /man/DisplayWidthMM.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/DisplayWidthMM.man -------------------------------------------------------------------------------- /man/DoesBackingStore.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/DoesBackingStore.man -------------------------------------------------------------------------------- /man/DoesSaveUnders.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/DoesSaveUnders.man -------------------------------------------------------------------------------- /man/HeightMMOfScreen.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/HeightMMOfScreen.man -------------------------------------------------------------------------------- /man/HeightOfScreen.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/HeightOfScreen.man -------------------------------------------------------------------------------- /man/ImageByteOrder.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/ImageByteOrder.man -------------------------------------------------------------------------------- /man/IsCursorKey.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/IsCursorKey.man -------------------------------------------------------------------------------- /man/IsFunctionKey.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/IsFunctionKey.man -------------------------------------------------------------------------------- /man/IsKeypadKey.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/IsKeypadKey.man -------------------------------------------------------------------------------- /man/IsModifierKey.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/IsModifierKey.man -------------------------------------------------------------------------------- /man/IsPFKey.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/IsPFKey.man -------------------------------------------------------------------------------- /man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/Makefile.am -------------------------------------------------------------------------------- /man/MaxCmapsOfScreen.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/MaxCmapsOfScreen.man -------------------------------------------------------------------------------- /man/MinCmapsOfScreen.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/MinCmapsOfScreen.man -------------------------------------------------------------------------------- /man/NextRequest.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/NextRequest.man -------------------------------------------------------------------------------- /man/PlanesOfScreen.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/PlanesOfScreen.man -------------------------------------------------------------------------------- /man/ProtocolRevision.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/ProtocolRevision.man -------------------------------------------------------------------------------- /man/ProtocolVersion.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/ProtocolVersion.man -------------------------------------------------------------------------------- /man/QLength.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/QLength.man -------------------------------------------------------------------------------- /man/RootWindow.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/RootWindow.man -------------------------------------------------------------------------------- /man/ScreenCount.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/ScreenCount.man -------------------------------------------------------------------------------- /man/ScreenOfDisplay.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/ScreenOfDisplay.man -------------------------------------------------------------------------------- /man/ServerVendor.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/ServerVendor.man -------------------------------------------------------------------------------- /man/VendorRelease.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/VendorRelease.man -------------------------------------------------------------------------------- /man/VisualOfCCC.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/VisualOfCCC.man -------------------------------------------------------------------------------- /man/WhitePixel.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/WhitePixel.man -------------------------------------------------------------------------------- /man/WidthMMOfScreen.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/WidthMMOfScreen.man -------------------------------------------------------------------------------- /man/WidthOfScreen.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/WidthOfScreen.man -------------------------------------------------------------------------------- /man/XAddHost.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XAddHost.man -------------------------------------------------------------------------------- /man/XAddHosts.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XAddHosts.man -------------------------------------------------------------------------------- /man/XAddPixel.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XAddPixel.man -------------------------------------------------------------------------------- /man/XAddToSaveSet.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XAddToSaveSet.man -------------------------------------------------------------------------------- /man/XAllocClassHint.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XAllocClassHint.man -------------------------------------------------------------------------------- /man/XAllocColor.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XAllocColor.man -------------------------------------------------------------------------------- /man/XAllocColorCells.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XAllocColorCells.man -------------------------------------------------------------------------------- /man/XAllocIconSize.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XAllocIconSize.man -------------------------------------------------------------------------------- /man/XAllocNamedColor.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XAllocNamedColor.man -------------------------------------------------------------------------------- /man/XAllocSizeHints.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XAllocSizeHints.man -------------------------------------------------------------------------------- /man/XAllocWMHints.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XAllocWMHints.man -------------------------------------------------------------------------------- /man/XAllowEvents.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XAllowEvents.man -------------------------------------------------------------------------------- /man/XAnyEvent.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XAnyEvent.man -------------------------------------------------------------------------------- /man/XArc.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XArc.man -------------------------------------------------------------------------------- /man/XAutoRepeatOff.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XAutoRepeatOff.man -------------------------------------------------------------------------------- /man/XAutoRepeatOn.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XAutoRepeatOn.man -------------------------------------------------------------------------------- /man/XBell.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XBell.man -------------------------------------------------------------------------------- /man/XButtonEvent.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XButtonEvent.man -------------------------------------------------------------------------------- /man/XChangeGC.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XChangeGC.man -------------------------------------------------------------------------------- /man/XChangeProperty.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XChangeProperty.man -------------------------------------------------------------------------------- /man/XChangeSaveSet.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XChangeSaveSet.man -------------------------------------------------------------------------------- /man/XChar2b.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XChar2b.man -------------------------------------------------------------------------------- /man/XCharStruct.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XCharStruct.man -------------------------------------------------------------------------------- /man/XCheckIfEvent.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XCheckIfEvent.man -------------------------------------------------------------------------------- /man/XCheckMaskEvent.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XCheckMaskEvent.man -------------------------------------------------------------------------------- /man/XCheckTypedEvent.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XCheckTypedEvent.man -------------------------------------------------------------------------------- /man/XCirculateEvent.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XCirculateEvent.man -------------------------------------------------------------------------------- /man/XClassHint.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XClassHint.man -------------------------------------------------------------------------------- /man/XClearArea.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XClearArea.man -------------------------------------------------------------------------------- /man/XClearWindow.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XClearWindow.man -------------------------------------------------------------------------------- /man/XClipBox.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XClipBox.man -------------------------------------------------------------------------------- /man/XCloseDisplay.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XCloseDisplay.man -------------------------------------------------------------------------------- /man/XCloseIM.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XCloseIM.man -------------------------------------------------------------------------------- /man/XCloseOM.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XCloseOM.man -------------------------------------------------------------------------------- /man/XColor.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XColor.man -------------------------------------------------------------------------------- /man/XColormapEvent.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XColormapEvent.man -------------------------------------------------------------------------------- /man/XCompose.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XCompose.man -------------------------------------------------------------------------------- /man/XConfigureEvent.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XConfigureEvent.man -------------------------------------------------------------------------------- /man/XConfigureWindow.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XConfigureWindow.man -------------------------------------------------------------------------------- /man/XConvertCase.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XConvertCase.man -------------------------------------------------------------------------------- /man/XCopyArea.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XCopyArea.man -------------------------------------------------------------------------------- /man/XCopyGC.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XCopyGC.man -------------------------------------------------------------------------------- /man/XCopyPlane.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XCopyPlane.man -------------------------------------------------------------------------------- /man/XCreateColormap.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XCreateColormap.man -------------------------------------------------------------------------------- /man/XCreateFontSet.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XCreateFontSet.man -------------------------------------------------------------------------------- /man/XCreateGC.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XCreateGC.man -------------------------------------------------------------------------------- /man/XCreateIC.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XCreateIC.man -------------------------------------------------------------------------------- /man/XCreateImage.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XCreateImage.man -------------------------------------------------------------------------------- /man/XCreateOC.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XCreateOC.man -------------------------------------------------------------------------------- /man/XCreatePixmap.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XCreatePixmap.man -------------------------------------------------------------------------------- /man/XCreateRegion.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XCreateRegion.man -------------------------------------------------------------------------------- /man/XCreateWindow.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XCreateWindow.man -------------------------------------------------------------------------------- /man/XCrossingEvent.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XCrossingEvent.man -------------------------------------------------------------------------------- /man/XDefaultString.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XDefaultString.man -------------------------------------------------------------------------------- /man/XDefineCursor.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XDefineCursor.man -------------------------------------------------------------------------------- /man/XDeleteContext.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XDeleteContext.man -------------------------------------------------------------------------------- /man/XDeleteProperty.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XDeleteProperty.man -------------------------------------------------------------------------------- /man/XDestroyIC.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XDestroyIC.man -------------------------------------------------------------------------------- /man/XDestroyImage.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XDestroyImage.man -------------------------------------------------------------------------------- /man/XDestroyOC.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XDestroyOC.man -------------------------------------------------------------------------------- /man/XDestroyRegion.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XDestroyRegion.man -------------------------------------------------------------------------------- /man/XDestroyWindow.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XDestroyWindow.man -------------------------------------------------------------------------------- /man/XDisplayKeycodes.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XDisplayKeycodes.man -------------------------------------------------------------------------------- /man/XDisplayName.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XDisplayName.man -------------------------------------------------------------------------------- /man/XDisplayOfIM.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XDisplayOfIM.man -------------------------------------------------------------------------------- /man/XDisplayOfOM.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XDisplayOfOM.man -------------------------------------------------------------------------------- /man/XDrawArc.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XDrawArc.man -------------------------------------------------------------------------------- /man/XDrawArcs.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XDrawArcs.man -------------------------------------------------------------------------------- /man/XDrawImageString.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XDrawImageString.man -------------------------------------------------------------------------------- /man/XDrawLine.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XDrawLine.man -------------------------------------------------------------------------------- /man/XDrawLines.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XDrawLines.man -------------------------------------------------------------------------------- /man/XDrawPoint.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XDrawPoint.man -------------------------------------------------------------------------------- /man/XDrawPoints.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XDrawPoints.man -------------------------------------------------------------------------------- /man/XDrawRectangle.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XDrawRectangle.man -------------------------------------------------------------------------------- /man/XDrawRectangles.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XDrawRectangles.man -------------------------------------------------------------------------------- /man/XDrawSegments.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XDrawSegments.man -------------------------------------------------------------------------------- /man/XDrawString.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XDrawString.man -------------------------------------------------------------------------------- /man/XDrawString16.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XDrawString16.man -------------------------------------------------------------------------------- /man/XDrawText.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XDrawText.man -------------------------------------------------------------------------------- /man/XDrawText16.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XDrawText16.man -------------------------------------------------------------------------------- /man/XEmptyRegion.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XEmptyRegion.man -------------------------------------------------------------------------------- /man/XEqualRegion.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XEqualRegion.man -------------------------------------------------------------------------------- /man/XErrorEvent.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XErrorEvent.man -------------------------------------------------------------------------------- /man/XEvent.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XEvent.man -------------------------------------------------------------------------------- /man/XEventsQueued.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XEventsQueued.man -------------------------------------------------------------------------------- /man/XExposeEvent.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XExposeEvent.man -------------------------------------------------------------------------------- /man/XFetchBuffer.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XFetchBuffer.man -------------------------------------------------------------------------------- /man/XFetchBytes.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XFetchBytes.man -------------------------------------------------------------------------------- /man/XFetchName.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XFetchName.man -------------------------------------------------------------------------------- /man/XFillArc.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XFillArc.man -------------------------------------------------------------------------------- /man/XFillArcs.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XFillArcs.man -------------------------------------------------------------------------------- /man/XFillPolygon.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XFillPolygon.man -------------------------------------------------------------------------------- /man/XFillRectangle.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XFillRectangle.man -------------------------------------------------------------------------------- /man/XFillRectangles.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XFillRectangles.man -------------------------------------------------------------------------------- /man/XFilterEvent.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XFilterEvent.man -------------------------------------------------------------------------------- /man/XFindContext.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XFindContext.man -------------------------------------------------------------------------------- /man/XFlush.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XFlush.man -------------------------------------------------------------------------------- /man/XFontProp.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XFontProp.man -------------------------------------------------------------------------------- /man/XFontSetExtents.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XFontSetExtents.man -------------------------------------------------------------------------------- /man/XFontStruct.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XFontStruct.man -------------------------------------------------------------------------------- /man/XFontsOfFontSet.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XFontsOfFontSet.man -------------------------------------------------------------------------------- /man/XFree.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XFree.man -------------------------------------------------------------------------------- /man/XFreeColormap.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XFreeColormap.man -------------------------------------------------------------------------------- /man/XFreeColors.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XFreeColors.man -------------------------------------------------------------------------------- /man/XFreeCursor.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XFreeCursor.man -------------------------------------------------------------------------------- /man/XFreeEventData.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XFreeEventData.man -------------------------------------------------------------------------------- /man/XFreeFont.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XFreeFont.man -------------------------------------------------------------------------------- /man/XFreeFontInfo.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XFreeFontInfo.man -------------------------------------------------------------------------------- /man/XFreeFontNames.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XFreeFontNames.man -------------------------------------------------------------------------------- /man/XFreeFontPath.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XFreeFontPath.man -------------------------------------------------------------------------------- /man/XFreeFontSet.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XFreeFontSet.man -------------------------------------------------------------------------------- /man/XFreeGC.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XFreeGC.man -------------------------------------------------------------------------------- /man/XFreeModifiermap.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XFreeModifiermap.man -------------------------------------------------------------------------------- /man/XFreePixmap.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XFreePixmap.man -------------------------------------------------------------------------------- /man/XFreeStringList.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XFreeStringList.man -------------------------------------------------------------------------------- /man/XGCValues.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGCValues.man -------------------------------------------------------------------------------- /man/XGContextFromGC.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGContextFromGC.man -------------------------------------------------------------------------------- /man/XGetAtomName.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGetAtomName.man -------------------------------------------------------------------------------- /man/XGetAtomNames.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGetAtomNames.man -------------------------------------------------------------------------------- /man/XGetClassHint.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGetClassHint.man -------------------------------------------------------------------------------- /man/XGetCommand.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGetCommand.man -------------------------------------------------------------------------------- /man/XGetErrorText.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGetErrorText.man -------------------------------------------------------------------------------- /man/XGetEventData.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGetEventData.man -------------------------------------------------------------------------------- /man/XGetFontPath.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGetFontPath.man -------------------------------------------------------------------------------- /man/XGetFontProperty.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGetFontProperty.man -------------------------------------------------------------------------------- /man/XGetGCValues.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGetGCValues.man -------------------------------------------------------------------------------- /man/XGetGeometry.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGetGeometry.man -------------------------------------------------------------------------------- /man/XGetICValues.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGetICValues.man -------------------------------------------------------------------------------- /man/XGetIMValues.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGetIMValues.man -------------------------------------------------------------------------------- /man/XGetIconName.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGetIconName.man -------------------------------------------------------------------------------- /man/XGetIconSizes.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGetIconSizes.man -------------------------------------------------------------------------------- /man/XGetImage.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGetImage.man -------------------------------------------------------------------------------- /man/XGetInputFocus.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGetInputFocus.man -------------------------------------------------------------------------------- /man/XGetMotionEvents.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGetMotionEvents.man -------------------------------------------------------------------------------- /man/XGetOCValues.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGetOCValues.man -------------------------------------------------------------------------------- /man/XGetOMValues.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGetOMValues.man -------------------------------------------------------------------------------- /man/XGetPixel.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGetPixel.man -------------------------------------------------------------------------------- /man/XGetRGBColormaps.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGetRGBColormaps.man -------------------------------------------------------------------------------- /man/XGetScreenSaver.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGetScreenSaver.man -------------------------------------------------------------------------------- /man/XGetSubImage.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGetSubImage.man -------------------------------------------------------------------------------- /man/XGetTextProperty.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGetTextProperty.man -------------------------------------------------------------------------------- /man/XGetVisualInfo.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGetVisualInfo.man -------------------------------------------------------------------------------- /man/XGetWMHints.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGetWMHints.man -------------------------------------------------------------------------------- /man/XGetWMIconName.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGetWMIconName.man -------------------------------------------------------------------------------- /man/XGetWMName.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGetWMName.man -------------------------------------------------------------------------------- /man/XGetWMProtocols.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGetWMProtocols.man -------------------------------------------------------------------------------- /man/XGetWMSizeHints.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGetWMSizeHints.man -------------------------------------------------------------------------------- /man/XGrabButton.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGrabButton.man -------------------------------------------------------------------------------- /man/XGrabKey.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGrabKey.man -------------------------------------------------------------------------------- /man/XGrabKeyboard.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGrabKeyboard.man -------------------------------------------------------------------------------- /man/XGrabPointer.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGrabPointer.man -------------------------------------------------------------------------------- /man/XGrabServer.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGrabServer.man -------------------------------------------------------------------------------- /man/XGravityEvent.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XGravityEvent.man -------------------------------------------------------------------------------- /man/XHostAddress.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XHostAddress.man -------------------------------------------------------------------------------- /man/XIMOfIC.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XIMOfIC.man -------------------------------------------------------------------------------- /man/XIconSize.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XIconSize.man -------------------------------------------------------------------------------- /man/XIconifyWindow.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XIconifyWindow.man -------------------------------------------------------------------------------- /man/XIfEvent.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XIfEvent.man -------------------------------------------------------------------------------- /man/XInitImage.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XInitImage.man -------------------------------------------------------------------------------- /man/XInitThreads.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XInitThreads.man -------------------------------------------------------------------------------- /man/XInstallColormap.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XInstallColormap.man -------------------------------------------------------------------------------- /man/XInternAtom.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XInternAtom.man -------------------------------------------------------------------------------- /man/XInternAtoms.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XInternAtoms.man -------------------------------------------------------------------------------- /man/XIntersectRegion.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XIntersectRegion.man -------------------------------------------------------------------------------- /man/XKeyEvent.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XKeyEvent.man -------------------------------------------------------------------------------- /man/XKeyboardControl.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XKeyboardControl.man -------------------------------------------------------------------------------- /man/XKeycodeToKeysym.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XKeycodeToKeysym.man -------------------------------------------------------------------------------- /man/XKeymapEvent.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XKeymapEvent.man -------------------------------------------------------------------------------- /man/XKeysymToKeycode.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XKeysymToKeycode.man -------------------------------------------------------------------------------- /man/XKeysymToString.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XKeysymToString.man -------------------------------------------------------------------------------- /man/XKillClient.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XKillClient.man -------------------------------------------------------------------------------- /man/XListDepths.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XListDepths.man -------------------------------------------------------------------------------- /man/XListExtensions.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XListExtensions.man -------------------------------------------------------------------------------- /man/XListFonts.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XListFonts.man -------------------------------------------------------------------------------- /man/XListHosts.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XListHosts.man -------------------------------------------------------------------------------- /man/XListProperties.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XListProperties.man -------------------------------------------------------------------------------- /man/XLoadFont.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XLoadFont.man -------------------------------------------------------------------------------- /man/XLoadQueryFont.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XLoadQueryFont.man -------------------------------------------------------------------------------- /man/XLocaleOfFontSet.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XLocaleOfFontSet.man -------------------------------------------------------------------------------- /man/XLocaleOfIM.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XLocaleOfIM.man -------------------------------------------------------------------------------- /man/XLocaleOfOM.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XLocaleOfOM.man -------------------------------------------------------------------------------- /man/XLockDisplay.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XLockDisplay.man -------------------------------------------------------------------------------- /man/XLookupColor.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XLookupColor.man -------------------------------------------------------------------------------- /man/XLookupKeysym.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XLookupKeysym.man -------------------------------------------------------------------------------- /man/XLookupString.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XLookupString.man -------------------------------------------------------------------------------- /man/XLowerWindow.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XLowerWindow.man -------------------------------------------------------------------------------- /man/XMapEvent.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XMapEvent.man -------------------------------------------------------------------------------- /man/XMapRaised.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XMapRaised.man -------------------------------------------------------------------------------- /man/XMapRequestEvent.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XMapRequestEvent.man -------------------------------------------------------------------------------- /man/XMapSubwindows.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XMapSubwindows.man -------------------------------------------------------------------------------- /man/XMapWindow.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XMapWindow.man -------------------------------------------------------------------------------- /man/XMappingEvent.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XMappingEvent.man -------------------------------------------------------------------------------- /man/XMaskEvent.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XMaskEvent.man -------------------------------------------------------------------------------- /man/XMatchVisualInfo.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XMatchVisualInfo.man -------------------------------------------------------------------------------- /man/XMaxRequestSize.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XMaxRequestSize.man -------------------------------------------------------------------------------- /man/XModifierKeymap.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XModifierKeymap.man -------------------------------------------------------------------------------- /man/XMotionEvent.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XMotionEvent.man -------------------------------------------------------------------------------- /man/XMoveWindow.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XMoveWindow.man -------------------------------------------------------------------------------- /man/XNewModifiermap.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XNewModifiermap.man -------------------------------------------------------------------------------- /man/XNextEvent.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XNextEvent.man -------------------------------------------------------------------------------- /man/XNoExposeEvent.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XNoExposeEvent.man -------------------------------------------------------------------------------- /man/XNoOp.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XNoOp.man -------------------------------------------------------------------------------- /man/XOMOfOC.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XOMOfOC.man -------------------------------------------------------------------------------- /man/XOffsetRegion.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XOffsetRegion.man -------------------------------------------------------------------------------- /man/XOpenDisplay.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XOpenDisplay.man -------------------------------------------------------------------------------- /man/XOpenIM.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XOpenIM.man -------------------------------------------------------------------------------- /man/XOpenOM.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XOpenOM.man -------------------------------------------------------------------------------- /man/XParseColor.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XParseColor.man -------------------------------------------------------------------------------- /man/XParseGeometry.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XParseGeometry.man -------------------------------------------------------------------------------- /man/XPeekEvent.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XPeekEvent.man -------------------------------------------------------------------------------- /man/XPeekIfEvent.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XPeekIfEvent.man -------------------------------------------------------------------------------- /man/XPending.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XPending.man -------------------------------------------------------------------------------- /man/XPoint.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XPoint.man -------------------------------------------------------------------------------- /man/XPointInRegion.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XPointInRegion.man -------------------------------------------------------------------------------- /man/XPolygonRegion.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XPolygonRegion.man -------------------------------------------------------------------------------- /man/XPropertyEvent.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XPropertyEvent.man -------------------------------------------------------------------------------- /man/XPutBackEvent.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XPutBackEvent.man -------------------------------------------------------------------------------- /man/XPutImage.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XPutImage.man -------------------------------------------------------------------------------- /man/XPutPixel.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XPutPixel.man -------------------------------------------------------------------------------- /man/XQueryBestCursor.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XQueryBestCursor.man -------------------------------------------------------------------------------- /man/XQueryBestSize.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XQueryBestSize.man -------------------------------------------------------------------------------- /man/XQueryBestTile.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XQueryBestTile.man -------------------------------------------------------------------------------- /man/XQueryColor.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XQueryColor.man -------------------------------------------------------------------------------- /man/XQueryColors.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XQueryColors.man -------------------------------------------------------------------------------- /man/XQueryExtension.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XQueryExtension.man -------------------------------------------------------------------------------- /man/XQueryFont.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XQueryFont.man -------------------------------------------------------------------------------- /man/XQueryKeymap.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XQueryKeymap.man -------------------------------------------------------------------------------- /man/XQueryPointer.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XQueryPointer.man -------------------------------------------------------------------------------- /man/XQueryTree.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XQueryTree.man -------------------------------------------------------------------------------- /man/XRaiseWindow.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XRaiseWindow.man -------------------------------------------------------------------------------- /man/XReadBitmapFile.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XReadBitmapFile.man -------------------------------------------------------------------------------- /man/XRebindKeysym.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XRebindKeysym.man -------------------------------------------------------------------------------- /man/XRecolorCursor.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XRecolorCursor.man -------------------------------------------------------------------------------- /man/XRectInRegion.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XRectInRegion.man -------------------------------------------------------------------------------- /man/XRectangle.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XRectangle.man -------------------------------------------------------------------------------- /man/XRemoveHost.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XRemoveHost.man -------------------------------------------------------------------------------- /man/XRemoveHosts.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XRemoveHosts.man -------------------------------------------------------------------------------- /man/XReparentEvent.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XReparentEvent.man -------------------------------------------------------------------------------- /man/XReparentWindow.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XReparentWindow.man -------------------------------------------------------------------------------- /man/XResizeWindow.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XResizeWindow.man -------------------------------------------------------------------------------- /man/XRestackWindows.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XRestackWindows.man -------------------------------------------------------------------------------- /man/XRotateBuffers.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XRotateBuffers.man -------------------------------------------------------------------------------- /man/XSaveContext.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSaveContext.man -------------------------------------------------------------------------------- /man/XSegment.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSegment.man -------------------------------------------------------------------------------- /man/XSelectInput.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSelectInput.man -------------------------------------------------------------------------------- /man/XSelectionEvent.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSelectionEvent.man -------------------------------------------------------------------------------- /man/XSendEvent.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSendEvent.man -------------------------------------------------------------------------------- /man/XSetArcMode.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetArcMode.man -------------------------------------------------------------------------------- /man/XSetBackground.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetBackground.man -------------------------------------------------------------------------------- /man/XSetClassHint.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetClassHint.man -------------------------------------------------------------------------------- /man/XSetClipMask.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetClipMask.man -------------------------------------------------------------------------------- /man/XSetClipOrigin.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetClipOrigin.man -------------------------------------------------------------------------------- /man/XSetCommand.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetCommand.man -------------------------------------------------------------------------------- /man/XSetDashes.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetDashes.man -------------------------------------------------------------------------------- /man/XSetErrorHandler.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetErrorHandler.man -------------------------------------------------------------------------------- /man/XSetFillRule.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetFillRule.man -------------------------------------------------------------------------------- /man/XSetFillStyle.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetFillStyle.man -------------------------------------------------------------------------------- /man/XSetFont.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetFont.man -------------------------------------------------------------------------------- /man/XSetFontPath.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetFontPath.man -------------------------------------------------------------------------------- /man/XSetForeground.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetForeground.man -------------------------------------------------------------------------------- /man/XSetFunction.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetFunction.man -------------------------------------------------------------------------------- /man/XSetICFocus.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetICFocus.man -------------------------------------------------------------------------------- /man/XSetICValues.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetICValues.man -------------------------------------------------------------------------------- /man/XSetIMValues.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetIMValues.man -------------------------------------------------------------------------------- /man/XSetIconName.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetIconName.man -------------------------------------------------------------------------------- /man/XSetIconSizes.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetIconSizes.man -------------------------------------------------------------------------------- /man/XSetInputFocus.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetInputFocus.man -------------------------------------------------------------------------------- /man/XSetOCValues.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetOCValues.man -------------------------------------------------------------------------------- /man/XSetOMValues.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetOMValues.man -------------------------------------------------------------------------------- /man/XSetPlaneMask.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetPlaneMask.man -------------------------------------------------------------------------------- /man/XSetRGBColormaps.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetRGBColormaps.man -------------------------------------------------------------------------------- /man/XSetRegion.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetRegion.man -------------------------------------------------------------------------------- /man/XSetScreenSaver.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetScreenSaver.man -------------------------------------------------------------------------------- /man/XSetState.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetState.man -------------------------------------------------------------------------------- /man/XSetStipple.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetStipple.man -------------------------------------------------------------------------------- /man/XSetTSOrigin.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetTSOrigin.man -------------------------------------------------------------------------------- /man/XSetTextProperty.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetTextProperty.man -------------------------------------------------------------------------------- /man/XSetTile.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetTile.man -------------------------------------------------------------------------------- /man/XSetWMHints.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetWMHints.man -------------------------------------------------------------------------------- /man/XSetWMIconName.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetWMIconName.man -------------------------------------------------------------------------------- /man/XSetWMName.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetWMName.man -------------------------------------------------------------------------------- /man/XSetWMProperties.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetWMProperties.man -------------------------------------------------------------------------------- /man/XSetWMProtocols.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetWMProtocols.man -------------------------------------------------------------------------------- /man/XSetWMSizeHints.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetWMSizeHints.man -------------------------------------------------------------------------------- /man/XSetWindowBorder.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSetWindowBorder.man -------------------------------------------------------------------------------- /man/XShrinkRegion.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XShrinkRegion.man -------------------------------------------------------------------------------- /man/XSizeHints.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSizeHints.man -------------------------------------------------------------------------------- /man/XStoreBuffer.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XStoreBuffer.man -------------------------------------------------------------------------------- /man/XStoreBytes.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XStoreBytes.man -------------------------------------------------------------------------------- /man/XStoreColor.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XStoreColor.man -------------------------------------------------------------------------------- /man/XStoreColors.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XStoreColors.man -------------------------------------------------------------------------------- /man/XStoreName.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XStoreName.man -------------------------------------------------------------------------------- /man/XStoreNamedColor.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XStoreNamedColor.man -------------------------------------------------------------------------------- /man/XStringToKeysym.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XStringToKeysym.man -------------------------------------------------------------------------------- /man/XSubImage.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSubImage.man -------------------------------------------------------------------------------- /man/XSubtractRegion.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSubtractRegion.man -------------------------------------------------------------------------------- /man/XSupportsLocale.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSupportsLocale.man -------------------------------------------------------------------------------- /man/XSync.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSync.man -------------------------------------------------------------------------------- /man/XSynchronize.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XSynchronize.man -------------------------------------------------------------------------------- /man/XTextExtents.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XTextExtents.man -------------------------------------------------------------------------------- /man/XTextExtents16.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XTextExtents16.man -------------------------------------------------------------------------------- /man/XTextItem.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XTextItem.man -------------------------------------------------------------------------------- /man/XTextItem16.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XTextItem16.man -------------------------------------------------------------------------------- /man/XTextProperty.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XTextProperty.man -------------------------------------------------------------------------------- /man/XTextWidth.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XTextWidth.man -------------------------------------------------------------------------------- /man/XTextWidth16.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XTextWidth16.man -------------------------------------------------------------------------------- /man/XTimeCoord.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XTimeCoord.man -------------------------------------------------------------------------------- /man/XUndefineCursor.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XUndefineCursor.man -------------------------------------------------------------------------------- /man/XUngrabButton.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XUngrabButton.man -------------------------------------------------------------------------------- /man/XUngrabKey.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XUngrabKey.man -------------------------------------------------------------------------------- /man/XUngrabKeyboard.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XUngrabKeyboard.man -------------------------------------------------------------------------------- /man/XUngrabPointer.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XUngrabPointer.man -------------------------------------------------------------------------------- /man/XUngrabServer.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XUngrabServer.man -------------------------------------------------------------------------------- /man/XUnionRegion.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XUnionRegion.man -------------------------------------------------------------------------------- /man/XUniqueContext.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XUniqueContext.man -------------------------------------------------------------------------------- /man/XUnloadFont.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XUnloadFont.man -------------------------------------------------------------------------------- /man/XUnlockDisplay.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XUnlockDisplay.man -------------------------------------------------------------------------------- /man/XUnmapEvent.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XUnmapEvent.man -------------------------------------------------------------------------------- /man/XUnmapSubwindows.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XUnmapSubwindows.man -------------------------------------------------------------------------------- /man/XUnmapWindow.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XUnmapWindow.man -------------------------------------------------------------------------------- /man/XUnsetICFocus.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XUnsetICFocus.man -------------------------------------------------------------------------------- /man/XVisibilityEvent.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XVisibilityEvent.man -------------------------------------------------------------------------------- /man/XVisualInfo.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XVisualInfo.man -------------------------------------------------------------------------------- /man/XWMGeometry.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XWMGeometry.man -------------------------------------------------------------------------------- /man/XWMHints.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XWMHints.man -------------------------------------------------------------------------------- /man/XWarpPointer.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XWarpPointer.man -------------------------------------------------------------------------------- /man/XWindowChanges.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XWindowChanges.man -------------------------------------------------------------------------------- /man/XWindowEvent.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XWindowEvent.man -------------------------------------------------------------------------------- /man/XXorRegion.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XXorRegion.man -------------------------------------------------------------------------------- /man/XcmsAllocColor.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XcmsAllocColor.man -------------------------------------------------------------------------------- /man/XcmsCIELab.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XcmsCIELab.man -------------------------------------------------------------------------------- /man/XcmsCIELuv.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XcmsCIELuv.man -------------------------------------------------------------------------------- /man/XcmsCIEXYZ.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XcmsCIEXYZ.man -------------------------------------------------------------------------------- /man/XcmsCIEuvY.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XcmsCIEuvY.man -------------------------------------------------------------------------------- /man/XcmsCIExyY.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XcmsCIExyY.man -------------------------------------------------------------------------------- /man/XcmsColor.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XcmsColor.man -------------------------------------------------------------------------------- /man/XcmsCreateCCC.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XcmsCreateCCC.man -------------------------------------------------------------------------------- /man/XcmsDefaultCCC.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XcmsDefaultCCC.man -------------------------------------------------------------------------------- /man/XcmsFreeCCC.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XcmsFreeCCC.man -------------------------------------------------------------------------------- /man/XcmsPad.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XcmsPad.man -------------------------------------------------------------------------------- /man/XcmsQueryBlack.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XcmsQueryBlack.man -------------------------------------------------------------------------------- /man/XcmsQueryBlue.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XcmsQueryBlue.man -------------------------------------------------------------------------------- /man/XcmsQueryColor.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XcmsQueryColor.man -------------------------------------------------------------------------------- /man/XcmsQueryGreen.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XcmsQueryGreen.man -------------------------------------------------------------------------------- /man/XcmsQueryRed.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XcmsQueryRed.man -------------------------------------------------------------------------------- /man/XcmsQueryWhite.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XcmsQueryWhite.man -------------------------------------------------------------------------------- /man/XcmsRGB.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XcmsRGB.man -------------------------------------------------------------------------------- /man/XcmsRGBi.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XcmsRGBi.man -------------------------------------------------------------------------------- /man/XcmsStoreColor.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XcmsStoreColor.man -------------------------------------------------------------------------------- /man/XcmsTekHVC.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XcmsTekHVC.man -------------------------------------------------------------------------------- /man/XmbDrawString.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XmbDrawString.man -------------------------------------------------------------------------------- /man/XmbDrawText.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XmbDrawText.man -------------------------------------------------------------------------------- /man/XmbResetIC.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XmbResetIC.man -------------------------------------------------------------------------------- /man/XmbTextExtents.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XmbTextExtents.man -------------------------------------------------------------------------------- /man/XrmGetDatabase.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XrmGetDatabase.man -------------------------------------------------------------------------------- /man/XrmGetResource.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XrmGetResource.man -------------------------------------------------------------------------------- /man/XrmInitialize.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XrmInitialize.man -------------------------------------------------------------------------------- /man/XrmOptionKind.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XrmOptionKind.man -------------------------------------------------------------------------------- /man/XrmPutResource.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XrmPutResource.man -------------------------------------------------------------------------------- /man/XrmSetDatabase.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XrmSetDatabase.man -------------------------------------------------------------------------------- /man/XrmUniqueQuark.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XrmUniqueQuark.man -------------------------------------------------------------------------------- /man/XrmValue.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XrmValue.man -------------------------------------------------------------------------------- /man/Xutf8DrawText.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/Xutf8DrawText.man -------------------------------------------------------------------------------- /man/Xutf8ResetIC.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/Xutf8ResetIC.man -------------------------------------------------------------------------------- /man/XwcDrawString.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XwcDrawString.man -------------------------------------------------------------------------------- /man/XwcDrawText.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XwcDrawText.man -------------------------------------------------------------------------------- /man/XwcResetIC.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XwcResetIC.man -------------------------------------------------------------------------------- /man/XwcTextExtents.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/XwcTextExtents.man -------------------------------------------------------------------------------- /man/xkb/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/xkb/Makefile.am -------------------------------------------------------------------------------- /man/xkb/XkbBell.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/xkb/XkbBell.man -------------------------------------------------------------------------------- /man/xkb/XkbGetMap.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/xkb/XkbGetMap.man -------------------------------------------------------------------------------- /man/xkb/XkbKeyType.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/xkb/XkbKeyType.man -------------------------------------------------------------------------------- /man/xkb/XkbSAGroup.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/xkb/XkbSAGroup.man -------------------------------------------------------------------------------- /man/xkb/XkbSetMap.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/man/xkb/XkbSetMap.man -------------------------------------------------------------------------------- /modules/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS=im lc om 2 | -------------------------------------------------------------------------------- /modules/im/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS=ximcp 2 | -------------------------------------------------------------------------------- /modules/lc/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS=Utf8 def gen 2 | -------------------------------------------------------------------------------- /modules/om/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS=generic 2 | -------------------------------------------------------------------------------- /nls/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/nls/.gitignore -------------------------------------------------------------------------------- /nls/C/Compose.pre: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nls/C/XI18N_OBJS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/nls/C/XI18N_OBJS -------------------------------------------------------------------------------- /nls/C/XLC_LOCALE.pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/nls/C/XLC_LOCALE.pre -------------------------------------------------------------------------------- /nls/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/nls/Makefile.am -------------------------------------------------------------------------------- /nls/am_ET.UTF-8/XI18N_OBJS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nls/am_ET.UTF-8/XLC_LOCALE.pre: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nls/compose-check.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/nls/compose-check.pl -------------------------------------------------------------------------------- /nls/compose.dir.pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/nls/compose.dir.pre -------------------------------------------------------------------------------- /nls/cs_CZ.UTF-8/XI18N_OBJS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nls/cs_CZ.UTF-8/XLC_LOCALE.pre: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nls/el_GR.UTF-8/XI18N_OBJS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nls/el_GR.UTF-8/XLC_LOCALE.pre: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nls/fi_FI.UTF-8/XI18N_OBJS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nls/fi_FI.UTF-8/XLC_LOCALE.pre: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nls/iscii-dev/Compose.pre: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nls/isiri-3342/Compose.pre: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nls/iso8859-11/Compose.pre: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nls/ja.JIS/Compose.pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/nls/ja.JIS/Compose.pre -------------------------------------------------------------------------------- /nls/ja.JIS/XI18N_OBJS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/nls/ja.JIS/XI18N_OBJS -------------------------------------------------------------------------------- /nls/ja.SJIS/XI18N_OBJS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/nls/ja.SJIS/XI18N_OBJS -------------------------------------------------------------------------------- /nls/ja/Compose.pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/nls/ja/Compose.pre -------------------------------------------------------------------------------- /nls/ja/XI18N_OBJS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/nls/ja/XI18N_OBJS -------------------------------------------------------------------------------- /nls/ja/XLC_LOCALE.pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/nls/ja/XLC_LOCALE.pre -------------------------------------------------------------------------------- /nls/ja_JP.UTF-8/Compose.pre: -------------------------------------------------------------------------------- 1 | include "X11_LOCALEDATADIR/en_US.UTF-8/Compose" 2 | -------------------------------------------------------------------------------- /nls/km_KH.UTF-8/Compose.pre: -------------------------------------------------------------------------------- 1 | include "X11_LOCALEDATADIR/en_US.UTF-8/Compose" 2 | -------------------------------------------------------------------------------- /nls/km_KH.UTF-8/XLC_LOCALE.pre: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nls/ko/Compose.pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/nls/ko/Compose.pre -------------------------------------------------------------------------------- /nls/ko/XI18N_OBJS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/nls/ko/XI18N_OBJS -------------------------------------------------------------------------------- /nls/ko/XLC_LOCALE.pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/nls/ko/XLC_LOCALE.pre -------------------------------------------------------------------------------- /nls/ko_KR.UTF-8/Compose.pre: -------------------------------------------------------------------------------- 1 | include "X11_LOCALEDATADIR/en_US.UTF-8/Compose" 2 | -------------------------------------------------------------------------------- /nls/koi8-c/Compose.pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/nls/koi8-c/Compose.pre -------------------------------------------------------------------------------- /nls/koi8-c/XI18N_OBJS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/nls/koi8-c/XI18N_OBJS -------------------------------------------------------------------------------- /nls/koi8-r/Compose.pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/nls/koi8-r/Compose.pre -------------------------------------------------------------------------------- /nls/koi8-r/XI18N_OBJS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/nls/koi8-r/XI18N_OBJS -------------------------------------------------------------------------------- /nls/koi8-u/Compose.pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/nls/koi8-u/Compose.pre -------------------------------------------------------------------------------- /nls/koi8-u/XI18N_OBJS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/nls/koi8-u/XI18N_OBJS -------------------------------------------------------------------------------- /nls/locale.alias.pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/nls/locale.alias.pre -------------------------------------------------------------------------------- /nls/locale.dir.pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/nls/locale.dir.pre -------------------------------------------------------------------------------- /nls/microsoft-cp1251/Compose.pre: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nls/microsoft-cp1255/Compose.pre: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nls/microsoft-cp1256/Compose.pre: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nls/nokhchi-1/Compose.pre: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nls/ru_RU.UTF-8/Compose.pre: -------------------------------------------------------------------------------- 1 | include "X11_LOCALEDATADIR/en_US.UTF-8/Compose" 2 | -------------------------------------------------------------------------------- /nls/sr_RS.UTF-8/XLC_LOCALE.pre: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nls/tatar-cyr/Compose.pre: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nls/th_TH.UTF-8/Compose.pre: -------------------------------------------------------------------------------- 1 | include "X11_LOCALEDATADIR/en_US.UTF-8/Compose" 2 | -------------------------------------------------------------------------------- /nls/th_TH/Compose.pre: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nls/th_TH/XI18N_OBJS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/nls/th_TH/XI18N_OBJS -------------------------------------------------------------------------------- /nls/tscii-0/Compose.pre: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nls/tscii-0/XI18N_OBJS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/nls/tscii-0/XI18N_OBJS -------------------------------------------------------------------------------- /nls/zh_CN.UTF-8/Compose.pre: -------------------------------------------------------------------------------- 1 | include "X11_LOCALEDATADIR/en_US.UTF-8/Compose" 2 | -------------------------------------------------------------------------------- /nls/zh_CN/Compose.pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/nls/zh_CN/Compose.pre -------------------------------------------------------------------------------- /nls/zh_CN/XI18N_OBJS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/nls/zh_CN/XI18N_OBJS -------------------------------------------------------------------------------- /nls/zh_HK.UTF-8/Compose.pre: -------------------------------------------------------------------------------- 1 | include "X11_LOCALEDATADIR/en_US.UTF-8/Compose" 2 | -------------------------------------------------------------------------------- /nls/zh_TW.UTF-8/Compose.pre: -------------------------------------------------------------------------------- 1 | include "X11_LOCALEDATADIR/en_US.UTF-8/Compose" 2 | -------------------------------------------------------------------------------- /nls/zh_TW/Compose.pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/nls/zh_TW/Compose.pre -------------------------------------------------------------------------------- /nls/zh_TW/XI18N_OBJS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/nls/zh_TW/XI18N_OBJS -------------------------------------------------------------------------------- /specs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/.gitignore -------------------------------------------------------------------------------- /specs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/Makefile.am -------------------------------------------------------------------------------- /specs/XIM/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/XIM/Makefile.am -------------------------------------------------------------------------------- /specs/XIM/xim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/XIM/xim.xml -------------------------------------------------------------------------------- /specs/XKB/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/XKB/Makefile.am -------------------------------------------------------------------------------- /specs/XKB/XKBlib-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/XKB/XKBlib-1.svg -------------------------------------------------------------------------------- /specs/XKB/XKBlib-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/XKB/XKBlib-2.svg -------------------------------------------------------------------------------- /specs/XKB/XKBlib-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/XKB/XKBlib-3.svg -------------------------------------------------------------------------------- /specs/XKB/XKBlib-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/XKB/XKBlib-4.svg -------------------------------------------------------------------------------- /specs/XKB/XKBlib-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/XKB/XKBlib-5.svg -------------------------------------------------------------------------------- /specs/XKB/XKBlib-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/XKB/XKBlib-6.svg -------------------------------------------------------------------------------- /specs/XKB/XKBlib-7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/XKB/XKBlib-7.svg -------------------------------------------------------------------------------- /specs/XKB/XKBlib-8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/XKB/XKBlib-8.svg -------------------------------------------------------------------------------- /specs/XKB/XKBlib-9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/XKB/XKBlib-9.svg -------------------------------------------------------------------------------- /specs/XKB/ch01.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/XKB/ch01.xml -------------------------------------------------------------------------------- /specs/XKB/ch02.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/XKB/ch02.xml -------------------------------------------------------------------------------- /specs/XKB/ch03.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/XKB/ch03.xml -------------------------------------------------------------------------------- /specs/XKB/ch04.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/XKB/ch04.xml -------------------------------------------------------------------------------- /specs/XKB/ch05.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/XKB/ch05.xml -------------------------------------------------------------------------------- /specs/XKB/ch06.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/XKB/ch06.xml -------------------------------------------------------------------------------- /specs/XKB/ch07.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/XKB/ch07.xml -------------------------------------------------------------------------------- /specs/XKB/ch08.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/XKB/ch08.xml -------------------------------------------------------------------------------- /specs/XKB/ch09.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/XKB/ch09.xml -------------------------------------------------------------------------------- /specs/XKB/ch10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/XKB/ch10.xml -------------------------------------------------------------------------------- /specs/XKB/ch11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/XKB/ch11.xml -------------------------------------------------------------------------------- /specs/XKB/ch12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/XKB/ch12.xml -------------------------------------------------------------------------------- /specs/XKB/ch13.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/XKB/ch13.xml -------------------------------------------------------------------------------- /specs/XKB/ch14.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/XKB/ch14.xml -------------------------------------------------------------------------------- /specs/XKB/ch15.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/XKB/ch15.xml -------------------------------------------------------------------------------- /specs/XKB/ch16.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/XKB/ch16.xml -------------------------------------------------------------------------------- /specs/XKB/ch17.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/XKB/ch17.xml -------------------------------------------------------------------------------- /specs/XKB/ch18.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/XKB/ch18.xml -------------------------------------------------------------------------------- /specs/XKB/ch19.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/XKB/ch19.xml -------------------------------------------------------------------------------- /specs/XKB/ch20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/XKB/ch20.xml -------------------------------------------------------------------------------- /specs/XKB/ch21.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/XKB/ch21.xml -------------------------------------------------------------------------------- /specs/XKB/ch22.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/XKB/ch22.xml -------------------------------------------------------------------------------- /specs/XKB/glossary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/XKB/glossary.xml -------------------------------------------------------------------------------- /specs/XKB/xkblib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/XKB/xkblib.xml -------------------------------------------------------------------------------- /specs/i18n/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/i18n/Makefile.am -------------------------------------------------------------------------------- /specs/i18n/compose/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated DocBook XML from a perl script 2 | *.xml 3 | -------------------------------------------------------------------------------- /specs/libX11/AppA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/libX11/AppA.xml -------------------------------------------------------------------------------- /specs/libX11/AppB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/libX11/AppB.xml -------------------------------------------------------------------------------- /specs/libX11/AppC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/libX11/AppC.xml -------------------------------------------------------------------------------- /specs/libX11/AppD.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/libX11/AppD.xml -------------------------------------------------------------------------------- /specs/libX11/CH01.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/libX11/CH01.xml -------------------------------------------------------------------------------- /specs/libX11/CH02.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/libX11/CH02.xml -------------------------------------------------------------------------------- /specs/libX11/CH03.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/libX11/CH03.xml -------------------------------------------------------------------------------- /specs/libX11/CH04.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/libX11/CH04.xml -------------------------------------------------------------------------------- /specs/libX11/CH05.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/libX11/CH05.xml -------------------------------------------------------------------------------- /specs/libX11/CH06.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/libX11/CH06.xml -------------------------------------------------------------------------------- /specs/libX11/CH07.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/libX11/CH07.xml -------------------------------------------------------------------------------- /specs/libX11/CH08.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/libX11/CH08.xml -------------------------------------------------------------------------------- /specs/libX11/CH09.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/libX11/CH09.xml -------------------------------------------------------------------------------- /specs/libX11/CH10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/libX11/CH10.xml -------------------------------------------------------------------------------- /specs/libX11/CH11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/libX11/CH11.xml -------------------------------------------------------------------------------- /specs/libX11/CH12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/libX11/CH12.xml -------------------------------------------------------------------------------- /specs/libX11/CH13.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/libX11/CH13.xml -------------------------------------------------------------------------------- /specs/libX11/CH14.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/libX11/CH14.xml -------------------------------------------------------------------------------- /specs/libX11/CH15.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/libX11/CH15.xml -------------------------------------------------------------------------------- /specs/libX11/CH16.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/specs/libX11/CH16.xml -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/AllCells.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/AllCells.c -------------------------------------------------------------------------------- /src/AllPlanes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/AllPlanes.c -------------------------------------------------------------------------------- /src/AllowEv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/AllowEv.c -------------------------------------------------------------------------------- /src/AutoRep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/AutoRep.c -------------------------------------------------------------------------------- /src/Backgnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/Backgnd.c -------------------------------------------------------------------------------- /src/BdrWidth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/BdrWidth.c -------------------------------------------------------------------------------- /src/Bell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/Bell.c -------------------------------------------------------------------------------- /src/Border.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/Border.c -------------------------------------------------------------------------------- /src/ChAccCon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/ChAccCon.c -------------------------------------------------------------------------------- /src/ChActPGb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/ChActPGb.c -------------------------------------------------------------------------------- /src/ChClMode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/ChClMode.c -------------------------------------------------------------------------------- /src/ChCmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/ChCmap.c -------------------------------------------------------------------------------- /src/ChGC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/ChGC.c -------------------------------------------------------------------------------- /src/ChKeyCon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/ChKeyCon.c -------------------------------------------------------------------------------- /src/ChPntCon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/ChPntCon.c -------------------------------------------------------------------------------- /src/ChProp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/ChProp.c -------------------------------------------------------------------------------- /src/ChSaveSet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/ChSaveSet.c -------------------------------------------------------------------------------- /src/ChWAttrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/ChWAttrs.c -------------------------------------------------------------------------------- /src/ChWindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/ChWindow.c -------------------------------------------------------------------------------- /src/ChkIfEv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/ChkIfEv.c -------------------------------------------------------------------------------- /src/ChkMaskEv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/ChkMaskEv.c -------------------------------------------------------------------------------- /src/ChkTypEv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/ChkTypEv.c -------------------------------------------------------------------------------- /src/ChkTypWEv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/ChkTypWEv.c -------------------------------------------------------------------------------- /src/ChkWinEv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/ChkWinEv.c -------------------------------------------------------------------------------- /src/CirWin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/CirWin.c -------------------------------------------------------------------------------- /src/CirWinDn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/CirWinDn.c -------------------------------------------------------------------------------- /src/CirWinUp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/CirWinUp.c -------------------------------------------------------------------------------- /src/ClDisplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/ClDisplay.c -------------------------------------------------------------------------------- /src/Clear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/Clear.c -------------------------------------------------------------------------------- /src/ClearArea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/ClearArea.c -------------------------------------------------------------------------------- /src/Cmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/Cmap.h -------------------------------------------------------------------------------- /src/ConfWind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/ConfWind.c -------------------------------------------------------------------------------- /src/Context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/Context.c -------------------------------------------------------------------------------- /src/ConvSel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/ConvSel.c -------------------------------------------------------------------------------- /src/CopyArea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/CopyArea.c -------------------------------------------------------------------------------- /src/CopyCmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/CopyCmap.c -------------------------------------------------------------------------------- /src/CopyGC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/CopyGC.c -------------------------------------------------------------------------------- /src/CopyPlane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/CopyPlane.c -------------------------------------------------------------------------------- /src/Cr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/Cr.h -------------------------------------------------------------------------------- /src/CrBFData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/CrBFData.c -------------------------------------------------------------------------------- /src/CrCmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/CrCmap.c -------------------------------------------------------------------------------- /src/CrCursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/CrCursor.c -------------------------------------------------------------------------------- /src/CrGC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/CrGC.c -------------------------------------------------------------------------------- /src/CrGlCur.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/CrGlCur.c -------------------------------------------------------------------------------- /src/CrPFBData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/CrPFBData.c -------------------------------------------------------------------------------- /src/CrPixmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/CrPixmap.c -------------------------------------------------------------------------------- /src/CrWindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/CrWindow.c -------------------------------------------------------------------------------- /src/Cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/Cursor.c -------------------------------------------------------------------------------- /src/DefCursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/DefCursor.c -------------------------------------------------------------------------------- /src/DelProp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/DelProp.c -------------------------------------------------------------------------------- /src/Depths.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/Depths.c -------------------------------------------------------------------------------- /src/DestSubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/DestSubs.c -------------------------------------------------------------------------------- /src/DestWind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/DestWind.c -------------------------------------------------------------------------------- /src/DisName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/DisName.c -------------------------------------------------------------------------------- /src/DrArc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/DrArc.c -------------------------------------------------------------------------------- /src/DrArcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/DrArcs.c -------------------------------------------------------------------------------- /src/DrLine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/DrLine.c -------------------------------------------------------------------------------- /src/DrLines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/DrLines.c -------------------------------------------------------------------------------- /src/DrPoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/DrPoint.c -------------------------------------------------------------------------------- /src/DrPoints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/DrPoints.c -------------------------------------------------------------------------------- /src/DrRect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/DrRect.c -------------------------------------------------------------------------------- /src/DrRects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/DrRects.c -------------------------------------------------------------------------------- /src/DrSegs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/DrSegs.c -------------------------------------------------------------------------------- /src/ErrDes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/ErrDes.c -------------------------------------------------------------------------------- /src/ErrHndlr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/ErrHndlr.c -------------------------------------------------------------------------------- /src/EvToWire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/EvToWire.c -------------------------------------------------------------------------------- /src/FSSaver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/FSSaver.c -------------------------------------------------------------------------------- /src/FSWrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/FSWrap.c -------------------------------------------------------------------------------- /src/FetchName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/FetchName.c -------------------------------------------------------------------------------- /src/FillArc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/FillArc.c -------------------------------------------------------------------------------- /src/FillArcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/FillArcs.c -------------------------------------------------------------------------------- /src/FillPoly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/FillPoly.c -------------------------------------------------------------------------------- /src/FillRct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/FillRct.c -------------------------------------------------------------------------------- /src/FillRcts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/FillRcts.c -------------------------------------------------------------------------------- /src/FilterEv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/FilterEv.c -------------------------------------------------------------------------------- /src/Flush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/Flush.c -------------------------------------------------------------------------------- /src/Font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/Font.c -------------------------------------------------------------------------------- /src/FontInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/FontInfo.c -------------------------------------------------------------------------------- /src/FontNames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/FontNames.c -------------------------------------------------------------------------------- /src/FreeCmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/FreeCmap.c -------------------------------------------------------------------------------- /src/FreeCols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/FreeCols.c -------------------------------------------------------------------------------- /src/FreeCurs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/FreeCurs.c -------------------------------------------------------------------------------- /src/FreeEData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/FreeEData.c -------------------------------------------------------------------------------- /src/FreeEventData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/FreeEventData.c -------------------------------------------------------------------------------- /src/FreeGC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/FreeGC.c -------------------------------------------------------------------------------- /src/FreePix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/FreePix.c -------------------------------------------------------------------------------- /src/GCMisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/GCMisc.c -------------------------------------------------------------------------------- /src/Geom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/Geom.c -------------------------------------------------------------------------------- /src/GetAtomNm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/GetAtomNm.c -------------------------------------------------------------------------------- /src/GetColor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/GetColor.c -------------------------------------------------------------------------------- /src/GetDflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/GetDflt.c -------------------------------------------------------------------------------- /src/GetEventData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/GetEventData.c -------------------------------------------------------------------------------- /src/GetFPath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/GetFPath.c -------------------------------------------------------------------------------- /src/GetFProp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/GetFProp.c -------------------------------------------------------------------------------- /src/GetGCVals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/GetGCVals.c -------------------------------------------------------------------------------- /src/GetGeom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/GetGeom.c -------------------------------------------------------------------------------- /src/GetHColor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/GetHColor.c -------------------------------------------------------------------------------- /src/GetHints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/GetHints.c -------------------------------------------------------------------------------- /src/GetIFocus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/GetIFocus.c -------------------------------------------------------------------------------- /src/GetImage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/GetImage.c -------------------------------------------------------------------------------- /src/GetKCnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/GetKCnt.c -------------------------------------------------------------------------------- /src/GetMoEv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/GetMoEv.c -------------------------------------------------------------------------------- /src/GetNrmHint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/GetNrmHint.c -------------------------------------------------------------------------------- /src/GetPCnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/GetPCnt.c -------------------------------------------------------------------------------- /src/GetPntMap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/GetPntMap.c -------------------------------------------------------------------------------- /src/GetProp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/GetProp.c -------------------------------------------------------------------------------- /src/GetRGBCMap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/GetRGBCMap.c -------------------------------------------------------------------------------- /src/GetSOwner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/GetSOwner.c -------------------------------------------------------------------------------- /src/GetSSaver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/GetSSaver.c -------------------------------------------------------------------------------- /src/GetStCmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/GetStCmap.c -------------------------------------------------------------------------------- /src/GetTxtProp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/GetTxtProp.c -------------------------------------------------------------------------------- /src/GetWAttrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/GetWAttrs.c -------------------------------------------------------------------------------- /src/GetWMCMapW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/GetWMCMapW.c -------------------------------------------------------------------------------- /src/GetWMProto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/GetWMProto.c -------------------------------------------------------------------------------- /src/GrButton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/GrButton.c -------------------------------------------------------------------------------- /src/GrKey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/GrKey.c -------------------------------------------------------------------------------- /src/GrKeybd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/GrKeybd.c -------------------------------------------------------------------------------- /src/GrPointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/GrPointer.c -------------------------------------------------------------------------------- /src/GrServer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/GrServer.c -------------------------------------------------------------------------------- /src/Host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/Host.c -------------------------------------------------------------------------------- /src/Iconify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/Iconify.c -------------------------------------------------------------------------------- /src/IfEvent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/IfEvent.c -------------------------------------------------------------------------------- /src/ImText.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/ImText.c -------------------------------------------------------------------------------- /src/ImText16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/ImText16.c -------------------------------------------------------------------------------- /src/ImUtil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/ImUtil.c -------------------------------------------------------------------------------- /src/InitExt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/InitExt.c -------------------------------------------------------------------------------- /src/InsCmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/InsCmap.c -------------------------------------------------------------------------------- /src/IntAtom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/IntAtom.c -------------------------------------------------------------------------------- /src/Key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/Key.h -------------------------------------------------------------------------------- /src/KeyBind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/KeyBind.c -------------------------------------------------------------------------------- /src/KeysymStr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/KeysymStr.c -------------------------------------------------------------------------------- /src/KillCl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/KillCl.c -------------------------------------------------------------------------------- /src/LiHosts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/LiHosts.c -------------------------------------------------------------------------------- /src/LiICmaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/LiICmaps.c -------------------------------------------------------------------------------- /src/LiProps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/LiProps.c -------------------------------------------------------------------------------- /src/ListExt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/ListExt.c -------------------------------------------------------------------------------- /src/LoadFont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/LoadFont.c -------------------------------------------------------------------------------- /src/LockDis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/LockDis.c -------------------------------------------------------------------------------- /src/LookupCol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/LookupCol.c -------------------------------------------------------------------------------- /src/LowerWin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/LowerWin.c -------------------------------------------------------------------------------- /src/Macros.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/Macros.c -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/MapRaised.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/MapRaised.c -------------------------------------------------------------------------------- /src/MapSubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/MapSubs.c -------------------------------------------------------------------------------- /src/MapWindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/MapWindow.c -------------------------------------------------------------------------------- /src/MaskEvent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/MaskEvent.c -------------------------------------------------------------------------------- /src/Misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/Misc.c -------------------------------------------------------------------------------- /src/ModMap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/ModMap.c -------------------------------------------------------------------------------- /src/MoveWin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/MoveWin.c -------------------------------------------------------------------------------- /src/NextEvent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/NextEvent.c -------------------------------------------------------------------------------- /src/OCWrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/OCWrap.c -------------------------------------------------------------------------------- /src/OMWrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/OMWrap.c -------------------------------------------------------------------------------- /src/OpenDis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/OpenDis.c -------------------------------------------------------------------------------- /src/ParseCmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/ParseCmd.c -------------------------------------------------------------------------------- /src/ParseCol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/ParseCol.c -------------------------------------------------------------------------------- /src/ParseGeom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/ParseGeom.c -------------------------------------------------------------------------------- /src/PeekEvent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/PeekEvent.c -------------------------------------------------------------------------------- /src/PeekIfEv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/PeekIfEv.c -------------------------------------------------------------------------------- /src/Pending.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/Pending.c -------------------------------------------------------------------------------- /src/PixFormats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/PixFormats.c -------------------------------------------------------------------------------- /src/PmapBgnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/PmapBgnd.c -------------------------------------------------------------------------------- /src/PmapBord.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/PmapBord.c -------------------------------------------------------------------------------- /src/PolyReg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/PolyReg.c -------------------------------------------------------------------------------- /src/PolyTxt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/PolyTxt.c -------------------------------------------------------------------------------- /src/PolyTxt16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/PolyTxt16.c -------------------------------------------------------------------------------- /src/PropAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/PropAlloc.c -------------------------------------------------------------------------------- /src/PutBEvent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/PutBEvent.c -------------------------------------------------------------------------------- /src/PutImage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/PutImage.c -------------------------------------------------------------------------------- /src/QuBest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/QuBest.c -------------------------------------------------------------------------------- /src/QuColor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/QuColor.c -------------------------------------------------------------------------------- /src/QuColors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/QuColors.c -------------------------------------------------------------------------------- /src/QuCurShp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/QuCurShp.c -------------------------------------------------------------------------------- /src/QuExt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/QuExt.c -------------------------------------------------------------------------------- /src/QuKeybd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/QuKeybd.c -------------------------------------------------------------------------------- /src/QuPntr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/QuPntr.c -------------------------------------------------------------------------------- /src/QuStipShp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/QuStipShp.c -------------------------------------------------------------------------------- /src/QuTextE16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/QuTextE16.c -------------------------------------------------------------------------------- /src/QuTextExt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/QuTextExt.c -------------------------------------------------------------------------------- /src/QuTileShp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/QuTileShp.c -------------------------------------------------------------------------------- /src/QuTree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/QuTree.c -------------------------------------------------------------------------------- /src/Quarks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/Quarks.c -------------------------------------------------------------------------------- /src/RaiseWin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/RaiseWin.c -------------------------------------------------------------------------------- /src/RdBitF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/RdBitF.c -------------------------------------------------------------------------------- /src/RecolorC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/RecolorC.c -------------------------------------------------------------------------------- /src/ReconfWM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/ReconfWM.c -------------------------------------------------------------------------------- /src/ReconfWin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/ReconfWin.c -------------------------------------------------------------------------------- /src/Region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/Region.c -------------------------------------------------------------------------------- /src/RegstFlt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/RegstFlt.c -------------------------------------------------------------------------------- /src/RepWindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/RepWindow.c -------------------------------------------------------------------------------- /src/RestackWs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/RestackWs.c -------------------------------------------------------------------------------- /src/RotProp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/RotProp.c -------------------------------------------------------------------------------- /src/ScrResStr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/ScrResStr.c -------------------------------------------------------------------------------- /src/SelInput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/SelInput.c -------------------------------------------------------------------------------- /src/SendEvent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/SendEvent.c -------------------------------------------------------------------------------- /src/SetBack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/SetBack.c -------------------------------------------------------------------------------- /src/SetCRects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/SetCRects.c -------------------------------------------------------------------------------- /src/SetClMask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/SetClMask.c -------------------------------------------------------------------------------- /src/SetClOrig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/SetClOrig.c -------------------------------------------------------------------------------- /src/SetDashes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/SetDashes.c -------------------------------------------------------------------------------- /src/SetFPath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/SetFPath.c -------------------------------------------------------------------------------- /src/SetFont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/SetFont.c -------------------------------------------------------------------------------- /src/SetFore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/SetFore.c -------------------------------------------------------------------------------- /src/SetFunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/SetFunc.c -------------------------------------------------------------------------------- /src/SetHints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/SetHints.c -------------------------------------------------------------------------------- /src/SetIFocus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/SetIFocus.c -------------------------------------------------------------------------------- /src/SetLStyle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/SetLStyle.c -------------------------------------------------------------------------------- /src/SetLocale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/SetLocale.c -------------------------------------------------------------------------------- /src/SetNrmHint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/SetNrmHint.c -------------------------------------------------------------------------------- /src/SetPMask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/SetPMask.c -------------------------------------------------------------------------------- /src/SetPntMap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/SetPntMap.c -------------------------------------------------------------------------------- /src/SetRGBCMap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/SetRGBCMap.c -------------------------------------------------------------------------------- /src/SetSOwner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/SetSOwner.c -------------------------------------------------------------------------------- /src/SetSSaver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/SetSSaver.c -------------------------------------------------------------------------------- /src/SetStCmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/SetStCmap.c -------------------------------------------------------------------------------- /src/SetState.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/SetState.c -------------------------------------------------------------------------------- /src/SetStip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/SetStip.c -------------------------------------------------------------------------------- /src/SetTSOrig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/SetTSOrig.c -------------------------------------------------------------------------------- /src/SetTile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/SetTile.c -------------------------------------------------------------------------------- /src/SetTxtProp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/SetTxtProp.c -------------------------------------------------------------------------------- /src/SetWMCMapW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/SetWMCMapW.c -------------------------------------------------------------------------------- /src/SetWMProto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/SetWMProto.c -------------------------------------------------------------------------------- /src/StBytes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/StBytes.c -------------------------------------------------------------------------------- /src/StColor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/StColor.c -------------------------------------------------------------------------------- /src/StColors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/StColors.c -------------------------------------------------------------------------------- /src/StNColor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/StNColor.c -------------------------------------------------------------------------------- /src/StName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/StName.c -------------------------------------------------------------------------------- /src/StrKeysym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/StrKeysym.c -------------------------------------------------------------------------------- /src/StrToText.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/StrToText.c -------------------------------------------------------------------------------- /src/Sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/Sync.c -------------------------------------------------------------------------------- /src/Synchro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/Synchro.c -------------------------------------------------------------------------------- /src/Text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/Text.c -------------------------------------------------------------------------------- /src/Text16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/Text16.c -------------------------------------------------------------------------------- /src/TextExt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/TextExt.c -------------------------------------------------------------------------------- /src/TextExt16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/TextExt16.c -------------------------------------------------------------------------------- /src/TextToStr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/TextToStr.c -------------------------------------------------------------------------------- /src/TrCoords.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/TrCoords.c -------------------------------------------------------------------------------- /src/UndefCurs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/UndefCurs.c -------------------------------------------------------------------------------- /src/UngrabBut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/UngrabBut.c -------------------------------------------------------------------------------- /src/UngrabKbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/UngrabKbd.c -------------------------------------------------------------------------------- /src/UngrabKey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/UngrabKey.c -------------------------------------------------------------------------------- /src/UngrabPtr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/UngrabPtr.c -------------------------------------------------------------------------------- /src/UngrabSvr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/UngrabSvr.c -------------------------------------------------------------------------------- /src/UninsCmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/UninsCmap.c -------------------------------------------------------------------------------- /src/UnldFont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/UnldFont.c -------------------------------------------------------------------------------- /src/UnmapSubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/UnmapSubs.c -------------------------------------------------------------------------------- /src/UnmapWin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/UnmapWin.c -------------------------------------------------------------------------------- /src/VisUtil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/VisUtil.c -------------------------------------------------------------------------------- /src/WMGeom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/WMGeom.c -------------------------------------------------------------------------------- /src/WMProps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/WMProps.c -------------------------------------------------------------------------------- /src/WarpPtr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/WarpPtr.c -------------------------------------------------------------------------------- /src/WinEvent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/WinEvent.c -------------------------------------------------------------------------------- /src/Window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/Window.c -------------------------------------------------------------------------------- /src/Withdraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/Withdraw.c -------------------------------------------------------------------------------- /src/WrBitF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/WrBitF.c -------------------------------------------------------------------------------- /src/XErrorDB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/XErrorDB -------------------------------------------------------------------------------- /src/Xatomtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/Xatomtype.h -------------------------------------------------------------------------------- /src/Xintatom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/Xintatom.h -------------------------------------------------------------------------------- /src/Xintconn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/Xintconn.h -------------------------------------------------------------------------------- /src/XlibAsync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/XlibAsync.c -------------------------------------------------------------------------------- /src/XlibInt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/XlibInt.c -------------------------------------------------------------------------------- /src/XomGeneric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/XomGeneric.h -------------------------------------------------------------------------------- /src/Xprivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/Xprivate.h -------------------------------------------------------------------------------- /src/Xresinternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/Xresinternal.h -------------------------------------------------------------------------------- /src/Xrm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/Xrm.c -------------------------------------------------------------------------------- /src/Xxcbint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/Xxcbint.h -------------------------------------------------------------------------------- /src/evtomask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/evtomask.c -------------------------------------------------------------------------------- /src/globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/globals.c -------------------------------------------------------------------------------- /src/imConv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/imConv.c -------------------------------------------------------------------------------- /src/locking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/locking.c -------------------------------------------------------------------------------- /src/locking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/locking.h -------------------------------------------------------------------------------- /src/os2Stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/os2Stubs.c -------------------------------------------------------------------------------- /src/pathmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/pathmax.h -------------------------------------------------------------------------------- /src/poly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/poly.h -------------------------------------------------------------------------------- /src/reallocarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/reallocarray.c -------------------------------------------------------------------------------- /src/reallocarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/reallocarray.h -------------------------------------------------------------------------------- /src/util/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/util/.gitignore -------------------------------------------------------------------------------- /src/util/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/util/Makefile.am -------------------------------------------------------------------------------- /src/util/makekeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/util/makekeys.c -------------------------------------------------------------------------------- /src/util/mkks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/util/mkks.sh -------------------------------------------------------------------------------- /src/utlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/utlist.h -------------------------------------------------------------------------------- /src/x11_xcb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/x11_xcb.c -------------------------------------------------------------------------------- /src/xcb_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcb_disp.c -------------------------------------------------------------------------------- /src/xcb_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcb_io.c -------------------------------------------------------------------------------- /src/xcms/AddDIC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/AddDIC.c -------------------------------------------------------------------------------- /src/xcms/AddSF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/AddSF.c -------------------------------------------------------------------------------- /src/xcms/CCC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/CCC.c -------------------------------------------------------------------------------- /src/xcms/Cv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/Cv.h -------------------------------------------------------------------------------- /src/xcms/CvColW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/CvColW.c -------------------------------------------------------------------------------- /src/xcms/CvCols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/CvCols.c -------------------------------------------------------------------------------- /src/xcms/HVC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/HVC.c -------------------------------------------------------------------------------- /src/xcms/HVCGcC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/HVCGcC.c -------------------------------------------------------------------------------- /src/xcms/HVCGcV.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/HVCGcV.c -------------------------------------------------------------------------------- /src/xcms/HVCGcVC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/HVCGcVC.c -------------------------------------------------------------------------------- /src/xcms/HVCMnV.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/HVCMnV.c -------------------------------------------------------------------------------- /src/xcms/HVCMxC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/HVCMxC.c -------------------------------------------------------------------------------- /src/xcms/HVCMxV.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/HVCMxV.c -------------------------------------------------------------------------------- /src/xcms/HVCMxVC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/HVCMxVC.c -------------------------------------------------------------------------------- /src/xcms/HVCMxVs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/HVCMxVs.c -------------------------------------------------------------------------------- /src/xcms/HVCWpAj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/HVCWpAj.c -------------------------------------------------------------------------------- /src/xcms/IdOfPr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/IdOfPr.c -------------------------------------------------------------------------------- /src/xcms/LRGB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/LRGB.c -------------------------------------------------------------------------------- /src/xcms/Lab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/Lab.c -------------------------------------------------------------------------------- /src/xcms/LabGcC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/LabGcC.c -------------------------------------------------------------------------------- /src/xcms/LabGcL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/LabGcL.c -------------------------------------------------------------------------------- /src/xcms/LabGcLC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/LabGcLC.c -------------------------------------------------------------------------------- /src/xcms/LabMnL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/LabMnL.c -------------------------------------------------------------------------------- /src/xcms/LabMxC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/LabMxC.c -------------------------------------------------------------------------------- /src/xcms/LabMxL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/LabMxL.c -------------------------------------------------------------------------------- /src/xcms/LabMxLC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/LabMxLC.c -------------------------------------------------------------------------------- /src/xcms/LabWpAj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/LabWpAj.c -------------------------------------------------------------------------------- /src/xcms/Luv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/Luv.c -------------------------------------------------------------------------------- /src/xcms/LuvGcC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/LuvGcC.c -------------------------------------------------------------------------------- /src/xcms/LuvGcL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/LuvGcL.c -------------------------------------------------------------------------------- /src/xcms/LuvGcLC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/LuvGcLC.c -------------------------------------------------------------------------------- /src/xcms/LuvMnL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/LuvMnL.c -------------------------------------------------------------------------------- /src/xcms/LuvMxC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/LuvMxC.c -------------------------------------------------------------------------------- /src/xcms/LuvMxL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/LuvMxL.c -------------------------------------------------------------------------------- /src/xcms/LuvMxLC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/LuvMxLC.c -------------------------------------------------------------------------------- /src/xcms/LuvWpAj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/LuvWpAj.c -------------------------------------------------------------------------------- /src/xcms/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/Makefile.am -------------------------------------------------------------------------------- /src/xcms/OfCCC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/OfCCC.c -------------------------------------------------------------------------------- /src/xcms/PrOfId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/PrOfId.c -------------------------------------------------------------------------------- /src/xcms/QBlack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/QBlack.c -------------------------------------------------------------------------------- /src/xcms/QBlue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/QBlue.c -------------------------------------------------------------------------------- /src/xcms/QGreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/QGreen.c -------------------------------------------------------------------------------- /src/xcms/QRed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/QRed.c -------------------------------------------------------------------------------- /src/xcms/QWhite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/QWhite.c -------------------------------------------------------------------------------- /src/xcms/QuCol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/QuCol.c -------------------------------------------------------------------------------- /src/xcms/QuCols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/QuCols.c -------------------------------------------------------------------------------- /src/xcms/SetCCC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/SetCCC.c -------------------------------------------------------------------------------- /src/xcms/SetGetCols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/SetGetCols.c -------------------------------------------------------------------------------- /src/xcms/StCol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/StCol.c -------------------------------------------------------------------------------- /src/xcms/StCols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/StCols.c -------------------------------------------------------------------------------- /src/xcms/UNDEFINED.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/UNDEFINED.c -------------------------------------------------------------------------------- /src/xcms/XRGB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/XRGB.c -------------------------------------------------------------------------------- /src/xcms/XYZ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/XYZ.c -------------------------------------------------------------------------------- /src/xcms/Xcms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/Xcms.txt -------------------------------------------------------------------------------- /src/xcms/Xcmsint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/Xcmsint.h -------------------------------------------------------------------------------- /src/xcms/cmsAllCol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/cmsAllCol.c -------------------------------------------------------------------------------- /src/xcms/cmsAllNCol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/cmsAllNCol.c -------------------------------------------------------------------------------- /src/xcms/cmsCmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/cmsCmap.c -------------------------------------------------------------------------------- /src/xcms/cmsColNm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/cmsColNm.c -------------------------------------------------------------------------------- /src/xcms/cmsGlobls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/cmsGlobls.c -------------------------------------------------------------------------------- /src/xcms/cmsInt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/cmsInt.c -------------------------------------------------------------------------------- /src/xcms/cmsLkCol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/cmsLkCol.c -------------------------------------------------------------------------------- /src/xcms/cmsMath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/cmsMath.c -------------------------------------------------------------------------------- /src/xcms/cmsProp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/cmsProp.c -------------------------------------------------------------------------------- /src/xcms/cmsTrig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/cmsTrig.c -------------------------------------------------------------------------------- /src/xcms/uvY.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/uvY.c -------------------------------------------------------------------------------- /src/xcms/xyY.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xcms/xyY.c -------------------------------------------------------------------------------- /src/xkb/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xkb/Makefile.am -------------------------------------------------------------------------------- /src/xkb/XKB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xkb/XKB.c -------------------------------------------------------------------------------- /src/xkb/XKBAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xkb/XKBAlloc.c -------------------------------------------------------------------------------- /src/xkb/XKBBell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xkb/XKBBell.c -------------------------------------------------------------------------------- /src/xkb/XKBBind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xkb/XKBBind.c -------------------------------------------------------------------------------- /src/xkb/XKBCompat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xkb/XKBCompat.c -------------------------------------------------------------------------------- /src/xkb/XKBCtrls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xkb/XKBCtrls.c -------------------------------------------------------------------------------- /src/xkb/XKBCvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xkb/XKBCvt.c -------------------------------------------------------------------------------- /src/xkb/XKBExtDev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xkb/XKBExtDev.c -------------------------------------------------------------------------------- /src/xkb/XKBGAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xkb/XKBGAlloc.c -------------------------------------------------------------------------------- /src/xkb/XKBGeom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xkb/XKBGeom.c -------------------------------------------------------------------------------- /src/xkb/XKBGetByName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xkb/XKBGetByName.c -------------------------------------------------------------------------------- /src/xkb/XKBGetMap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xkb/XKBGetMap.c -------------------------------------------------------------------------------- /src/xkb/XKBList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xkb/XKBList.c -------------------------------------------------------------------------------- /src/xkb/XKBMAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xkb/XKBMAlloc.c -------------------------------------------------------------------------------- /src/xkb/XKBMisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xkb/XKBMisc.c -------------------------------------------------------------------------------- /src/xkb/XKBNames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xkb/XKBNames.c -------------------------------------------------------------------------------- /src/xkb/XKBRdBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xkb/XKBRdBuf.c -------------------------------------------------------------------------------- /src/xkb/XKBSetGeom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xkb/XKBSetGeom.c -------------------------------------------------------------------------------- /src/xkb/XKBSetMap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xkb/XKBSetMap.c -------------------------------------------------------------------------------- /src/xkb/XKBUse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xkb/XKBUse.c -------------------------------------------------------------------------------- /src/xkb/XKBleds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xkb/XKBleds.c -------------------------------------------------------------------------------- /src/xkb/XKBlibint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xkb/XKBlibint.h -------------------------------------------------------------------------------- /src/xlibi18n/ICWrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xlibi18n/ICWrap.c -------------------------------------------------------------------------------- /src/xlibi18n/IMWrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xlibi18n/IMWrap.c -------------------------------------------------------------------------------- /src/xlibi18n/XimImSw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xlibi18n/XimImSw.h -------------------------------------------------------------------------------- /src/xlibi18n/XimThai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xlibi18n/XimThai.h -------------------------------------------------------------------------------- /src/xlibi18n/XimTrX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xlibi18n/XimTrX.h -------------------------------------------------------------------------------- /src/xlibi18n/Ximint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xlibi18n/Ximint.h -------------------------------------------------------------------------------- /src/xlibi18n/XimintL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xlibi18n/XimintL.h -------------------------------------------------------------------------------- /src/xlibi18n/XimintP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xlibi18n/XimintP.h -------------------------------------------------------------------------------- /src/xlibi18n/XlcDL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xlibi18n/XlcDL.c -------------------------------------------------------------------------------- /src/xlibi18n/XlcPubI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xlibi18n/XlcPubI.h -------------------------------------------------------------------------------- /src/xlibi18n/XlcSL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xlibi18n/XlcSL.c -------------------------------------------------------------------------------- /src/xlibi18n/Xlcint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xlibi18n/Xlcint.h -------------------------------------------------------------------------------- /src/xlibi18n/lcCT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xlibi18n/lcCT.c -------------------------------------------------------------------------------- /src/xlibi18n/lcConv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xlibi18n/lcConv.c -------------------------------------------------------------------------------- /src/xlibi18n/lcDB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xlibi18n/lcDB.c -------------------------------------------------------------------------------- /src/xlibi18n/lcFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xlibi18n/lcFile.c -------------------------------------------------------------------------------- /src/xlibi18n/lcInit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xlibi18n/lcInit.c -------------------------------------------------------------------------------- /src/xlibi18n/lcPrTxt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xlibi18n/lcPrTxt.c -------------------------------------------------------------------------------- /src/xlibi18n/lcRM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xlibi18n/lcRM.c -------------------------------------------------------------------------------- /src/xlibi18n/lcStd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xlibi18n/lcStd.c -------------------------------------------------------------------------------- /src/xlibi18n/lcTxtPr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xlibi18n/lcTxtPr.c -------------------------------------------------------------------------------- /src/xlibi18n/lcUTF8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xlibi18n/lcUTF8.c -------------------------------------------------------------------------------- /src/xlibi18n/lcUtil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xlibi18n/lcUtil.c -------------------------------------------------------------------------------- /src/xlibi18n/lcWrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xlibi18n/lcWrap.c -------------------------------------------------------------------------------- /src/xlibi18n/mbWrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xlibi18n/mbWrap.c -------------------------------------------------------------------------------- /src/xlibi18n/wcWrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/src/xlibi18n/wcWrap.c -------------------------------------------------------------------------------- /x11-xcb.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/x11-xcb.pc.in -------------------------------------------------------------------------------- /x11.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/libX11/HEAD/x11.pc.in --------------------------------------------------------------------------------