├── .gitattributes ├── .gitignore ├── COPYING.LGPL.txt ├── COPYING.modifiedLGPL.txt ├── Compile.README.en-US.md ├── Compile.README.md ├── README.en-US.md ├── README.md ├── Tools ├── Bin │ ├── comments.txt │ ├── dllimportdefs.txt │ ├── events.txt │ ├── exporttpl.txt │ ├── filter.txt │ ├── godef.txt │ ├── typepkg.txt │ ├── unsafepkg.txt │ └── uses.txt ├── genBind │ ├── app.json │ ├── ast │ │ ├── ast.go │ │ └── define.go │ ├── buffer.go │ ├── c │ │ ├── README.md │ │ ├── applogo.ico │ │ ├── appres.o │ │ ├── appres.rc │ │ ├── build-linux.sh │ │ ├── build-macOS.sh │ │ ├── build-windows.bat │ │ ├── hello.manifest │ │ ├── liblcl.h │ │ ├── main.c │ │ └── tpl │ │ │ └── liblcl-template.h │ ├── fasm │ │ ├── build.bat │ │ └── tpl │ │ │ └── liblcl-template.def │ ├── implib │ │ ├── build.bat │ │ └── tpl │ │ │ └── liblcl-template.xml │ ├── liblcl.json │ ├── main.go │ ├── masm │ │ ├── build.bat │ │ └── tpl │ │ │ └── liblcl-template.inc │ ├── nim │ │ └── tpl │ │ │ ├── fns-template.nim │ │ │ ├── liblcl-template.nim │ │ │ ├── messages-template.nim │ │ │ ├── types-template.nim │ │ │ └── vcl-template.nim │ ├── rust │ │ └── tpl │ │ │ ├── fns-template.tpl │ │ │ ├── liblcl-template.tpl │ │ │ ├── messages-template.tpl │ │ │ ├── types-template.tpl │ │ │ └── vcl-template.tpl │ └── tplfuncs.go └── genliblcl │ ├── Genliblcl.dpr │ ├── Genliblcl.dproj │ ├── README.md │ └── uLazarusPatchs.pas └── src ├── 3rd-party ├── ATFlatControls │ └── atflatcontrols │ │ ├── ATFlatControlsPackage.dpk │ │ ├── ATFlatControlsPackage.dproj │ │ ├── ATFlatControlsPackage.res │ │ ├── ATFlatControlsPackageResource.rc │ │ ├── atbuttons.pas │ │ ├── atcanvasprimitives.pas │ │ ├── atflatcontrols_package.lpk │ │ ├── atflatcontrols_package.pas │ │ ├── atflatcontrols_register.pas │ │ ├── atflatthemes.pas │ │ ├── atflattoolbar.pas │ │ ├── atgauge.pas │ │ ├── atgroups.pas │ │ ├── atlinklabel.pas │ │ ├── atlistbox.pas │ │ ├── atpanelcolor.pas │ │ ├── atpanelsimple.pas │ │ ├── atscrollbar.pas │ │ ├── atstatusbar.pas │ │ ├── attabs.pas │ │ ├── attabs_picture.pas │ │ ├── attabs_render.pas │ │ ├── attabs_render_std.pas │ │ └── res │ │ ├── icons.lrs │ │ ├── tatbutton.bmp │ │ ├── tatflattoolbar.bmp │ │ ├── tatgauge.bmp │ │ ├── tatgroups.bmp │ │ ├── tatlabellink.bmp │ │ ├── tatlistbox.bmp │ │ ├── tatpanelcolor.bmp │ │ ├── tatpanelsimple.bmp │ │ ├── tatscrollbar.bmp │ │ ├── tatstatus.bmp │ │ ├── tattabs.bmp │ │ └── update.sh ├── README.en-US.md ├── README.md └── richmemo │ ├── README.md │ ├── carbon │ └── carbonrichmemo.pas │ ├── cocoa │ └── cocoarichmemo.pas │ ├── gtk2 │ └── gtk2richmemo.pas │ ├── ide │ ├── richmemo_design.lpk │ ├── richmemo_design.pas │ ├── richmemopackage.lrs │ ├── richmemoregister.pas │ ├── rtfeditpropdialog.lfm │ └── rtfeditpropdialog.pas │ ├── qt │ └── qtrichmemo.pas │ ├── qt5 │ └── qt5richmemo.pas │ ├── richmemo.pas │ ├── richmemofactory.pas │ ├── richmemohelpers.pas │ ├── richmemopackage.lpk │ ├── richmemopackage.pas │ ├── richmemortf.pas │ ├── richmemoutils.pas │ ├── rtfdata.inc │ ├── rtfparspre211.pas │ ├── samples │ ├── customrtfload │ │ ├── mainform.lfm │ │ ├── mainform.pas │ │ ├── testload.lpi │ │ └── testload.lpr │ ├── hittest │ │ ├── hittest.lpi │ │ ├── hittest.lpr │ │ ├── mainform.lfm │ │ └── mainform.pas │ ├── inline │ │ ├── mainform.lfm │ │ ├── mainform.pas │ │ ├── testinline.lpi │ │ └── testinline.lpr │ ├── links │ │ ├── project1.lpi │ │ ├── project1.lpr │ │ ├── unit1.lfm │ │ └── unit1.pas │ ├── mlparse │ │ ├── mlparsers.lpi │ │ ├── mlparsers.lpr │ │ ├── richmemoml.pas │ │ ├── unit1.lfm │ │ └── unit1.pas │ ├── paragraphs │ │ ├── icons.PNG │ │ ├── mainform.lfm │ │ ├── mainform.pas │ │ ├── paraword.rtf │ │ ├── testpara.lpi │ │ └── testpara.lpr │ ├── print │ │ ├── mainform.lfm │ │ ├── mainform.pas │ │ ├── project1.lpi │ │ └── project1.lpr │ ├── search │ │ ├── mainform.lfm │ │ ├── mainform.pas │ │ ├── testsearch.lpi │ │ └── testsearch.lpr │ ├── testsimple │ │ ├── project1.lpi │ │ ├── project1.lpr │ │ ├── test5.rtf │ │ ├── unit1.lfm │ │ ├── unit1.lrs │ │ └── unit1.pas │ └── zoom │ │ ├── mainform.lfm │ │ ├── mainform.pas │ │ ├── testzoom.lpi │ │ └── testzoom.lpr │ ├── win32 │ ├── win32richmemo.pas │ ├── win32richmemoole.pas │ └── win32richmemoproc.pas │ └── wsrichmemo.pas ├── ExtDecl.inc ├── ImageButton.pas ├── LazarusDef.inc ├── MSHTML.pas ├── MiniWebviewLinux.inc ├── MiniWebviewMac.inc ├── MiniWebviewWin.inc ├── MyLCL_Action.inc ├── MyLCL_ActionList.inc ├── MyLCL_AnchorSide.inc ├── MyLCL_Application.inc ├── MyLCL_Bevel.inc ├── MyLCL_BitBtn.inc ├── MyLCL_Bitmap.inc ├── MyLCL_BoundLabel.inc ├── MyLCL_Brush.inc ├── MyLCL_Button.inc ├── MyLCL_Canvas.inc ├── MyLCL_CheckBox.inc ├── MyLCL_CheckComboBox.inc ├── MyLCL_CheckGroup.inc ├── MyLCL_CheckListBox.inc ├── MyLCL_Clipboard.inc ├── MyLCL_Collection.inc ├── MyLCL_CollectionItem.inc ├── MyLCL_ColorBox.inc ├── MyLCL_ColorButton.inc ├── MyLCL_ColorDialog.inc ├── MyLCL_ColorListBox.inc ├── MyLCL_ComboBox.inc ├── MyLCL_ComboBoxEx.inc ├── MyLCL_ComboExItem.inc ├── MyLCL_ComboExItems.inc ├── MyLCL_Component.inc ├── MyLCL_Control.inc ├── MyLCL_ControlBorderSpacing.inc ├── MyLCL_ControlChildSizing.inc ├── MyLCL_ControlScrollBar.inc ├── MyLCL_CoolBand.inc ├── MyLCL_CoolBands.inc ├── MyLCL_CoolBar.inc ├── MyLCL_DateTimePicker.inc ├── MyLCL_DirectoryEdit.inc ├── MyLCL_DragDockObject.inc ├── MyLCL_DragObject.inc ├── MyLCL_DrawGrid.inc ├── MyLCL_Edit.inc ├── MyLCL_Exception.inc ├── MyLCL_FindDialog.inc ├── MyLCL_FloatSpinEdit.inc ├── MyLCL_FlowPanel.inc ├── MyLCL_FlowPanelControl.inc ├── MyLCL_FlowPanelControlList.inc ├── MyLCL_Font.inc ├── MyLCL_FontDialog.inc ├── MyLCL_Form.inc ├── MyLCL_Frame.inc ├── MyLCL_GIFImage.inc ├── MyLCL_Gauge.inc ├── MyLCL_Graphic.inc ├── MyLCL_GridColumn.inc ├── MyLCL_GridColumnTitle.inc ├── MyLCL_GridColumns.inc ├── MyLCL_GroupBox.inc ├── MyLCL_HeaderControl.inc ├── MyLCL_HeaderSection.inc ├── MyLCL_HeaderSections.inc ├── MyLCL_Icon.inc ├── MyLCL_IconOptions.inc ├── MyLCL_Image.inc ├── MyLCL_ImageButton.inc ├── MyLCL_ImageList.inc ├── MyLCL_IniFile.inc ├── MyLCL_JPEGImage.inc ├── MyLCL_Label.inc ├── MyLCL_LabeledEdit.inc ├── MyLCL_LinkLabel.inc ├── MyLCL_List.inc ├── MyLCL_ListBox.inc ├── MyLCL_ListColumn.inc ├── MyLCL_ListColumns.inc ├── MyLCL_ListItem.inc ├── MyLCL_ListItems.inc ├── MyLCL_ListView.inc ├── MyLCL_MainMenu.inc ├── MyLCL_MaskEdit.inc ├── MyLCL_Memo.inc ├── MyLCL_MemoryStream.inc ├── MyLCL_MenuItem.inc ├── MyLCL_MiniWebview.inc ├── MyLCL_Monitor.inc ├── MyLCL_MonthCalendar.inc ├── MyLCL_Mouse.inc ├── MyLCL_Object.inc ├── MyLCL_OpenDialog.inc ├── MyLCL_OpenPictureDialog.inc ├── MyLCL_PageControl.inc ├── MyLCL_PageSetupDialog.inc ├── MyLCL_PaintBox.inc ├── MyLCL_Panel.inc ├── MyLCL_ParaAttributes.inc ├── MyLCL_Pen.inc ├── MyLCL_Picture.inc ├── MyLCL_PngImage.inc ├── MyLCL_PopupMenu.inc ├── MyLCL_PrintDialog.inc ├── MyLCL_Printer.inc ├── MyLCL_PrinterSetupDialog.inc ├── MyLCL_ProgressBar.inc ├── MyLCL_RadioButton.inc ├── MyLCL_RadioGroup.inc ├── MyLCL_Registry.inc ├── MyLCL_ReplaceDialog.inc ├── MyLCL_RichEdit.inc ├── MyLCL_SaveDialog.inc ├── MyLCL_SavePictureDialog.inc ├── MyLCL_Screen.inc ├── MyLCL_ScrollBar.inc ├── MyLCL_ScrollBox.inc ├── MyLCL_SelectDirectoryDialog.inc ├── MyLCL_Shape.inc ├── MyLCL_SizeConstraints.inc ├── MyLCL_SpeedButton.inc ├── MyLCL_SpinEdit.inc ├── MyLCL_Splitter.inc ├── MyLCL_StaticText.inc ├── MyLCL_StatusBar.inc ├── MyLCL_StatusPanel.inc ├── MyLCL_StatusPanels.inc ├── MyLCL_StringGrid.inc ├── MyLCL_StringList.inc ├── MyLCL_Strings.inc ├── MyLCL_TabSheet.inc ├── MyLCL_TaskDialog.inc ├── MyLCL_TaskDialogBaseButtonItem.inc ├── MyLCL_TaskDialogButtonItem.inc ├── MyLCL_TaskDialogButtons.inc ├── MyLCL_TaskDialogRadioButtonItem.inc ├── MyLCL_TextAttributes.inc ├── MyLCL_Timer.inc ├── MyLCL_ToggleBox.inc ├── MyLCL_ToolBar.inc ├── MyLCL_ToolButton.inc ├── MyLCL_TrackBar.inc ├── MyLCL_TrayIcon.inc ├── MyLCL_TreeNode.inc ├── MyLCL_TreeNodes.inc ├── MyLCL_TreeView.inc ├── MyLCL_UpDown.inc ├── MyLCL_ValueListEditor.inc ├── MyLCL_WinControl.inc ├── MyLCL_XButton.inc ├── UseAll.inc ├── WebBrowser.tlb ├── WebJSExternal.ridl ├── WebJSExternal_TLB.pas ├── images └── mycomponents.res ├── liblcl.lpi ├── liblcl.lpr ├── liblcl.lps ├── liblcl.res ├── mylazpkgs.lpk ├── mylazpkgs.pas ├── uEventCallback.pas ├── uFormDesignerFile.pas ├── uMiniWebview.pas ├── ucomponents.pas ├── ucontrolpatchs.pas ├── uexceptionhandle.pas ├── uexport1.pas ├── uexport2.pas ├── uexport3.pas ├── uexport4.pas ├── ugauge.pas ├── ugoform.pas ├── ulinklabel.pas ├── ulinuxpatchs.pas ├── umacospatchs.pas ├── uregcomponents.pas ├── urichedit.pas └── xbutton.pas /.gitattributes: -------------------------------------------------------------------------------- 1 | *.h linguist-language=pascal -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING.LGPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/COPYING.LGPL.txt -------------------------------------------------------------------------------- /COPYING.modifiedLGPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/COPYING.modifiedLGPL.txt -------------------------------------------------------------------------------- /Compile.README.en-US.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Compile.README.en-US.md -------------------------------------------------------------------------------- /Compile.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Compile.README.md -------------------------------------------------------------------------------- /README.en-US.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/README.en-US.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/README.md -------------------------------------------------------------------------------- /Tools/Bin/comments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/Bin/comments.txt -------------------------------------------------------------------------------- /Tools/Bin/dllimportdefs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/Bin/dllimportdefs.txt -------------------------------------------------------------------------------- /Tools/Bin/events.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/Bin/events.txt -------------------------------------------------------------------------------- /Tools/Bin/exporttpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/Bin/exporttpl.txt -------------------------------------------------------------------------------- /Tools/Bin/filter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/Bin/filter.txt -------------------------------------------------------------------------------- /Tools/Bin/godef.txt: -------------------------------------------------------------------------------- 1 | package api 2 | 3 | -------------------------------------------------------------------------------- /Tools/Bin/typepkg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/Bin/typepkg.txt -------------------------------------------------------------------------------- /Tools/Bin/unsafepkg.txt: -------------------------------------------------------------------------------- 1 | TListItem 2 | TTreeNode -------------------------------------------------------------------------------- /Tools/Bin/uses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/Bin/uses.txt -------------------------------------------------------------------------------- /Tools/genBind/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genBind/app.json -------------------------------------------------------------------------------- /Tools/genBind/ast/ast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genBind/ast/ast.go -------------------------------------------------------------------------------- /Tools/genBind/ast/define.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genBind/ast/define.go -------------------------------------------------------------------------------- /Tools/genBind/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genBind/buffer.go -------------------------------------------------------------------------------- /Tools/genBind/c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genBind/c/README.md -------------------------------------------------------------------------------- /Tools/genBind/c/applogo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genBind/c/applogo.ico -------------------------------------------------------------------------------- /Tools/genBind/c/appres.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genBind/c/appres.o -------------------------------------------------------------------------------- /Tools/genBind/c/appres.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genBind/c/appres.rc -------------------------------------------------------------------------------- /Tools/genBind/c/build-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genBind/c/build-linux.sh -------------------------------------------------------------------------------- /Tools/genBind/c/build-macOS.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | 3 | clang -framework Cocoa main.c -o hello -ldl -------------------------------------------------------------------------------- /Tools/genBind/c/build-windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genBind/c/build-windows.bat -------------------------------------------------------------------------------- /Tools/genBind/c/hello.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genBind/c/hello.manifest -------------------------------------------------------------------------------- /Tools/genBind/c/liblcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genBind/c/liblcl.h -------------------------------------------------------------------------------- /Tools/genBind/c/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genBind/c/main.c -------------------------------------------------------------------------------- /Tools/genBind/c/tpl/liblcl-template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genBind/c/tpl/liblcl-template.h -------------------------------------------------------------------------------- /Tools/genBind/fasm/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genBind/fasm/build.bat -------------------------------------------------------------------------------- /Tools/genBind/fasm/tpl/liblcl-template.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genBind/fasm/tpl/liblcl-template.def -------------------------------------------------------------------------------- /Tools/genBind/implib/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genBind/implib/build.bat -------------------------------------------------------------------------------- /Tools/genBind/implib/tpl/liblcl-template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genBind/implib/tpl/liblcl-template.xml -------------------------------------------------------------------------------- /Tools/genBind/liblcl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genBind/liblcl.json -------------------------------------------------------------------------------- /Tools/genBind/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genBind/main.go -------------------------------------------------------------------------------- /Tools/genBind/masm/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genBind/masm/build.bat -------------------------------------------------------------------------------- /Tools/genBind/masm/tpl/liblcl-template.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genBind/masm/tpl/liblcl-template.inc -------------------------------------------------------------------------------- /Tools/genBind/nim/tpl/fns-template.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genBind/nim/tpl/fns-template.nim -------------------------------------------------------------------------------- /Tools/genBind/nim/tpl/liblcl-template.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genBind/nim/tpl/liblcl-template.nim -------------------------------------------------------------------------------- /Tools/genBind/nim/tpl/messages-template.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genBind/nim/tpl/messages-template.nim -------------------------------------------------------------------------------- /Tools/genBind/nim/tpl/types-template.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genBind/nim/tpl/types-template.nim -------------------------------------------------------------------------------- /Tools/genBind/nim/tpl/vcl-template.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genBind/nim/tpl/vcl-template.nim -------------------------------------------------------------------------------- /Tools/genBind/rust/tpl/fns-template.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genBind/rust/tpl/fns-template.tpl -------------------------------------------------------------------------------- /Tools/genBind/rust/tpl/liblcl-template.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genBind/rust/tpl/liblcl-template.tpl -------------------------------------------------------------------------------- /Tools/genBind/rust/tpl/messages-template.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genBind/rust/tpl/messages-template.tpl -------------------------------------------------------------------------------- /Tools/genBind/rust/tpl/types-template.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genBind/rust/tpl/types-template.tpl -------------------------------------------------------------------------------- /Tools/genBind/rust/tpl/vcl-template.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genBind/rust/tpl/vcl-template.tpl -------------------------------------------------------------------------------- /Tools/genBind/tplfuncs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genBind/tplfuncs.go -------------------------------------------------------------------------------- /Tools/genliblcl/Genliblcl.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genliblcl/Genliblcl.dpr -------------------------------------------------------------------------------- /Tools/genliblcl/Genliblcl.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genliblcl/Genliblcl.dproj -------------------------------------------------------------------------------- /Tools/genliblcl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genliblcl/README.md -------------------------------------------------------------------------------- /Tools/genliblcl/uLazarusPatchs.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/Tools/genliblcl/uLazarusPatchs.pas -------------------------------------------------------------------------------- /src/3rd-party/ATFlatControls/atflatcontrols/ATFlatControlsPackage.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/ATFlatControls/atflatcontrols/ATFlatControlsPackage.dpk -------------------------------------------------------------------------------- /src/3rd-party/ATFlatControls/atflatcontrols/ATFlatControlsPackage.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/ATFlatControls/atflatcontrols/ATFlatControlsPackage.dproj -------------------------------------------------------------------------------- /src/3rd-party/ATFlatControls/atflatcontrols/ATFlatControlsPackage.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/ATFlatControls/atflatcontrols/ATFlatControlsPackage.res -------------------------------------------------------------------------------- /src/3rd-party/ATFlatControls/atflatcontrols/ATFlatControlsPackageResource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/ATFlatControls/atflatcontrols/ATFlatControlsPackageResource.rc -------------------------------------------------------------------------------- /src/3rd-party/ATFlatControls/atflatcontrols/atbuttons.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/ATFlatControls/atflatcontrols/atbuttons.pas -------------------------------------------------------------------------------- /src/3rd-party/ATFlatControls/atflatcontrols/atcanvasprimitives.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/ATFlatControls/atflatcontrols/atcanvasprimitives.pas -------------------------------------------------------------------------------- /src/3rd-party/ATFlatControls/atflatcontrols/atflatcontrols_package.lpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/ATFlatControls/atflatcontrols/atflatcontrols_package.lpk -------------------------------------------------------------------------------- /src/3rd-party/ATFlatControls/atflatcontrols/atflatcontrols_package.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/ATFlatControls/atflatcontrols/atflatcontrols_package.pas -------------------------------------------------------------------------------- /src/3rd-party/ATFlatControls/atflatcontrols/atflatcontrols_register.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/ATFlatControls/atflatcontrols/atflatcontrols_register.pas -------------------------------------------------------------------------------- /src/3rd-party/ATFlatControls/atflatcontrols/atflatthemes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/ATFlatControls/atflatcontrols/atflatthemes.pas -------------------------------------------------------------------------------- /src/3rd-party/ATFlatControls/atflatcontrols/atflattoolbar.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/ATFlatControls/atflatcontrols/atflattoolbar.pas -------------------------------------------------------------------------------- /src/3rd-party/ATFlatControls/atflatcontrols/atgauge.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/ATFlatControls/atflatcontrols/atgauge.pas -------------------------------------------------------------------------------- /src/3rd-party/ATFlatControls/atflatcontrols/atgroups.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/ATFlatControls/atflatcontrols/atgroups.pas -------------------------------------------------------------------------------- /src/3rd-party/ATFlatControls/atflatcontrols/atlinklabel.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/ATFlatControls/atflatcontrols/atlinklabel.pas -------------------------------------------------------------------------------- /src/3rd-party/ATFlatControls/atflatcontrols/atlistbox.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/ATFlatControls/atflatcontrols/atlistbox.pas -------------------------------------------------------------------------------- /src/3rd-party/ATFlatControls/atflatcontrols/atpanelcolor.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/ATFlatControls/atflatcontrols/atpanelcolor.pas -------------------------------------------------------------------------------- /src/3rd-party/ATFlatControls/atflatcontrols/atpanelsimple.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/ATFlatControls/atflatcontrols/atpanelsimple.pas -------------------------------------------------------------------------------- /src/3rd-party/ATFlatControls/atflatcontrols/atscrollbar.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/ATFlatControls/atflatcontrols/atscrollbar.pas -------------------------------------------------------------------------------- /src/3rd-party/ATFlatControls/atflatcontrols/atstatusbar.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/ATFlatControls/atflatcontrols/atstatusbar.pas -------------------------------------------------------------------------------- /src/3rd-party/ATFlatControls/atflatcontrols/attabs.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/ATFlatControls/atflatcontrols/attabs.pas -------------------------------------------------------------------------------- /src/3rd-party/ATFlatControls/atflatcontrols/attabs_picture.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/ATFlatControls/atflatcontrols/attabs_picture.pas -------------------------------------------------------------------------------- /src/3rd-party/ATFlatControls/atflatcontrols/attabs_render.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/ATFlatControls/atflatcontrols/attabs_render.pas -------------------------------------------------------------------------------- /src/3rd-party/ATFlatControls/atflatcontrols/attabs_render_std.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/ATFlatControls/atflatcontrols/attabs_render_std.pas -------------------------------------------------------------------------------- /src/3rd-party/ATFlatControls/atflatcontrols/res/icons.lrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/ATFlatControls/atflatcontrols/res/icons.lrs -------------------------------------------------------------------------------- /src/3rd-party/ATFlatControls/atflatcontrols/res/tatbutton.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/ATFlatControls/atflatcontrols/res/tatbutton.bmp -------------------------------------------------------------------------------- /src/3rd-party/ATFlatControls/atflatcontrols/res/tatflattoolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/ATFlatControls/atflatcontrols/res/tatflattoolbar.bmp -------------------------------------------------------------------------------- /src/3rd-party/ATFlatControls/atflatcontrols/res/tatgauge.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/ATFlatControls/atflatcontrols/res/tatgauge.bmp -------------------------------------------------------------------------------- /src/3rd-party/ATFlatControls/atflatcontrols/res/tatgroups.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/ATFlatControls/atflatcontrols/res/tatgroups.bmp -------------------------------------------------------------------------------- /src/3rd-party/ATFlatControls/atflatcontrols/res/tatlabellink.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/ATFlatControls/atflatcontrols/res/tatlabellink.bmp -------------------------------------------------------------------------------- /src/3rd-party/ATFlatControls/atflatcontrols/res/tatlistbox.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/ATFlatControls/atflatcontrols/res/tatlistbox.bmp -------------------------------------------------------------------------------- /src/3rd-party/ATFlatControls/atflatcontrols/res/tatpanelcolor.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/ATFlatControls/atflatcontrols/res/tatpanelcolor.bmp -------------------------------------------------------------------------------- /src/3rd-party/ATFlatControls/atflatcontrols/res/tatpanelsimple.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/ATFlatControls/atflatcontrols/res/tatpanelsimple.bmp -------------------------------------------------------------------------------- /src/3rd-party/ATFlatControls/atflatcontrols/res/tatscrollbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/ATFlatControls/atflatcontrols/res/tatscrollbar.bmp -------------------------------------------------------------------------------- /src/3rd-party/ATFlatControls/atflatcontrols/res/tatstatus.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/ATFlatControls/atflatcontrols/res/tatstatus.bmp -------------------------------------------------------------------------------- /src/3rd-party/ATFlatControls/atflatcontrols/res/tattabs.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/ATFlatControls/atflatcontrols/res/tattabs.bmp -------------------------------------------------------------------------------- /src/3rd-party/ATFlatControls/atflatcontrols/res/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/ATFlatControls/atflatcontrols/res/update.sh -------------------------------------------------------------------------------- /src/3rd-party/README.en-US.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/README.en-US.md -------------------------------------------------------------------------------- /src/3rd-party/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/README.md -------------------------------------------------------------------------------- /src/3rd-party/richmemo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/README.md -------------------------------------------------------------------------------- /src/3rd-party/richmemo/carbon/carbonrichmemo.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/carbon/carbonrichmemo.pas -------------------------------------------------------------------------------- /src/3rd-party/richmemo/cocoa/cocoarichmemo.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/cocoa/cocoarichmemo.pas -------------------------------------------------------------------------------- /src/3rd-party/richmemo/gtk2/gtk2richmemo.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/gtk2/gtk2richmemo.pas -------------------------------------------------------------------------------- /src/3rd-party/richmemo/ide/richmemo_design.lpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/ide/richmemo_design.lpk -------------------------------------------------------------------------------- /src/3rd-party/richmemo/ide/richmemo_design.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/ide/richmemo_design.pas -------------------------------------------------------------------------------- /src/3rd-party/richmemo/ide/richmemopackage.lrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/ide/richmemopackage.lrs -------------------------------------------------------------------------------- /src/3rd-party/richmemo/ide/richmemoregister.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/ide/richmemoregister.pas -------------------------------------------------------------------------------- /src/3rd-party/richmemo/ide/rtfeditpropdialog.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/ide/rtfeditpropdialog.lfm -------------------------------------------------------------------------------- /src/3rd-party/richmemo/ide/rtfeditpropdialog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/ide/rtfeditpropdialog.pas -------------------------------------------------------------------------------- /src/3rd-party/richmemo/qt/qtrichmemo.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/qt/qtrichmemo.pas -------------------------------------------------------------------------------- /src/3rd-party/richmemo/qt5/qt5richmemo.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/qt5/qt5richmemo.pas -------------------------------------------------------------------------------- /src/3rd-party/richmemo/richmemo.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/richmemo.pas -------------------------------------------------------------------------------- /src/3rd-party/richmemo/richmemofactory.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/richmemofactory.pas -------------------------------------------------------------------------------- /src/3rd-party/richmemo/richmemohelpers.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/richmemohelpers.pas -------------------------------------------------------------------------------- /src/3rd-party/richmemo/richmemopackage.lpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/richmemopackage.lpk -------------------------------------------------------------------------------- /src/3rd-party/richmemo/richmemopackage.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/richmemopackage.pas -------------------------------------------------------------------------------- /src/3rd-party/richmemo/richmemortf.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/richmemortf.pas -------------------------------------------------------------------------------- /src/3rd-party/richmemo/richmemoutils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/richmemoutils.pas -------------------------------------------------------------------------------- /src/3rd-party/richmemo/rtfdata.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/rtfdata.inc -------------------------------------------------------------------------------- /src/3rd-party/richmemo/rtfparspre211.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/rtfparspre211.pas -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/customrtfload/mainform.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/customrtfload/mainform.lfm -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/customrtfload/mainform.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/customrtfload/mainform.pas -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/customrtfload/testload.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/customrtfload/testload.lpi -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/customrtfload/testload.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/customrtfload/testload.lpr -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/hittest/hittest.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/hittest/hittest.lpi -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/hittest/hittest.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/hittest/hittest.lpr -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/hittest/mainform.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/hittest/mainform.lfm -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/hittest/mainform.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/hittest/mainform.pas -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/inline/mainform.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/inline/mainform.lfm -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/inline/mainform.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/inline/mainform.pas -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/inline/testinline.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/inline/testinline.lpi -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/inline/testinline.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/inline/testinline.lpr -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/links/project1.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/links/project1.lpi -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/links/project1.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/links/project1.lpr -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/links/unit1.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/links/unit1.lfm -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/links/unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/links/unit1.pas -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/mlparse/mlparsers.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/mlparse/mlparsers.lpi -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/mlparse/mlparsers.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/mlparse/mlparsers.lpr -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/mlparse/richmemoml.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/mlparse/richmemoml.pas -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/mlparse/unit1.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/mlparse/unit1.lfm -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/mlparse/unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/mlparse/unit1.pas -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/paragraphs/icons.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/paragraphs/icons.PNG -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/paragraphs/mainform.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/paragraphs/mainform.lfm -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/paragraphs/mainform.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/paragraphs/mainform.pas -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/paragraphs/paraword.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/paragraphs/paraword.rtf -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/paragraphs/testpara.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/paragraphs/testpara.lpi -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/paragraphs/testpara.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/paragraphs/testpara.lpr -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/print/mainform.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/print/mainform.lfm -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/print/mainform.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/print/mainform.pas -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/print/project1.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/print/project1.lpi -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/print/project1.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/print/project1.lpr -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/search/mainform.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/search/mainform.lfm -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/search/mainform.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/search/mainform.pas -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/search/testsearch.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/search/testsearch.lpi -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/search/testsearch.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/search/testsearch.lpr -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/testsimple/project1.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/testsimple/project1.lpi -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/testsimple/project1.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/testsimple/project1.lpr -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/testsimple/test5.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/testsimple/test5.rtf -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/testsimple/unit1.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/testsimple/unit1.lfm -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/testsimple/unit1.lrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/testsimple/unit1.lrs -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/testsimple/unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/testsimple/unit1.pas -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/zoom/mainform.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/zoom/mainform.lfm -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/zoom/mainform.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/zoom/mainform.pas -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/zoom/testzoom.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/zoom/testzoom.lpi -------------------------------------------------------------------------------- /src/3rd-party/richmemo/samples/zoom/testzoom.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/samples/zoom/testzoom.lpr -------------------------------------------------------------------------------- /src/3rd-party/richmemo/win32/win32richmemo.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/win32/win32richmemo.pas -------------------------------------------------------------------------------- /src/3rd-party/richmemo/win32/win32richmemoole.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/win32/win32richmemoole.pas -------------------------------------------------------------------------------- /src/3rd-party/richmemo/win32/win32richmemoproc.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/win32/win32richmemoproc.pas -------------------------------------------------------------------------------- /src/3rd-party/richmemo/wsrichmemo.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/3rd-party/richmemo/wsrichmemo.pas -------------------------------------------------------------------------------- /src/ExtDecl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/ExtDecl.inc -------------------------------------------------------------------------------- /src/ImageButton.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/ImageButton.pas -------------------------------------------------------------------------------- /src/LazarusDef.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/LazarusDef.inc -------------------------------------------------------------------------------- /src/MSHTML.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MSHTML.pas -------------------------------------------------------------------------------- /src/MiniWebviewLinux.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MiniWebviewLinux.inc -------------------------------------------------------------------------------- /src/MiniWebviewMac.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MiniWebviewMac.inc -------------------------------------------------------------------------------- /src/MiniWebviewWin.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MiniWebviewWin.inc -------------------------------------------------------------------------------- /src/MyLCL_Action.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_Action.inc -------------------------------------------------------------------------------- /src/MyLCL_ActionList.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_ActionList.inc -------------------------------------------------------------------------------- /src/MyLCL_AnchorSide.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_AnchorSide.inc -------------------------------------------------------------------------------- /src/MyLCL_Application.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_Application.inc -------------------------------------------------------------------------------- /src/MyLCL_Bevel.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_Bevel.inc -------------------------------------------------------------------------------- /src/MyLCL_BitBtn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_BitBtn.inc -------------------------------------------------------------------------------- /src/MyLCL_Bitmap.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_Bitmap.inc -------------------------------------------------------------------------------- /src/MyLCL_BoundLabel.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_BoundLabel.inc -------------------------------------------------------------------------------- /src/MyLCL_Brush.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_Brush.inc -------------------------------------------------------------------------------- /src/MyLCL_Button.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_Button.inc -------------------------------------------------------------------------------- /src/MyLCL_Canvas.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_Canvas.inc -------------------------------------------------------------------------------- /src/MyLCL_CheckBox.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_CheckBox.inc -------------------------------------------------------------------------------- /src/MyLCL_CheckComboBox.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_CheckComboBox.inc -------------------------------------------------------------------------------- /src/MyLCL_CheckGroup.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_CheckGroup.inc -------------------------------------------------------------------------------- /src/MyLCL_CheckListBox.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_CheckListBox.inc -------------------------------------------------------------------------------- /src/MyLCL_Clipboard.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_Clipboard.inc -------------------------------------------------------------------------------- /src/MyLCL_Collection.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_Collection.inc -------------------------------------------------------------------------------- /src/MyLCL_CollectionItem.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_CollectionItem.inc -------------------------------------------------------------------------------- /src/MyLCL_ColorBox.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_ColorBox.inc -------------------------------------------------------------------------------- /src/MyLCL_ColorButton.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_ColorButton.inc -------------------------------------------------------------------------------- /src/MyLCL_ColorDialog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_ColorDialog.inc -------------------------------------------------------------------------------- /src/MyLCL_ColorListBox.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_ColorListBox.inc -------------------------------------------------------------------------------- /src/MyLCL_ComboBox.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_ComboBox.inc -------------------------------------------------------------------------------- /src/MyLCL_ComboBoxEx.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_ComboBoxEx.inc -------------------------------------------------------------------------------- /src/MyLCL_ComboExItem.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_ComboExItem.inc -------------------------------------------------------------------------------- /src/MyLCL_ComboExItems.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_ComboExItems.inc -------------------------------------------------------------------------------- /src/MyLCL_Component.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_Component.inc -------------------------------------------------------------------------------- /src/MyLCL_Control.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_Control.inc -------------------------------------------------------------------------------- /src/MyLCL_ControlBorderSpacing.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_ControlBorderSpacing.inc -------------------------------------------------------------------------------- /src/MyLCL_ControlChildSizing.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_ControlChildSizing.inc -------------------------------------------------------------------------------- /src/MyLCL_ControlScrollBar.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_ControlScrollBar.inc -------------------------------------------------------------------------------- /src/MyLCL_CoolBand.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_CoolBand.inc -------------------------------------------------------------------------------- /src/MyLCL_CoolBands.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_CoolBands.inc -------------------------------------------------------------------------------- /src/MyLCL_CoolBar.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_CoolBar.inc -------------------------------------------------------------------------------- /src/MyLCL_DateTimePicker.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_DateTimePicker.inc -------------------------------------------------------------------------------- /src/MyLCL_DirectoryEdit.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_DirectoryEdit.inc -------------------------------------------------------------------------------- /src/MyLCL_DragDockObject.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_DragDockObject.inc -------------------------------------------------------------------------------- /src/MyLCL_DragObject.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_DragObject.inc -------------------------------------------------------------------------------- /src/MyLCL_DrawGrid.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_DrawGrid.inc -------------------------------------------------------------------------------- /src/MyLCL_Edit.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_Edit.inc -------------------------------------------------------------------------------- /src/MyLCL_Exception.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_Exception.inc -------------------------------------------------------------------------------- /src/MyLCL_FindDialog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_FindDialog.inc -------------------------------------------------------------------------------- /src/MyLCL_FloatSpinEdit.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_FloatSpinEdit.inc -------------------------------------------------------------------------------- /src/MyLCL_FlowPanel.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_FlowPanel.inc -------------------------------------------------------------------------------- /src/MyLCL_FlowPanelControl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_FlowPanelControl.inc -------------------------------------------------------------------------------- /src/MyLCL_FlowPanelControlList.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_FlowPanelControlList.inc -------------------------------------------------------------------------------- /src/MyLCL_Font.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_Font.inc -------------------------------------------------------------------------------- /src/MyLCL_FontDialog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_FontDialog.inc -------------------------------------------------------------------------------- /src/MyLCL_Form.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_Form.inc -------------------------------------------------------------------------------- /src/MyLCL_Frame.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_Frame.inc -------------------------------------------------------------------------------- /src/MyLCL_GIFImage.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_GIFImage.inc -------------------------------------------------------------------------------- /src/MyLCL_Gauge.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_Gauge.inc -------------------------------------------------------------------------------- /src/MyLCL_Graphic.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_Graphic.inc -------------------------------------------------------------------------------- /src/MyLCL_GridColumn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_GridColumn.inc -------------------------------------------------------------------------------- /src/MyLCL_GridColumnTitle.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_GridColumnTitle.inc -------------------------------------------------------------------------------- /src/MyLCL_GridColumns.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_GridColumns.inc -------------------------------------------------------------------------------- /src/MyLCL_GroupBox.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_GroupBox.inc -------------------------------------------------------------------------------- /src/MyLCL_HeaderControl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_HeaderControl.inc -------------------------------------------------------------------------------- /src/MyLCL_HeaderSection.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_HeaderSection.inc -------------------------------------------------------------------------------- /src/MyLCL_HeaderSections.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_HeaderSections.inc -------------------------------------------------------------------------------- /src/MyLCL_Icon.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_Icon.inc -------------------------------------------------------------------------------- /src/MyLCL_IconOptions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_IconOptions.inc -------------------------------------------------------------------------------- /src/MyLCL_Image.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_Image.inc -------------------------------------------------------------------------------- /src/MyLCL_ImageButton.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_ImageButton.inc -------------------------------------------------------------------------------- /src/MyLCL_ImageList.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_ImageList.inc -------------------------------------------------------------------------------- /src/MyLCL_IniFile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_IniFile.inc -------------------------------------------------------------------------------- /src/MyLCL_JPEGImage.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_JPEGImage.inc -------------------------------------------------------------------------------- /src/MyLCL_Label.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_Label.inc -------------------------------------------------------------------------------- /src/MyLCL_LabeledEdit.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_LabeledEdit.inc -------------------------------------------------------------------------------- /src/MyLCL_LinkLabel.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_LinkLabel.inc -------------------------------------------------------------------------------- /src/MyLCL_List.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_List.inc -------------------------------------------------------------------------------- /src/MyLCL_ListBox.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_ListBox.inc -------------------------------------------------------------------------------- /src/MyLCL_ListColumn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_ListColumn.inc -------------------------------------------------------------------------------- /src/MyLCL_ListColumns.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_ListColumns.inc -------------------------------------------------------------------------------- /src/MyLCL_ListItem.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_ListItem.inc -------------------------------------------------------------------------------- /src/MyLCL_ListItems.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_ListItems.inc -------------------------------------------------------------------------------- /src/MyLCL_ListView.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_ListView.inc -------------------------------------------------------------------------------- /src/MyLCL_MainMenu.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_MainMenu.inc -------------------------------------------------------------------------------- /src/MyLCL_MaskEdit.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_MaskEdit.inc -------------------------------------------------------------------------------- /src/MyLCL_Memo.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_Memo.inc -------------------------------------------------------------------------------- /src/MyLCL_MemoryStream.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_MemoryStream.inc -------------------------------------------------------------------------------- /src/MyLCL_MenuItem.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_MenuItem.inc -------------------------------------------------------------------------------- /src/MyLCL_MiniWebview.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_MiniWebview.inc -------------------------------------------------------------------------------- /src/MyLCL_Monitor.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_Monitor.inc -------------------------------------------------------------------------------- /src/MyLCL_MonthCalendar.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_MonthCalendar.inc -------------------------------------------------------------------------------- /src/MyLCL_Mouse.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_Mouse.inc -------------------------------------------------------------------------------- /src/MyLCL_Object.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_Object.inc -------------------------------------------------------------------------------- /src/MyLCL_OpenDialog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_OpenDialog.inc -------------------------------------------------------------------------------- /src/MyLCL_OpenPictureDialog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_OpenPictureDialog.inc -------------------------------------------------------------------------------- /src/MyLCL_PageControl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_PageControl.inc -------------------------------------------------------------------------------- /src/MyLCL_PageSetupDialog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_PageSetupDialog.inc -------------------------------------------------------------------------------- /src/MyLCL_PaintBox.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_PaintBox.inc -------------------------------------------------------------------------------- /src/MyLCL_Panel.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_Panel.inc -------------------------------------------------------------------------------- /src/MyLCL_ParaAttributes.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_ParaAttributes.inc -------------------------------------------------------------------------------- /src/MyLCL_Pen.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_Pen.inc -------------------------------------------------------------------------------- /src/MyLCL_Picture.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_Picture.inc -------------------------------------------------------------------------------- /src/MyLCL_PngImage.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_PngImage.inc -------------------------------------------------------------------------------- /src/MyLCL_PopupMenu.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_PopupMenu.inc -------------------------------------------------------------------------------- /src/MyLCL_PrintDialog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_PrintDialog.inc -------------------------------------------------------------------------------- /src/MyLCL_Printer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_Printer.inc -------------------------------------------------------------------------------- /src/MyLCL_PrinterSetupDialog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_PrinterSetupDialog.inc -------------------------------------------------------------------------------- /src/MyLCL_ProgressBar.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_ProgressBar.inc -------------------------------------------------------------------------------- /src/MyLCL_RadioButton.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_RadioButton.inc -------------------------------------------------------------------------------- /src/MyLCL_RadioGroup.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_RadioGroup.inc -------------------------------------------------------------------------------- /src/MyLCL_Registry.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_Registry.inc -------------------------------------------------------------------------------- /src/MyLCL_ReplaceDialog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_ReplaceDialog.inc -------------------------------------------------------------------------------- /src/MyLCL_RichEdit.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_RichEdit.inc -------------------------------------------------------------------------------- /src/MyLCL_SaveDialog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_SaveDialog.inc -------------------------------------------------------------------------------- /src/MyLCL_SavePictureDialog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_SavePictureDialog.inc -------------------------------------------------------------------------------- /src/MyLCL_Screen.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_Screen.inc -------------------------------------------------------------------------------- /src/MyLCL_ScrollBar.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_ScrollBar.inc -------------------------------------------------------------------------------- /src/MyLCL_ScrollBox.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_ScrollBox.inc -------------------------------------------------------------------------------- /src/MyLCL_SelectDirectoryDialog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_SelectDirectoryDialog.inc -------------------------------------------------------------------------------- /src/MyLCL_Shape.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_Shape.inc -------------------------------------------------------------------------------- /src/MyLCL_SizeConstraints.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_SizeConstraints.inc -------------------------------------------------------------------------------- /src/MyLCL_SpeedButton.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_SpeedButton.inc -------------------------------------------------------------------------------- /src/MyLCL_SpinEdit.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_SpinEdit.inc -------------------------------------------------------------------------------- /src/MyLCL_Splitter.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_Splitter.inc -------------------------------------------------------------------------------- /src/MyLCL_StaticText.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_StaticText.inc -------------------------------------------------------------------------------- /src/MyLCL_StatusBar.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_StatusBar.inc -------------------------------------------------------------------------------- /src/MyLCL_StatusPanel.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_StatusPanel.inc -------------------------------------------------------------------------------- /src/MyLCL_StatusPanels.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_StatusPanels.inc -------------------------------------------------------------------------------- /src/MyLCL_StringGrid.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_StringGrid.inc -------------------------------------------------------------------------------- /src/MyLCL_StringList.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_StringList.inc -------------------------------------------------------------------------------- /src/MyLCL_Strings.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_Strings.inc -------------------------------------------------------------------------------- /src/MyLCL_TabSheet.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_TabSheet.inc -------------------------------------------------------------------------------- /src/MyLCL_TaskDialog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_TaskDialog.inc -------------------------------------------------------------------------------- /src/MyLCL_TaskDialogBaseButtonItem.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_TaskDialogBaseButtonItem.inc -------------------------------------------------------------------------------- /src/MyLCL_TaskDialogButtonItem.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_TaskDialogButtonItem.inc -------------------------------------------------------------------------------- /src/MyLCL_TaskDialogButtons.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_TaskDialogButtons.inc -------------------------------------------------------------------------------- /src/MyLCL_TaskDialogRadioButtonItem.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_TaskDialogRadioButtonItem.inc -------------------------------------------------------------------------------- /src/MyLCL_TextAttributes.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_TextAttributes.inc -------------------------------------------------------------------------------- /src/MyLCL_Timer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_Timer.inc -------------------------------------------------------------------------------- /src/MyLCL_ToggleBox.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_ToggleBox.inc -------------------------------------------------------------------------------- /src/MyLCL_ToolBar.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_ToolBar.inc -------------------------------------------------------------------------------- /src/MyLCL_ToolButton.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_ToolButton.inc -------------------------------------------------------------------------------- /src/MyLCL_TrackBar.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_TrackBar.inc -------------------------------------------------------------------------------- /src/MyLCL_TrayIcon.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_TrayIcon.inc -------------------------------------------------------------------------------- /src/MyLCL_TreeNode.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_TreeNode.inc -------------------------------------------------------------------------------- /src/MyLCL_TreeNodes.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_TreeNodes.inc -------------------------------------------------------------------------------- /src/MyLCL_TreeView.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_TreeView.inc -------------------------------------------------------------------------------- /src/MyLCL_UpDown.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_UpDown.inc -------------------------------------------------------------------------------- /src/MyLCL_ValueListEditor.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_ValueListEditor.inc -------------------------------------------------------------------------------- /src/MyLCL_WinControl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_WinControl.inc -------------------------------------------------------------------------------- /src/MyLCL_XButton.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/MyLCL_XButton.inc -------------------------------------------------------------------------------- /src/UseAll.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/UseAll.inc -------------------------------------------------------------------------------- /src/WebBrowser.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/WebBrowser.tlb -------------------------------------------------------------------------------- /src/WebJSExternal.ridl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/WebJSExternal.ridl -------------------------------------------------------------------------------- /src/WebJSExternal_TLB.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/WebJSExternal_TLB.pas -------------------------------------------------------------------------------- /src/images/mycomponents.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/images/mycomponents.res -------------------------------------------------------------------------------- /src/liblcl.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/liblcl.lpi -------------------------------------------------------------------------------- /src/liblcl.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/liblcl.lpr -------------------------------------------------------------------------------- /src/liblcl.lps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/liblcl.lps -------------------------------------------------------------------------------- /src/liblcl.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/liblcl.res -------------------------------------------------------------------------------- /src/mylazpkgs.lpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/mylazpkgs.lpk -------------------------------------------------------------------------------- /src/mylazpkgs.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/mylazpkgs.pas -------------------------------------------------------------------------------- /src/uEventCallback.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/uEventCallback.pas -------------------------------------------------------------------------------- /src/uFormDesignerFile.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/uFormDesignerFile.pas -------------------------------------------------------------------------------- /src/uMiniWebview.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/uMiniWebview.pas -------------------------------------------------------------------------------- /src/ucomponents.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/ucomponents.pas -------------------------------------------------------------------------------- /src/ucontrolpatchs.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/ucontrolpatchs.pas -------------------------------------------------------------------------------- /src/uexceptionhandle.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/uexceptionhandle.pas -------------------------------------------------------------------------------- /src/uexport1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/uexport1.pas -------------------------------------------------------------------------------- /src/uexport2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/uexport2.pas -------------------------------------------------------------------------------- /src/uexport3.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/uexport3.pas -------------------------------------------------------------------------------- /src/uexport4.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/uexport4.pas -------------------------------------------------------------------------------- /src/ugauge.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/ugauge.pas -------------------------------------------------------------------------------- /src/ugoform.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/ugoform.pas -------------------------------------------------------------------------------- /src/ulinklabel.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/ulinklabel.pas -------------------------------------------------------------------------------- /src/ulinuxpatchs.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/ulinuxpatchs.pas -------------------------------------------------------------------------------- /src/umacospatchs.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/umacospatchs.pas -------------------------------------------------------------------------------- /src/uregcomponents.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/uregcomponents.pas -------------------------------------------------------------------------------- /src/urichedit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/urichedit.pas -------------------------------------------------------------------------------- /src/xbutton.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/liblcl/HEAD/src/xbutton.pas --------------------------------------------------------------------------------