gitextract_crrrkqg_/ ├── .fossil-settings/ │ ├── binary-glob │ ├── crlf-glob │ ├── encoding-glob │ ├── ignore-glob │ └── manifest ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE.md │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ ├── linux-build.yml │ ├── linux-with-tcl9-build.yml │ ├── mac-build.yml │ ├── onefiledist.yml │ └── win-build.yml ├── .gitignore ├── .project ├── .settings/ │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.core.runtime.prefs ├── README.md ├── bitmaps/ │ ├── error.xbm │ ├── gray12.xbm │ ├── gray25.xbm │ ├── gray50.xbm │ ├── gray75.xbm │ ├── hourglass.xbm │ ├── info.xbm │ ├── questhead.xbm │ ├── question.xbm │ └── warning.xbm ├── changes.md ├── doc/ │ ├── 3DBorder.3 │ ├── AddOption.3 │ ├── BindTable.3 │ ├── CanvPsY.3 │ ├── CanvTkwin.3 │ ├── CanvTxtInfo.3 │ ├── Clipboard.3 │ ├── ClrSelect.3 │ ├── ConfigWidg.3 │ ├── ConfigWind.3 │ ├── CoordToWin.3 │ ├── CrtCmHdlr.3 │ ├── CrtConsoleChan.3 │ ├── CrtErrHdlr.3 │ ├── CrtGenHdlr.3 │ ├── CrtImgType.3 │ ├── CrtItemType.3 │ ├── CrtPhImgFmt.3 │ ├── CrtSelHdlr.3 │ ├── CrtWindow.3 │ ├── DeleteImg.3 │ ├── DrawFocHlt.3 │ ├── EventHndlr.3 │ ├── FindPhoto.3 │ ├── FontId.3 │ ├── GeomReq.3 │ ├── GetAnchor.3 │ ├── GetBitmap.3 │ ├── GetCapStyl.3 │ ├── GetClrmap.3 │ ├── GetColor.3 │ ├── GetCursor.3 │ ├── GetDash.3 │ ├── GetFont.3 │ ├── GetGC.3 │ ├── GetHINSTANCE.3 │ ├── GetHWND.3 │ ├── GetImage.3 │ ├── GetJoinStl.3 │ ├── GetJustify.3 │ ├── GetOption.3 │ ├── GetPixels.3 │ ├── GetPixmap.3 │ ├── GetRelief.3 │ ├── GetRootCrd.3 │ ├── GetScroll.3 │ ├── GetSelect.3 │ ├── GetUid.3 │ ├── GetVRoot.3 │ ├── GetVisual.3 │ ├── Grab.3 │ ├── HWNDToWindow.3 │ ├── HandleEvent.3 │ ├── IdToWindow.3 │ ├── ImgChanged.3 │ ├── Inactive.3 │ ├── InternAtom.3 │ ├── MainLoop.3 │ ├── MainWin.3 │ ├── MaintGeom.3 │ ├── ManageGeom.3 │ ├── MapWindow.3 │ ├── MeasureChar.3 │ ├── MoveToplev.3 │ ├── Name.3 │ ├── NameOfImg.3 │ ├── OwnSelect.3 │ ├── ParseArgv.3 │ ├── QWinEvent.3 │ ├── Restack.3 │ ├── RestrictEv.3 │ ├── SetAppName.3 │ ├── SetCaret.3 │ ├── SetClass.3 │ ├── SetClassProcs.3 │ ├── SetGrid.3 │ ├── SetOptions.3 │ ├── SetVisual.3 │ ├── StrictMotif.3 │ ├── TextLayout.3 │ ├── TkInitStubs.3 │ ├── Tk_Init.3 │ ├── Tk_Main.3 │ ├── WinUtil.3 │ ├── WindowId.3 │ ├── accessible.n │ ├── attribtable.n │ ├── bell.n │ ├── bind.n │ ├── bindtags.n │ ├── bitmap.n │ ├── busy.n │ ├── button.n │ ├── canvas.n │ ├── checkbutton.n │ ├── chooseColor.n │ ├── chooseDirectory.n │ ├── clipboard.n │ ├── colors.n │ ├── console.n │ ├── cursors.n │ ├── destroy.n │ ├── dialog.n │ ├── entry.n │ ├── event.n │ ├── fileicon.n │ ├── focus.n │ ├── focusNext.n │ ├── font.n │ ├── fontchooser.n │ ├── frame.n │ ├── getOpenFile.n │ ├── grab.n │ ├── grid.n │ ├── image.n │ ├── keysyms.n │ ├── label.n │ ├── labelframe.n │ ├── listbox.n │ ├── loadTk.n │ ├── lower.n │ ├── man.macros │ ├── menu.n │ ├── menubutton.n │ ├── message.n │ ├── messageBox.n │ ├── nsimage.n │ ├── option.n │ ├── optionMenu.n │ ├── options.n │ ├── pack.n │ ├── palette.n │ ├── panedwindow.n │ ├── photo.n │ ├── place.n │ ├── popup.n │ ├── print.n │ ├── radiobutton.n │ ├── raise.n │ ├── scale.n │ ├── scrollbar.n │ ├── selection.n │ ├── send.n │ ├── spinbox.n │ ├── sysnotify.n │ ├── systray.n │ ├── text.n │ ├── tk.n │ ├── tk_mac.n │ ├── tkerror.n │ ├── tkvars.n │ ├── tkwait.n │ ├── toplevel.n │ ├── ttk_Geometry.3 │ ├── ttk_Theme.3 │ ├── ttk_button.n │ ├── ttk_checkbutton.n │ ├── ttk_combobox.n │ ├── ttk_entry.n │ ├── ttk_frame.n │ ├── ttk_image.n │ ├── ttk_intro.n │ ├── ttk_label.n │ ├── ttk_labelframe.n │ ├── ttk_menubutton.n │ ├── ttk_notebook.n │ ├── ttk_panedwindow.n │ ├── ttk_progressbar.n │ ├── ttk_radiobutton.n │ ├── ttk_scale.n │ ├── ttk_scrollbar.n │ ├── ttk_separator.n │ ├── ttk_sizegrip.n │ ├── ttk_spinbox.n │ ├── ttk_style.n │ ├── ttk_toggleswitch.n │ ├── ttk_treeview.n │ ├── ttk_vsapi.n │ ├── ttk_widget.n │ ├── winfo.n │ ├── wish.1 │ └── wm.n ├── generic/ │ ├── README │ ├── default.h │ ├── ks_names.h │ ├── nanosvg.h │ ├── nanosvgrast.h │ ├── tk.decls │ ├── tk.h │ ├── tk3d.c │ ├── tk3d.h │ ├── tkAccessibility.c │ ├── tkArgv.c │ ├── tkArray.h │ ├── tkAtom.c │ ├── tkBind.c │ ├── tkBitmap.c │ ├── tkBusy.c │ ├── tkBusy.h │ ├── tkButton.c │ ├── tkButton.h │ ├── tkCanvArc.c │ ├── tkCanvBmap.c │ ├── tkCanvImg.c │ ├── tkCanvLine.c │ ├── tkCanvPoly.c │ ├── tkCanvPs.c │ ├── tkCanvText.c │ ├── tkCanvUtil.c │ ├── tkCanvWind.c │ ├── tkCanvas.c │ ├── tkCanvas.h │ ├── tkClipboard.c │ ├── tkCmds.c │ ├── tkColor.c │ ├── tkColor.h │ ├── tkConfig.c │ ├── tkConsole.c │ ├── tkCursor.c │ ├── tkDList.h │ ├── tkDecls.h │ ├── tkEntry.c │ ├── tkEntry.h │ ├── tkError.c │ ├── tkEvent.c │ ├── tkFileFilter.c │ ├── tkFileFilter.h │ ├── tkFocus.c │ ├── tkFont.c │ ├── tkFont.h │ ├── tkFrame.c │ ├── tkGC.c │ ├── tkGeometry.c │ ├── tkGet.c │ ├── tkGrab.c │ ├── tkGrid.c │ ├── tkIcu.c │ ├── tkImage.c │ ├── tkImgBmap.c │ ├── tkImgGIF.c │ ├── tkImgListFormat.c │ ├── tkImgPNG.c │ ├── tkImgPPM.c │ ├── tkImgPhInstance.c │ ├── tkImgPhoto.c │ ├── tkImgPhoto.h │ ├── tkImgSVGnano.c │ ├── tkImgUtil.c │ ├── tkInt.decls │ ├── tkInt.h │ ├── tkIntDecls.h │ ├── tkIntPlatDecls.h │ ├── tkIntXlibDecls.h │ ├── tkListbox.c │ ├── tkMacWinMenu.c │ ├── tkMain.c │ ├── tkMenu.c │ ├── tkMenu.h │ ├── tkMenuDraw.c │ ├── tkMenubutton.c │ ├── tkMenubutton.h │ ├── tkMessage.c │ ├── tkObj.c │ ├── tkOldConfig.c │ ├── tkOption.c │ ├── tkPack.c │ ├── tkPanedWindow.c │ ├── tkPkgConfig.c │ ├── tkPlace.c │ ├── tkPlatDecls.h │ ├── tkPointer.c │ ├── tkPort.h │ ├── tkRectOval.c │ ├── tkScale.c │ ├── tkScale.h │ ├── tkScrollbar.c │ ├── tkScrollbar.h │ ├── tkSelect.c │ ├── tkSelect.h │ ├── tkSquare.c │ ├── tkStubInit.c │ ├── tkStubLib.c │ ├── tkStyle.c │ ├── tkTest.c │ ├── tkText.c │ ├── tkText.h │ ├── tkTextBTree.c │ ├── tkTextDisp.c │ ├── tkTextImage.c │ ├── tkTextIndex.c │ ├── tkTextMark.c │ ├── tkTextTag.c │ ├── tkTextWind.c │ ├── tkTrig.c │ ├── tkUndo.c │ ├── tkUndo.h │ ├── tkUtil.c │ ├── tkVisual.c │ ├── tkWindow.c │ └── ttk/ │ ├── ttk.decls │ ├── ttkBlink.c │ ├── ttkButton.c │ ├── ttkCache.c │ ├── ttkClamTheme.c │ ├── ttkClassicTheme.c │ ├── ttkDecls.h │ ├── ttkDefaultTheme.c │ ├── ttkElements.c │ ├── ttkEntry.c │ ├── ttkFrame.c │ ├── ttkImage.c │ ├── ttkInit.c │ ├── ttkLabel.c │ ├── ttkLayout.c │ ├── ttkManager.c │ ├── ttkManager.h │ ├── ttkNotebook.c │ ├── ttkPanedwindow.c │ ├── ttkProgress.c │ ├── ttkScale.c │ ├── ttkScroll.c │ ├── ttkScrollbar.c │ ├── ttkSeparator.c │ ├── ttkSquare.c │ ├── ttkState.c │ ├── ttkStubInit.c │ ├── ttkStubLib.c │ ├── ttkTagSet.c │ ├── ttkTheme.c │ ├── ttkTheme.h │ ├── ttkThemeInt.h │ ├── ttkToggleswitch.c │ ├── ttkTrace.c │ ├── ttkTrack.c │ ├── ttkTreeview.c │ ├── ttkWidget.c │ └── ttkWidget.h ├── library/ │ ├── accessibility.tcl │ ├── bgerror.tcl │ ├── button.tcl │ ├── choosedir.tcl │ ├── clrpick.tcl │ ├── comdlg.tcl │ ├── console.tcl │ ├── demos/ │ │ ├── README │ │ ├── accessiblewidget │ │ ├── anilabel.tcl │ │ ├── aniwave.tcl │ │ ├── arrow.tcl │ │ ├── bind.tcl │ │ ├── bitmap.tcl │ │ ├── browse │ │ ├── button.tcl │ │ ├── check.tcl │ │ ├── clrpick.tcl │ │ ├── colors.tcl │ │ ├── combo.tcl │ │ ├── cscroll.tcl │ │ ├── ctext.tcl │ │ ├── dialog1.tcl │ │ ├── dialog2.tcl │ │ ├── en.msg │ │ ├── entry1.tcl │ │ ├── entry2.tcl │ │ ├── entry3.tcl │ │ ├── filebox.tcl │ │ ├── floor.tcl │ │ ├── fontchoose.tcl │ │ ├── form.tcl │ │ ├── goldberg.tcl │ │ ├── hello │ │ ├── hscale.tcl │ │ ├── icon.tcl │ │ ├── image1.tcl │ │ ├── image2.tcl │ │ ├── images/ │ │ │ ├── flagdown.xbm │ │ │ ├── flagup.xbm │ │ │ ├── gray25.xbm │ │ │ ├── letters.xbm │ │ │ ├── noletter.xbm │ │ │ ├── pattern.xbm │ │ │ └── teapot.ppm │ │ ├── items.tcl │ │ ├── ixset │ │ ├── knightstour.tcl │ │ ├── label.tcl │ │ ├── labelframe.tcl │ │ ├── mac_styles.tcl │ │ ├── mac_tabs.tcl │ │ ├── mac_wm.tcl │ │ ├── mclist.tcl │ │ ├── menu.tcl │ │ ├── menubu.tcl │ │ ├── msgbox.tcl │ │ ├── nl.msg │ │ ├── paned1.tcl │ │ ├── paned2.tcl │ │ ├── pendulum.tcl │ │ ├── plot.tcl │ │ ├── print.tcl │ │ ├── puzzle.tcl │ │ ├── radio.tcl │ │ ├── rmt │ │ ├── rolodex │ │ ├── ruler.tcl │ │ ├── sayings.tcl │ │ ├── search.tcl │ │ ├── spin.tcl │ │ ├── square │ │ ├── states.tcl │ │ ├── style.tcl │ │ ├── systray.tcl │ │ ├── tclIndex │ │ ├── tcolor │ │ ├── text.tcl │ │ ├── textpeer.tcl │ │ ├── timer │ │ ├── toolbar.tcl │ │ ├── tree.tcl │ │ ├── ttkbut.tcl │ │ ├── ttkmenu.tcl │ │ ├── ttknote.tcl │ │ ├── ttkpane.tcl │ │ ├── ttkprogress.tcl │ │ ├── ttkscale.tcl │ │ ├── ttkspin.tcl │ │ ├── twind.tcl │ │ ├── unicodeout.tcl │ │ ├── vscale.tcl │ │ ├── widget │ │ └── windowicons.tcl │ ├── dialog.tcl │ ├── entry.tcl │ ├── fileicon.tcl │ ├── focus.tcl │ ├── fontchooser.tcl │ ├── iconbadges.tcl │ ├── iconlist.tcl │ ├── icons.tcl │ ├── images/ │ │ ├── README │ │ ├── logo.eps │ │ └── pwrdLogo.eps │ ├── listbox.tcl │ ├── megawidget.tcl │ ├── menu.tcl │ ├── mkpsenc.tcl │ ├── msgbox.tcl │ ├── msgs/ │ │ ├── cs.msg │ │ ├── da.msg │ │ ├── de.msg │ │ ├── el.msg │ │ ├── en.msg │ │ ├── en_gb.msg │ │ ├── eo.msg │ │ ├── es.msg │ │ ├── fi.msg │ │ ├── fr.msg │ │ ├── hu.msg │ │ ├── it.msg │ │ ├── nl.msg │ │ ├── pl.msg │ │ ├── pt.msg │ │ ├── ru.msg │ │ ├── sv.msg │ │ └── zh_cn.msg │ ├── optMenu.tcl │ ├── palette.tcl │ ├── panedwindow.tcl │ ├── print.tcl │ ├── safetk.tcl │ ├── scale.tcl │ ├── scaling.tcl │ ├── scrlbar.tcl │ ├── spinbox.tcl │ ├── systray.tcl │ ├── tclIndex │ ├── tearoff.tcl │ ├── text.tcl │ ├── tk.tcl │ ├── tkfbox.tcl │ ├── ttk/ │ │ ├── altTheme.tcl │ │ ├── aquaTheme.tcl │ │ ├── button.tcl │ │ ├── clamTheme.tcl │ │ ├── classicTheme.tcl │ │ ├── combobox.tcl │ │ ├── cursors.tcl │ │ ├── defaults.tcl │ │ ├── elements.tcl │ │ ├── entry.tcl │ │ ├── fonts.tcl │ │ ├── menubutton.tcl │ │ ├── notebook.tcl │ │ ├── panedwindow.tcl │ │ ├── progress.tcl │ │ ├── scale.tcl │ │ ├── scrollbar.tcl │ │ ├── sizegrip.tcl │ │ ├── spinbox.tcl │ │ ├── toggleswitch.tcl │ │ ├── treeview.tcl │ │ ├── ttk.tcl │ │ ├── utils.tcl │ │ ├── vistaTheme.tcl │ │ ├── wideSpinbox.tcl │ │ └── winTheme.tcl │ └── xmfbox.tcl ├── license.terms ├── macosx/ │ ├── Credits.html.in │ ├── GNUmakefile │ ├── README │ ├── Tk-Info.plist.in │ ├── Tk.icns │ ├── Tk.tiff │ ├── Wish-Info.plist.in │ ├── Wish.sdef │ ├── configure.ac │ ├── tkMacOSX.h │ ├── tkMacOSXAccessibility.c │ ├── tkMacOSXBitmap.c │ ├── tkMacOSXButton.c │ ├── tkMacOSXClipboard.c │ ├── tkMacOSXColor.c │ ├── tkMacOSXColor.h │ ├── tkMacOSXConfig.c │ ├── tkMacOSXConstants.h │ ├── tkMacOSXCursor.c │ ├── tkMacOSXCursors.h │ ├── tkMacOSXDebug.c │ ├── tkMacOSXDebug.h │ ├── tkMacOSXDefault.h │ ├── tkMacOSXDialog.c │ ├── tkMacOSXDraw.c │ ├── tkMacOSXEmbed.c │ ├── tkMacOSXEntry.c │ ├── tkMacOSXEvent.c │ ├── tkMacOSXFileTypes.c │ ├── tkMacOSXFont.c │ ├── tkMacOSXFont.h │ ├── tkMacOSXHLEvents.c │ ├── tkMacOSXImage.c │ ├── tkMacOSXImage.h │ ├── tkMacOSXInit.c │ ├── tkMacOSXInt.h │ ├── tkMacOSXKeyEvent.c │ ├── tkMacOSXKeyboard.c │ ├── tkMacOSXKeysyms.h │ ├── tkMacOSXMenu.c │ ├── tkMacOSXMenubutton.c │ ├── tkMacOSXMenus.c │ ├── tkMacOSXMouseEvent.c │ ├── tkMacOSXNotify.c │ ├── tkMacOSXPort.h │ ├── tkMacOSXPrint.c │ ├── tkMacOSXPrivate.h │ ├── tkMacOSXRegion.c │ ├── tkMacOSXScrlbr.c │ ├── tkMacOSXSend.c │ ├── tkMacOSXServices.c │ ├── tkMacOSXSubwindows.c │ ├── tkMacOSXSysTray.c │ ├── tkMacOSXTest.c │ ├── tkMacOSXWindowEvent.c │ ├── tkMacOSXWm.c │ ├── tkMacOSXWm.h │ ├── tkMacOSXXCursors.h │ ├── tkMacOSXXStubs.c │ ├── ttkMacOSXTheme.c │ └── ttkMacOSXTheme.h ├── tests/ │ ├── README │ ├── all.tcl │ ├── arc.tcl │ ├── attribtable.test │ ├── bell.test │ ├── bevel.tcl │ ├── bgerror.test │ ├── bind.test │ ├── bitmap.test │ ├── border.test │ ├── busy.test │ ├── butGeom.tcl │ ├── butGeom2.tcl │ ├── button.test │ ├── canvImg.test │ ├── canvMoveto.test │ ├── canvPs.test │ ├── canvPsArc.tcl │ ├── canvPsBmap.tcl │ ├── canvPsGrph.tcl │ ├── canvPsImg.tcl │ ├── canvPsText.tcl │ ├── canvRect.test │ ├── canvText.test │ ├── canvWind.test │ ├── canvas.test │ ├── choosedir.test │ ├── clipboard.test │ ├── clrpick.test │ ├── cluster.test │ ├── cmap.tcl │ ├── cmds.test │ ├── color.test │ ├── config.test │ ├── constraints.tcl │ ├── cursor.test │ ├── dialog.test │ ├── embed.test │ ├── entry.test │ ├── event.test │ ├── face.xbm │ ├── filebox.test │ ├── flagdown.xbm │ ├── flagup.xbm │ ├── focus.test │ ├── focusTcl.test │ ├── font.test │ ├── fontchooser.test │ ├── frame.test │ ├── geometry.test │ ├── get.test │ ├── grab.test │ ├── grid.test │ ├── image.test │ ├── imgBmap.test │ ├── imgListFormat.test │ ├── imgPNG.test │ ├── imgPPM.test │ ├── imgPhoto.test │ ├── imgSVGnano.test │ ├── listbox.test │ ├── main.tcl │ ├── main.test │ ├── menu.test │ ├── menuDraw.test │ ├── menubut.test │ ├── message.test │ ├── msgbox.test │ ├── obj.test │ ├── option.file1 │ ├── option.file2 │ ├── option.file3 │ ├── option.test │ ├── pack.test │ ├── packgrid.test │ ├── panedwindow.test │ ├── pkgconfig.test │ ├── place.test │ ├── raise.test │ ├── safe.test │ ├── safePrimarySelection.test │ ├── scale.test │ ├── scrollbar.test │ ├── select.test │ ├── send.test │ ├── spinbox.test │ ├── systray.test │ ├── teapot.ppm │ ├── testutils.GUIDE │ ├── testutils.tcl │ ├── testutils.test │ ├── text.test │ ├── textBTree.test │ ├── textDisp.test │ ├── textImage.test │ ├── textIndex.test │ ├── textMark.test │ ├── textTag.test │ ├── textWind.test │ ├── tk.test │ ├── ttk/ │ │ ├── all.tcl │ │ ├── checkbutton.test │ │ ├── combobox.test │ │ ├── entry.test │ │ ├── image.test │ │ ├── labelframe.test │ │ ├── layout.test │ │ ├── notebook.test │ │ ├── panedwindow.test │ │ ├── progressbar.test │ │ ├── radiobutton.test │ │ ├── scale.test │ │ ├── scrollbar.test │ │ ├── spinbox.test │ │ ├── toggleswitch.test │ │ ├── treetags.test │ │ ├── treeview.test │ │ ├── ttk.test │ │ ├── validate.test │ │ └── vsapi.test │ ├── unixButton.test │ ├── unixEmbed.test │ ├── unixFont.test │ ├── unixMenu.test │ ├── unixSelect.test │ ├── unixWm.test │ ├── util.test │ ├── visual.test │ ├── visual_bb.test │ ├── winButton.test │ ├── winClipboard.test │ ├── winDialog.test │ ├── winFont.test │ ├── winMenu.test │ ├── winMsgbox.test │ ├── winSend.test │ ├── winWm.test │ ├── window.test │ ├── winfo.test │ ├── wm.test │ └── xmfbox.test ├── unix/ │ ├── Makefile.in │ ├── README │ ├── aclocal.m4 │ ├── bidi/ │ │ ├── Headers/ │ │ │ └── SheenBidi/ │ │ │ ├── SBAlgorithm.h │ │ │ ├── SBAllocator.h │ │ │ ├── SBAttributeInfo.h │ │ │ ├── SBAttributeList.h │ │ │ ├── SBAttributeRegistry.h │ │ │ ├── SBBase.h │ │ │ ├── SBBidiType.h │ │ │ ├── SBCodepoint.h │ │ │ ├── SBCodepointSequence.h │ │ │ ├── SBConfig.h │ │ │ ├── SBGeneralCategory.h │ │ │ ├── SBLine.h │ │ │ ├── SBMirrorLocator.h │ │ │ ├── SBParagraph.h │ │ │ ├── SBRun.h │ │ │ ├── SBScript.h │ │ │ ├── SBScriptLocator.h │ │ │ ├── SBText.h │ │ │ ├── SBTextConfig.h │ │ │ ├── SBTextIterators.h │ │ │ ├── SBTextType.h │ │ │ ├── SBVersion.h │ │ │ └── SheenBidi.h │ │ ├── LICENSE_SHEENBIDI │ │ ├── SheenBidi.c │ │ └── Source/ │ │ ├── API/ │ │ │ ├── SBAlgorithm.c │ │ │ ├── SBAlgorithm.h │ │ │ ├── SBAllocator.c │ │ │ ├── SBAllocator.h │ │ │ ├── SBAssert.h │ │ │ ├── SBAttributeInfo.h │ │ │ ├── SBAttributeList.c │ │ │ ├── SBAttributeList.h │ │ │ ├── SBAttributeRegistry.c │ │ │ ├── SBAttributeRegistry.h │ │ │ ├── SBBase.c │ │ │ ├── SBBase.h │ │ │ ├── SBCodepoint.c │ │ │ ├── SBCodepoint.h │ │ │ ├── SBCodepointSequence.c │ │ │ ├── SBCodepointSequence.h │ │ │ ├── SBLine.c │ │ │ ├── SBLine.h │ │ │ ├── SBLog.c │ │ │ ├── SBLog.h │ │ │ ├── SBMirrorLocator.c │ │ │ ├── SBMirrorLocator.h │ │ │ ├── SBParagraph.c │ │ │ ├── SBParagraph.h │ │ │ ├── SBScriptLocator.c │ │ │ ├── SBScriptLocator.h │ │ │ ├── SBText.c │ │ │ ├── SBText.h │ │ │ ├── SBTextConfig.c │ │ │ ├── SBTextConfig.h │ │ │ ├── SBTextIterators.c │ │ │ └── SBTextIterators.h │ │ ├── Core/ │ │ │ ├── AtomicFlag.h │ │ │ ├── AtomicPointer.h │ │ │ ├── AtomicUInt.h │ │ │ ├── List.c │ │ │ ├── List.h │ │ │ ├── Memory.c │ │ │ ├── Memory.h │ │ │ ├── Object.c │ │ │ ├── Object.h │ │ │ ├── Once.c │ │ │ ├── Once.h │ │ │ ├── ThreadFence.h │ │ │ └── ThreadLocalStorage.h │ │ ├── Data/ │ │ │ ├── BidiTypeLookup.c │ │ │ ├── BidiTypeLookup.h │ │ │ ├── GeneralCategoryLookup.c │ │ │ ├── GeneralCategoryLookup.h │ │ │ ├── PairingLookup.c │ │ │ ├── PairingLookup.h │ │ │ ├── ScriptLookup.c │ │ │ └── ScriptLookup.h │ │ ├── Script/ │ │ │ ├── ScriptStack.c │ │ │ └── ScriptStack.h │ │ ├── Text/ │ │ │ ├── AttributeDictionary.c │ │ │ ├── AttributeDictionary.h │ │ │ ├── AttributeManager.c │ │ │ └── AttributeManager.h │ │ └── UBA/ │ │ ├── BidiChain.c │ │ ├── BidiChain.h │ │ ├── BracketQueue.c │ │ ├── BracketQueue.h │ │ ├── BracketType.h │ │ ├── IsolatingRun.c │ │ ├── IsolatingRun.h │ │ ├── LevelRun.c │ │ ├── LevelRun.h │ │ ├── RunExtrema.h │ │ ├── RunKind.h │ │ ├── RunQueue.c │ │ ├── RunQueue.h │ │ ├── StatusStack.c │ │ └── StatusStack.h │ ├── configure │ ├── configure.ac │ ├── install-sh │ ├── installManPage │ ├── tcl.m4 │ ├── tk.pc.in │ ├── tk.spec │ ├── tkAppInit.c │ ├── tkConfig.h.in │ ├── tkConfig.sh.in │ ├── tkUnix.c │ ├── tkUnix3d.c │ ├── tkUnixAccessibility.c │ ├── tkUnixBidiFont.c │ ├── tkUnixButton.c │ ├── tkUnixColor.c │ ├── tkUnixConfig.c │ ├── tkUnixCursor.c │ ├── tkUnixDefault.h │ ├── tkUnixDraw.c │ ├── tkUnixEmbed.c │ ├── tkUnixEvent.c │ ├── tkUnixFocus.c │ ├── tkUnixFont.c │ ├── tkUnixInit.c │ ├── tkUnixInt.h │ ├── tkUnixKey.c │ ├── tkUnixMenu.c │ ├── tkUnixMenubu.c │ ├── tkUnixPort.h │ ├── tkUnixPrint.c │ ├── tkUnixRFont.c │ ├── tkUnixScale.c │ ├── tkUnixScrlbr.c │ ├── tkUnixSelect.c │ ├── tkUnixSend.c │ ├── tkUnixSysNotify.c │ ├── tkUnixSysTray.c │ ├── tkUnixWm.c │ └── tkUnixXId.c ├── win/ │ ├── Makefile.in │ ├── README │ ├── aclocal.m4 │ ├── buildall.vc.bat │ ├── configure │ ├── configure.ac │ ├── gitmanifest.in │ ├── makefile.vc │ ├── nmakehlp.c │ ├── rc/ │ │ ├── cursor00.cur │ │ ├── cursor02.cur │ │ ├── cursor04.cur │ │ ├── cursor06.cur │ │ ├── cursor08.cur │ │ ├── cursor0a.cur │ │ ├── cursor0c.cur │ │ ├── cursor0e.cur │ │ ├── cursor10.cur │ │ ├── cursor12.cur │ │ ├── cursor14.cur │ │ ├── cursor16.cur │ │ ├── cursor18.cur │ │ ├── cursor1a.cur │ │ ├── cursor1c.cur │ │ ├── cursor1e.cur │ │ ├── cursor20.cur │ │ ├── cursor22.cur │ │ ├── cursor24.cur │ │ ├── cursor26.cur │ │ ├── cursor28.cur │ │ ├── cursor2a.cur │ │ ├── cursor2c.cur │ │ ├── cursor2e.cur │ │ ├── cursor30.cur │ │ ├── cursor32.cur │ │ ├── cursor34.cur │ │ ├── cursor36.cur │ │ ├── cursor38.cur │ │ ├── cursor3a.cur │ │ ├── cursor3c.cur │ │ ├── cursor3e.cur │ │ ├── cursor40.cur │ │ ├── cursor42.cur │ │ ├── cursor44.cur │ │ ├── cursor46.cur │ │ ├── cursor48.cur │ │ ├── cursor4a.cur │ │ ├── cursor4c.cur │ │ ├── cursor4e.cur │ │ ├── cursor50.cur │ │ ├── cursor52.cur │ │ ├── cursor54.cur │ │ ├── cursor56.cur │ │ ├── cursor58.cur │ │ ├── cursor5a.cur │ │ ├── cursor5c.cur │ │ ├── cursor5e.cur │ │ ├── cursor60.cur │ │ ├── cursor62.cur │ │ ├── cursor64.cur │ │ ├── cursor66.cur │ │ ├── cursor68.cur │ │ ├── cursor6a.cur │ │ ├── cursor6c.cur │ │ ├── cursor6e.cur │ │ ├── cursor70.cur │ │ ├── cursor72.cur │ │ ├── cursor74.cur │ │ ├── cursor76.cur │ │ ├── cursor78.cur │ │ ├── cursor7a.cur │ │ ├── cursor7c.cur │ │ ├── cursor7e.cur │ │ ├── cursor80.cur │ │ ├── cursor82.cur │ │ ├── cursor84.cur │ │ ├── cursor86.cur │ │ ├── cursor88.cur │ │ ├── cursor8a.cur │ │ ├── cursor8c.cur │ │ ├── cursor8e.cur │ │ ├── cursor90.cur │ │ ├── cursor92.cur │ │ ├── cursor94.cur │ │ ├── cursor96.cur │ │ ├── cursor98.cur │ │ ├── cursor9a.cur │ │ ├── tk.rc │ │ ├── tk_base.rc │ │ ├── tktest.rc │ │ └── wish.rc │ ├── rules-ext.vc │ ├── rules.vc │ ├── stubs.c │ ├── svnmanifest.in │ ├── targets.vc │ ├── tcl.m4 │ ├── tkConfig.sh.in │ ├── tkUuid.h.in │ ├── tkWin.h │ ├── tkWin32Dll.c │ ├── tkWin3d.c │ ├── tkWinAccessibility.c │ ├── tkWinButton.c │ ├── tkWinClipboard.c │ ├── tkWinColor.c │ ├── tkWinConfig.c │ ├── tkWinCursor.c │ ├── tkWinDefault.h │ ├── tkWinDialog.c │ ├── tkWinDraw.c │ ├── tkWinEmbed.c │ ├── tkWinFont.c │ ├── tkWinGDI.c │ ├── tkWinIco.c │ ├── tkWinIco.h │ ├── tkWinImage.c │ ├── tkWinInit.c │ ├── tkWinInt.h │ ├── tkWinKey.c │ ├── tkWinMenu.c │ ├── tkWinPixmap.c │ ├── tkWinPointer.c │ ├── tkWinPort.h │ ├── tkWinRegion.c │ ├── tkWinScrlbr.c │ ├── tkWinSend.c │ ├── tkWinSendCom.c │ ├── tkWinSendCom.h │ ├── tkWinSysTray.c │ ├── tkWinTest.c │ ├── tkWinWindow.c │ ├── tkWinWm.c │ ├── tkWinX.c │ ├── ttkWinMonitor.c │ ├── ttkWinTheme.c │ ├── ttkWinVistaTheme.c │ ├── winMain.c │ └── wish.exe.manifest.in └── xlib/ ├── X11/ │ ├── DECkeysym.h │ ├── HPkeysym.h │ ├── Sunkeysym.h │ ├── X.h │ ├── XF86keysym.h │ ├── Xatom.h │ ├── Xfuncproto.h │ ├── Xlib.h │ ├── Xutil.h │ ├── ap_keysym.h │ ├── cursorfont.h │ ├── keysym.h │ └── keysymdef.h ├── rgb.txt ├── xbytes.h ├── xcolors.c ├── xdraw.c ├── xgc.c ├── ximage.c └── xutil.c