├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .github └── workflows │ └── manual.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── LICENSE.md ├── README.md ├── files ├── AboutUs │ ├── night.png │ └── nsanity.png ├── WoodenPanels.png ├── barTabImg.png ├── icon.png ├── images │ ├── BrowserButton.png │ ├── CheckListBox.png │ ├── Coords_Image.jpg │ ├── CustomFrame.png │ ├── CustomFrame2.png │ ├── EditBox.png │ ├── EscMenuBackdrop.png │ ├── HorizontalBar.png │ ├── InvisButton.png │ ├── OptionsPopupMenuBackdropTemplate.png │ ├── QuestButtonBaseTemplate.png │ ├── QuestButtonDisabledBackdropTemplate.png │ ├── QuestButtonPushedBackdropTemplate.png │ ├── QuestCheckBox.png │ ├── ScriptDialogButton.png │ ├── TextArea.png │ ├── backgroundWorkspace.png │ └── backgroundWorkspace2.png ├── woodenplankHorBig.png └── woodenplankVertBord.png ├── package.json ├── src ├── layout │ ├── bootstrap.bundle.js │ ├── bootstrap.min.css │ ├── index.html │ ├── light.css │ ├── popper.min.js │ ├── styles.css │ └── tippy.css ├── styles │ └── font-awesome │ │ ├── css │ │ └── all.min.css │ │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 └── ts │ ├── .gitignore │ ├── ClassesAndFunctions │ ├── Export.ts │ ├── GUIEvents.ts │ ├── ICallableDivInstance.ts │ ├── MiniFunctions.ts │ ├── MouseFunctions.ts │ └── Tooltips.ts │ ├── Commands │ ├── Actionable.ts │ ├── Implementation │ │ ├── Arrays │ │ │ ├── ChangeCircleCount.ts │ │ │ ├── ChangeCircleRadius.ts │ │ │ ├── ChangeTableCols.ts │ │ │ ├── ChangeTableRows.ts │ │ │ ├── ChangeTableXGap.ts │ │ │ ├── ChangeTableYGap.ts │ │ │ ├── CloneElementToArray.ts │ │ │ ├── DestroyArray.ts │ │ │ ├── DuplicateArrayCircular.ts │ │ │ ├── DuplicateArrayTable.ts │ │ │ └── RenameArray.ts │ │ ├── ChangeFrameDiskTexture.ts │ │ ├── ChangeFrameHeight.ts │ │ ├── ChangeFrameName.ts │ │ ├── ChangeFrameParent.ts │ │ ├── ChangeFrameTextColor.ts │ │ ├── ChangeFrameTooltip.ts │ │ ├── ChangeFrameType.ts │ │ ├── ChangeFrameWc3Texture Unused.ts │ │ ├── ChangeFrameWidth.ts │ │ ├── ChangeFrameX.ts │ │ ├── ChangeFrameY.ts │ │ ├── CreateFrame.ts │ │ ├── CreateFrameAtSelected.ts │ │ ├── Load.ts │ │ ├── MoveFrame.ts │ │ ├── New.ts │ │ └── RemoveFrame.ts │ ├── Redo.ts │ ├── Redoable.ts │ ├── SimpleCommand.ts │ ├── Undo.ts │ └── Undoable.ts │ ├── Editor │ ├── ChangeStack.ts │ ├── Editor.ts │ ├── EditorController.ts │ ├── FrameLogic │ │ ├── Arrays │ │ │ ├── BaseArray.ts │ │ │ ├── CircleArray.ts │ │ │ └── TableArray.ts │ │ ├── ComponentMap.ts │ │ ├── CustomComplex.ts │ │ ├── FrameBaseContent.ts │ │ ├── FrameBuilder.ts │ │ ├── FrameComponent.ts │ │ ├── FrameRequire.ts │ │ └── FrameType.ts │ ├── Menus │ │ ├── AppInterface.ts │ │ ├── Backgrounds.ts │ │ ├── ContextMenu.ts │ │ ├── RibbonMenu.ts │ │ ├── RibbonOption.ts │ │ └── TabsMenu.ts │ ├── ParameterEditor.ts │ └── ProjectTree.ts │ ├── Events │ ├── CanvasMovement.ts │ └── KeyboardShortcuts.ts │ ├── ImageConversion │ ├── Bitstream.ts │ ├── blp │ │ ├── blp to png.ts │ │ ├── blpImage.ts │ │ └── jpg.ts │ ├── dds │ │ ├── dds to png.ts │ │ ├── ddsImage.ts │ │ └── dxt.ts │ └── shared.ts │ ├── Persistence │ ├── LoadDocument.ts │ ├── NewDocument.ts │ ├── SaveASDocument.ts │ ├── SaveContainer.ts │ ├── SaveDocument.ts │ └── Saveable.ts │ ├── Templates │ ├── FrameMLText.ts │ └── Templates.ts │ ├── app.ts │ ├── declarations.d.ts │ ├── main.ts │ ├── modals │ └── ModalsInit.ts │ ├── preload.ts │ └── renderer.ts ├── tsconfig.json └── wipe_folder.bat /.eslintignore: -------------------------------------------------------------------------------- 1 | src/ts/ImageConversion/blp/jpg.ts -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/manual.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/.github/workflows/manual.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/README.md -------------------------------------------------------------------------------- /files/AboutUs/night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/files/AboutUs/night.png -------------------------------------------------------------------------------- /files/AboutUs/nsanity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/files/AboutUs/nsanity.png -------------------------------------------------------------------------------- /files/WoodenPanels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/files/WoodenPanels.png -------------------------------------------------------------------------------- /files/barTabImg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/files/barTabImg.png -------------------------------------------------------------------------------- /files/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/files/icon.png -------------------------------------------------------------------------------- /files/images/BrowserButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/files/images/BrowserButton.png -------------------------------------------------------------------------------- /files/images/CheckListBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/files/images/CheckListBox.png -------------------------------------------------------------------------------- /files/images/Coords_Image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/files/images/Coords_Image.jpg -------------------------------------------------------------------------------- /files/images/CustomFrame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/files/images/CustomFrame.png -------------------------------------------------------------------------------- /files/images/CustomFrame2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/files/images/CustomFrame2.png -------------------------------------------------------------------------------- /files/images/EditBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/files/images/EditBox.png -------------------------------------------------------------------------------- /files/images/EscMenuBackdrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/files/images/EscMenuBackdrop.png -------------------------------------------------------------------------------- /files/images/HorizontalBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/files/images/HorizontalBar.png -------------------------------------------------------------------------------- /files/images/InvisButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/files/images/InvisButton.png -------------------------------------------------------------------------------- /files/images/OptionsPopupMenuBackdropTemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/files/images/OptionsPopupMenuBackdropTemplate.png -------------------------------------------------------------------------------- /files/images/QuestButtonBaseTemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/files/images/QuestButtonBaseTemplate.png -------------------------------------------------------------------------------- /files/images/QuestButtonDisabledBackdropTemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/files/images/QuestButtonDisabledBackdropTemplate.png -------------------------------------------------------------------------------- /files/images/QuestButtonPushedBackdropTemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/files/images/QuestButtonPushedBackdropTemplate.png -------------------------------------------------------------------------------- /files/images/QuestCheckBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/files/images/QuestCheckBox.png -------------------------------------------------------------------------------- /files/images/ScriptDialogButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/files/images/ScriptDialogButton.png -------------------------------------------------------------------------------- /files/images/TextArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/files/images/TextArea.png -------------------------------------------------------------------------------- /files/images/backgroundWorkspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/files/images/backgroundWorkspace.png -------------------------------------------------------------------------------- /files/images/backgroundWorkspace2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/files/images/backgroundWorkspace2.png -------------------------------------------------------------------------------- /files/woodenplankHorBig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/files/woodenplankHorBig.png -------------------------------------------------------------------------------- /files/woodenplankVertBord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/files/woodenplankVertBord.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/package.json -------------------------------------------------------------------------------- /src/layout/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/layout/bootstrap.bundle.js -------------------------------------------------------------------------------- /src/layout/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/layout/bootstrap.min.css -------------------------------------------------------------------------------- /src/layout/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/layout/index.html -------------------------------------------------------------------------------- /src/layout/light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/layout/light.css -------------------------------------------------------------------------------- /src/layout/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/layout/popper.min.js -------------------------------------------------------------------------------- /src/layout/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/layout/styles.css -------------------------------------------------------------------------------- /src/layout/tippy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/layout/tippy.css -------------------------------------------------------------------------------- /src/styles/font-awesome/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/styles/font-awesome/css/all.min.css -------------------------------------------------------------------------------- /src/styles/font-awesome/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/styles/font-awesome/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /src/styles/font-awesome/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/styles/font-awesome/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /src/styles/font-awesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/styles/font-awesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /src/styles/font-awesome/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/styles/font-awesome/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /src/styles/font-awesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/styles/font-awesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /src/styles/font-awesome/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/styles/font-awesome/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /src/styles/font-awesome/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/styles/font-awesome/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /src/styles/font-awesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/styles/font-awesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /src/styles/font-awesome/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/styles/font-awesome/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /src/styles/font-awesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/styles/font-awesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /src/styles/font-awesome/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/styles/font-awesome/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /src/styles/font-awesome/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/styles/font-awesome/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /src/styles/font-awesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/styles/font-awesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /src/styles/font-awesome/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/styles/font-awesome/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /src/styles/font-awesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/styles/font-awesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /src/ts/.gitignore: -------------------------------------------------------------------------------- 1 | configMain.ts 2 | -------------------------------------------------------------------------------- /src/ts/ClassesAndFunctions/Export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/ClassesAndFunctions/Export.ts -------------------------------------------------------------------------------- /src/ts/ClassesAndFunctions/GUIEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/ClassesAndFunctions/GUIEvents.ts -------------------------------------------------------------------------------- /src/ts/ClassesAndFunctions/ICallableDivInstance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/ClassesAndFunctions/ICallableDivInstance.ts -------------------------------------------------------------------------------- /src/ts/ClassesAndFunctions/MiniFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/ClassesAndFunctions/MiniFunctions.ts -------------------------------------------------------------------------------- /src/ts/ClassesAndFunctions/MouseFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/ClassesAndFunctions/MouseFunctions.ts -------------------------------------------------------------------------------- /src/ts/ClassesAndFunctions/Tooltips.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/ClassesAndFunctions/Tooltips.ts -------------------------------------------------------------------------------- /src/ts/Commands/Actionable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Commands/Actionable.ts -------------------------------------------------------------------------------- /src/ts/Commands/Implementation/Arrays/ChangeCircleCount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Commands/Implementation/Arrays/ChangeCircleCount.ts -------------------------------------------------------------------------------- /src/ts/Commands/Implementation/Arrays/ChangeCircleRadius.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Commands/Implementation/Arrays/ChangeCircleRadius.ts -------------------------------------------------------------------------------- /src/ts/Commands/Implementation/Arrays/ChangeTableCols.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Commands/Implementation/Arrays/ChangeTableCols.ts -------------------------------------------------------------------------------- /src/ts/Commands/Implementation/Arrays/ChangeTableRows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Commands/Implementation/Arrays/ChangeTableRows.ts -------------------------------------------------------------------------------- /src/ts/Commands/Implementation/Arrays/ChangeTableXGap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Commands/Implementation/Arrays/ChangeTableXGap.ts -------------------------------------------------------------------------------- /src/ts/Commands/Implementation/Arrays/ChangeTableYGap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Commands/Implementation/Arrays/ChangeTableYGap.ts -------------------------------------------------------------------------------- /src/ts/Commands/Implementation/Arrays/CloneElementToArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Commands/Implementation/Arrays/CloneElementToArray.ts -------------------------------------------------------------------------------- /src/ts/Commands/Implementation/Arrays/DestroyArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Commands/Implementation/Arrays/DestroyArray.ts -------------------------------------------------------------------------------- /src/ts/Commands/Implementation/Arrays/DuplicateArrayCircular.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Commands/Implementation/Arrays/DuplicateArrayCircular.ts -------------------------------------------------------------------------------- /src/ts/Commands/Implementation/Arrays/DuplicateArrayTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Commands/Implementation/Arrays/DuplicateArrayTable.ts -------------------------------------------------------------------------------- /src/ts/Commands/Implementation/Arrays/RenameArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Commands/Implementation/Arrays/RenameArray.ts -------------------------------------------------------------------------------- /src/ts/Commands/Implementation/ChangeFrameDiskTexture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Commands/Implementation/ChangeFrameDiskTexture.ts -------------------------------------------------------------------------------- /src/ts/Commands/Implementation/ChangeFrameHeight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Commands/Implementation/ChangeFrameHeight.ts -------------------------------------------------------------------------------- /src/ts/Commands/Implementation/ChangeFrameName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Commands/Implementation/ChangeFrameName.ts -------------------------------------------------------------------------------- /src/ts/Commands/Implementation/ChangeFrameParent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Commands/Implementation/ChangeFrameParent.ts -------------------------------------------------------------------------------- /src/ts/Commands/Implementation/ChangeFrameTextColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Commands/Implementation/ChangeFrameTextColor.ts -------------------------------------------------------------------------------- /src/ts/Commands/Implementation/ChangeFrameTooltip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Commands/Implementation/ChangeFrameTooltip.ts -------------------------------------------------------------------------------- /src/ts/Commands/Implementation/ChangeFrameType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Commands/Implementation/ChangeFrameType.ts -------------------------------------------------------------------------------- /src/ts/Commands/Implementation/ChangeFrameWc3Texture Unused.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Commands/Implementation/ChangeFrameWc3Texture Unused.ts -------------------------------------------------------------------------------- /src/ts/Commands/Implementation/ChangeFrameWidth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Commands/Implementation/ChangeFrameWidth.ts -------------------------------------------------------------------------------- /src/ts/Commands/Implementation/ChangeFrameX.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Commands/Implementation/ChangeFrameX.ts -------------------------------------------------------------------------------- /src/ts/Commands/Implementation/ChangeFrameY.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Commands/Implementation/ChangeFrameY.ts -------------------------------------------------------------------------------- /src/ts/Commands/Implementation/CreateFrame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Commands/Implementation/CreateFrame.ts -------------------------------------------------------------------------------- /src/ts/Commands/Implementation/CreateFrameAtSelected.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Commands/Implementation/CreateFrameAtSelected.ts -------------------------------------------------------------------------------- /src/ts/Commands/Implementation/Load.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Commands/Implementation/Load.ts -------------------------------------------------------------------------------- /src/ts/Commands/Implementation/MoveFrame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Commands/Implementation/MoveFrame.ts -------------------------------------------------------------------------------- /src/ts/Commands/Implementation/New.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Commands/Implementation/New.ts -------------------------------------------------------------------------------- /src/ts/Commands/Implementation/RemoveFrame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Commands/Implementation/RemoveFrame.ts -------------------------------------------------------------------------------- /src/ts/Commands/Redo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Commands/Redo.ts -------------------------------------------------------------------------------- /src/ts/Commands/Redoable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Commands/Redoable.ts -------------------------------------------------------------------------------- /src/ts/Commands/SimpleCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Commands/SimpleCommand.ts -------------------------------------------------------------------------------- /src/ts/Commands/Undo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Commands/Undo.ts -------------------------------------------------------------------------------- /src/ts/Commands/Undoable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Commands/Undoable.ts -------------------------------------------------------------------------------- /src/ts/Editor/ChangeStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Editor/ChangeStack.ts -------------------------------------------------------------------------------- /src/ts/Editor/Editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Editor/Editor.ts -------------------------------------------------------------------------------- /src/ts/Editor/EditorController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Editor/EditorController.ts -------------------------------------------------------------------------------- /src/ts/Editor/FrameLogic/Arrays/BaseArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Editor/FrameLogic/Arrays/BaseArray.ts -------------------------------------------------------------------------------- /src/ts/Editor/FrameLogic/Arrays/CircleArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Editor/FrameLogic/Arrays/CircleArray.ts -------------------------------------------------------------------------------- /src/ts/Editor/FrameLogic/Arrays/TableArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Editor/FrameLogic/Arrays/TableArray.ts -------------------------------------------------------------------------------- /src/ts/Editor/FrameLogic/ComponentMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Editor/FrameLogic/ComponentMap.ts -------------------------------------------------------------------------------- /src/ts/Editor/FrameLogic/CustomComplex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Editor/FrameLogic/CustomComplex.ts -------------------------------------------------------------------------------- /src/ts/Editor/FrameLogic/FrameBaseContent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Editor/FrameLogic/FrameBaseContent.ts -------------------------------------------------------------------------------- /src/ts/Editor/FrameLogic/FrameBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Editor/FrameLogic/FrameBuilder.ts -------------------------------------------------------------------------------- /src/ts/Editor/FrameLogic/FrameComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Editor/FrameLogic/FrameComponent.ts -------------------------------------------------------------------------------- /src/ts/Editor/FrameLogic/FrameRequire.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Editor/FrameLogic/FrameRequire.ts -------------------------------------------------------------------------------- /src/ts/Editor/FrameLogic/FrameType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Editor/FrameLogic/FrameType.ts -------------------------------------------------------------------------------- /src/ts/Editor/Menus/AppInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Editor/Menus/AppInterface.ts -------------------------------------------------------------------------------- /src/ts/Editor/Menus/Backgrounds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Editor/Menus/Backgrounds.ts -------------------------------------------------------------------------------- /src/ts/Editor/Menus/ContextMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Editor/Menus/ContextMenu.ts -------------------------------------------------------------------------------- /src/ts/Editor/Menus/RibbonMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Editor/Menus/RibbonMenu.ts -------------------------------------------------------------------------------- /src/ts/Editor/Menus/RibbonOption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Editor/Menus/RibbonOption.ts -------------------------------------------------------------------------------- /src/ts/Editor/Menus/TabsMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Editor/Menus/TabsMenu.ts -------------------------------------------------------------------------------- /src/ts/Editor/ParameterEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Editor/ParameterEditor.ts -------------------------------------------------------------------------------- /src/ts/Editor/ProjectTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Editor/ProjectTree.ts -------------------------------------------------------------------------------- /src/ts/Events/CanvasMovement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Events/CanvasMovement.ts -------------------------------------------------------------------------------- /src/ts/Events/KeyboardShortcuts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Events/KeyboardShortcuts.ts -------------------------------------------------------------------------------- /src/ts/ImageConversion/Bitstream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/ImageConversion/Bitstream.ts -------------------------------------------------------------------------------- /src/ts/ImageConversion/blp/blp to png.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/ImageConversion/blp/blp to png.ts -------------------------------------------------------------------------------- /src/ts/ImageConversion/blp/blpImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/ImageConversion/blp/blpImage.ts -------------------------------------------------------------------------------- /src/ts/ImageConversion/blp/jpg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/ImageConversion/blp/jpg.ts -------------------------------------------------------------------------------- /src/ts/ImageConversion/dds/dds to png.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/ImageConversion/dds/dds to png.ts -------------------------------------------------------------------------------- /src/ts/ImageConversion/dds/ddsImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/ImageConversion/dds/ddsImage.ts -------------------------------------------------------------------------------- /src/ts/ImageConversion/dds/dxt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/ImageConversion/dds/dxt.ts -------------------------------------------------------------------------------- /src/ts/ImageConversion/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/ImageConversion/shared.ts -------------------------------------------------------------------------------- /src/ts/Persistence/LoadDocument.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Persistence/LoadDocument.ts -------------------------------------------------------------------------------- /src/ts/Persistence/NewDocument.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Persistence/NewDocument.ts -------------------------------------------------------------------------------- /src/ts/Persistence/SaveASDocument.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Persistence/SaveASDocument.ts -------------------------------------------------------------------------------- /src/ts/Persistence/SaveContainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Persistence/SaveContainer.ts -------------------------------------------------------------------------------- /src/ts/Persistence/SaveDocument.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Persistence/SaveDocument.ts -------------------------------------------------------------------------------- /src/ts/Persistence/Saveable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Persistence/Saveable.ts -------------------------------------------------------------------------------- /src/ts/Templates/FrameMLText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Templates/FrameMLText.ts -------------------------------------------------------------------------------- /src/ts/Templates/Templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/Templates/Templates.ts -------------------------------------------------------------------------------- /src/ts/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/app.ts -------------------------------------------------------------------------------- /src/ts/declarations.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/main.ts -------------------------------------------------------------------------------- /src/ts/modals/ModalsInit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/modals/ModalsInit.ts -------------------------------------------------------------------------------- /src/ts/preload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/preload.ts -------------------------------------------------------------------------------- /src/ts/renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/src/ts/renderer.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/tsconfig.json -------------------------------------------------------------------------------- /wipe_folder.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightknighto/Warcraft-3-Reforged-UI-Designer/HEAD/wipe_folder.bat --------------------------------------------------------------------------------