├── .swm ├── document-constructor.hrsjf.sw.md ├── swimm.json └── this-is-a-second-test.8ffy6.sw.md ├── AssortedWidgets ├── AbstractButton.cpp ├── AbstractButton.h ├── BorderLayout.cpp ├── BorderLayout.h ├── BoundingBox.h ├── Button.cpp ├── Button.h ├── CheckButton.cpp ├── CheckButton.h ├── Component.cpp ├── Component.h ├── ContainerElement.h ├── DefaultTheme.cpp ├── DefaultTheme.h ├── Dialog.cpp ├── Dialog.h ├── DialogBottom.cpp ├── DialogBottom.h ├── DialogBottomLeft.cpp ├── DialogBottomLeft.h ├── DialogBottomRight.cpp ├── DialogBottomRight.h ├── DialogLeft.cpp ├── DialogLeft.h ├── DialogManager.cpp ├── DialogManager.h ├── DialogRight.cpp ├── DialogRight.h ├── DialogTitleBar.cpp ├── DialogTitleBar.h ├── DialogUp.cpp ├── DialogUp.h ├── DialogUpLeft.cpp ├── DialogUpLeft.h ├── DialogUpRight.cpp ├── DialogUpRight.h ├── DragAble.cpp ├── DragAble.h ├── DragManager.h ├── DropList.cpp ├── DropList.h ├── DropListButton.cpp ├── DropListButton.h ├── DropListItem.cpp ├── DropListItem.h ├── DropListManager.cpp ├── DropListManager.h ├── Event.h ├── FlowLayout.cpp ├── FlowLayout.h ├── Font.cpp ├── Font.h ├── FontEngine.cpp ├── FontEngine.h ├── Graphics.h ├── GraphicsBackend.cpp ├── GraphicsBackend.h ├── GridLayout.cpp ├── GridLayout.h ├── KeyEvent.h ├── Label.cpp ├── Label.h ├── Layout.h ├── Logo.cpp ├── Logo.h ├── Main.cpp ├── Menu.cpp ├── Menu.h ├── MenuBar.cpp ├── MenuBar.h ├── MenuItem.cpp ├── MenuItem.h ├── MenuItemButton.cpp ├── MenuItemButton.h ├── MenuItemRadioButton.cpp ├── MenuItemRadioButton.h ├── MenuItemRadioGroup.cpp ├── MenuItemRadioGroup.h ├── MenuItemSeparator.cpp ├── MenuItemSeparator.h ├── MenuItemSpacer.cpp ├── MenuItemSpacer.h ├── MenuItemSubMenu.cpp ├── MenuItemSubMenu.h ├── MenuItemToggleButton.cpp ├── MenuItemToggleButton.h ├── MenuList.cpp ├── MenuList.h ├── MenuTheme.h ├── MouseEvent.h ├── MouseListener.h ├── Panel.cpp ├── Panel.h ├── Position.h ├── ProgressBar.cpp ├── ProgressBar.h ├── RadioButton.cpp ├── RadioButton.h ├── RadioGroup.cpp ├── RadioGroup.h ├── ScrollBar.cpp ├── ScrollBar.h ├── ScrollBarButton.cpp ├── ScrollBarButton.h ├── ScrollBarSlider.cpp ├── ScrollBarSlider.h ├── ScrollPanel.cpp ├── ScrollPanel.h ├── SelectionManager.cpp ├── SelectionManager.h ├── Size.h ├── SlideBar.cpp ├── SlideBar.h ├── SlideBarSlider.cpp ├── SlideBarSlider.h ├── Spacer.cpp ├── Spacer.h ├── SubImage.cpp ├── SubImage.h ├── TextField.cpp ├── TextField.h ├── Theme.h ├── ThemeEngine.h ├── TrueTypeFont.cpp ├── TrueTypeFont.h ├── TypeAble.cpp ├── TypeAble.h ├── TypeActiveManager.cpp ├── TypeActiveManager.h ├── UI.cpp ├── UI.h ├── fontstash.h ├── glfontstash.h ├── sdf.h ├── shaders.h ├── shell_minimal.html └── stb_truetype.h ├── CMakeLists.txt ├── LICENSE ├── README.md ├── assets ├── arial.ttf ├── aw.png └── index.html ├── cmake └── Modules │ ├── Emscripten.cmake │ ├── FindOpenGLES2.cmake │ ├── FindSDL2.cmake │ └── FindSDL2_image.cmake ├── demo ├── AllInOneDialog.cpp ├── AllInOneDialog.h ├── BorderLayoutTestDialog.cpp ├── BorderLayoutTestDialog.h ├── CheckNRadioTestDialog.cpp ├── CheckNRadioTestDialog.h ├── DialogTestDialog.cpp ├── DialogTestDialog.h ├── FlowLayoutTestDialog.cpp ├── FlowLayoutTestDialog.h ├── GridLayoutTestDialog.cpp ├── GridLayoutTestDialog.h ├── LabelNButtonTestDialog.cpp ├── LabelNButtonTestDialog.h ├── MultipleLayoutTestDialog.cpp ├── MultipleLayoutTestDialog.h ├── PanelTestDialog.cpp ├── PanelTestDialog.h ├── ProgressNSliderTestDialog.cpp ├── ProgressNSliderTestDialog.h ├── TextNDropTestDialog.cpp └── TextNDropTestDialog.h └── docs ├── AssortedWidgets.data ├── AssortedWidgets.js ├── AssortedWidgets.wasm ├── aw1.jpg ├── aw3.jpg ├── aw4.jpg ├── aw5.jpg ├── aw6.jpg ├── css ├── atelier-forest-dark.css ├── blueimp-gallery.min.css ├── bootstrap-theme.css ├── bootstrap-theme.css.map ├── bootstrap-theme.min.css ├── bootstrap-theme.min.css.map ├── bootstrap.css ├── bootstrap.css.map ├── bootstrap.min.css └── bootstrap.min.css.map ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2 ├── img ├── error.png ├── error.svg ├── loading.gif ├── play-pause.png ├── play-pause.svg ├── video-play.png └── video-play.svg ├── index.html ├── js ├── blueimp-gallery.min.js ├── blueimp-gallery.min.js.map ├── bootstrap.js ├── bootstrap.min.js └── npm.js └── screenshot.png /.swm/document-constructor.hrsjf.sw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/.swm/document-constructor.hrsjf.sw.md -------------------------------------------------------------------------------- /.swm/swimm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/.swm/swimm.json -------------------------------------------------------------------------------- /.swm/this-is-a-second-test.8ffy6.sw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/.swm/this-is-a-second-test.8ffy6.sw.md -------------------------------------------------------------------------------- /AssortedWidgets/AbstractButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/AbstractButton.cpp -------------------------------------------------------------------------------- /AssortedWidgets/AbstractButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/AbstractButton.h -------------------------------------------------------------------------------- /AssortedWidgets/BorderLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/BorderLayout.cpp -------------------------------------------------------------------------------- /AssortedWidgets/BorderLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/BorderLayout.h -------------------------------------------------------------------------------- /AssortedWidgets/BoundingBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/BoundingBox.h -------------------------------------------------------------------------------- /AssortedWidgets/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/Button.cpp -------------------------------------------------------------------------------- /AssortedWidgets/Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/Button.h -------------------------------------------------------------------------------- /AssortedWidgets/CheckButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/CheckButton.cpp -------------------------------------------------------------------------------- /AssortedWidgets/CheckButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/CheckButton.h -------------------------------------------------------------------------------- /AssortedWidgets/Component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/Component.cpp -------------------------------------------------------------------------------- /AssortedWidgets/Component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/Component.h -------------------------------------------------------------------------------- /AssortedWidgets/ContainerElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/ContainerElement.h -------------------------------------------------------------------------------- /AssortedWidgets/DefaultTheme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/DefaultTheme.cpp -------------------------------------------------------------------------------- /AssortedWidgets/DefaultTheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/DefaultTheme.h -------------------------------------------------------------------------------- /AssortedWidgets/Dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/Dialog.cpp -------------------------------------------------------------------------------- /AssortedWidgets/Dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/Dialog.h -------------------------------------------------------------------------------- /AssortedWidgets/DialogBottom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/DialogBottom.cpp -------------------------------------------------------------------------------- /AssortedWidgets/DialogBottom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/DialogBottom.h -------------------------------------------------------------------------------- /AssortedWidgets/DialogBottomLeft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/DialogBottomLeft.cpp -------------------------------------------------------------------------------- /AssortedWidgets/DialogBottomLeft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/DialogBottomLeft.h -------------------------------------------------------------------------------- /AssortedWidgets/DialogBottomRight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/DialogBottomRight.cpp -------------------------------------------------------------------------------- /AssortedWidgets/DialogBottomRight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/DialogBottomRight.h -------------------------------------------------------------------------------- /AssortedWidgets/DialogLeft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/DialogLeft.cpp -------------------------------------------------------------------------------- /AssortedWidgets/DialogLeft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/DialogLeft.h -------------------------------------------------------------------------------- /AssortedWidgets/DialogManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/DialogManager.cpp -------------------------------------------------------------------------------- /AssortedWidgets/DialogManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/DialogManager.h -------------------------------------------------------------------------------- /AssortedWidgets/DialogRight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/DialogRight.cpp -------------------------------------------------------------------------------- /AssortedWidgets/DialogRight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/DialogRight.h -------------------------------------------------------------------------------- /AssortedWidgets/DialogTitleBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/DialogTitleBar.cpp -------------------------------------------------------------------------------- /AssortedWidgets/DialogTitleBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/DialogTitleBar.h -------------------------------------------------------------------------------- /AssortedWidgets/DialogUp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/DialogUp.cpp -------------------------------------------------------------------------------- /AssortedWidgets/DialogUp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/DialogUp.h -------------------------------------------------------------------------------- /AssortedWidgets/DialogUpLeft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/DialogUpLeft.cpp -------------------------------------------------------------------------------- /AssortedWidgets/DialogUpLeft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/DialogUpLeft.h -------------------------------------------------------------------------------- /AssortedWidgets/DialogUpRight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/DialogUpRight.cpp -------------------------------------------------------------------------------- /AssortedWidgets/DialogUpRight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/DialogUpRight.h -------------------------------------------------------------------------------- /AssortedWidgets/DragAble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/DragAble.cpp -------------------------------------------------------------------------------- /AssortedWidgets/DragAble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/DragAble.h -------------------------------------------------------------------------------- /AssortedWidgets/DragManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/DragManager.h -------------------------------------------------------------------------------- /AssortedWidgets/DropList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/DropList.cpp -------------------------------------------------------------------------------- /AssortedWidgets/DropList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/DropList.h -------------------------------------------------------------------------------- /AssortedWidgets/DropListButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/DropListButton.cpp -------------------------------------------------------------------------------- /AssortedWidgets/DropListButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/DropListButton.h -------------------------------------------------------------------------------- /AssortedWidgets/DropListItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/DropListItem.cpp -------------------------------------------------------------------------------- /AssortedWidgets/DropListItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/DropListItem.h -------------------------------------------------------------------------------- /AssortedWidgets/DropListManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/DropListManager.cpp -------------------------------------------------------------------------------- /AssortedWidgets/DropListManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/DropListManager.h -------------------------------------------------------------------------------- /AssortedWidgets/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/Event.h -------------------------------------------------------------------------------- /AssortedWidgets/FlowLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/FlowLayout.cpp -------------------------------------------------------------------------------- /AssortedWidgets/FlowLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/FlowLayout.h -------------------------------------------------------------------------------- /AssortedWidgets/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/Font.cpp -------------------------------------------------------------------------------- /AssortedWidgets/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/Font.h -------------------------------------------------------------------------------- /AssortedWidgets/FontEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/FontEngine.cpp -------------------------------------------------------------------------------- /AssortedWidgets/FontEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/FontEngine.h -------------------------------------------------------------------------------- /AssortedWidgets/Graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/Graphics.h -------------------------------------------------------------------------------- /AssortedWidgets/GraphicsBackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/GraphicsBackend.cpp -------------------------------------------------------------------------------- /AssortedWidgets/GraphicsBackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/GraphicsBackend.h -------------------------------------------------------------------------------- /AssortedWidgets/GridLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/GridLayout.cpp -------------------------------------------------------------------------------- /AssortedWidgets/GridLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/GridLayout.h -------------------------------------------------------------------------------- /AssortedWidgets/KeyEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/KeyEvent.h -------------------------------------------------------------------------------- /AssortedWidgets/Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/Label.cpp -------------------------------------------------------------------------------- /AssortedWidgets/Label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/Label.h -------------------------------------------------------------------------------- /AssortedWidgets/Layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/Layout.h -------------------------------------------------------------------------------- /AssortedWidgets/Logo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/Logo.cpp -------------------------------------------------------------------------------- /AssortedWidgets/Logo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/Logo.h -------------------------------------------------------------------------------- /AssortedWidgets/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/Main.cpp -------------------------------------------------------------------------------- /AssortedWidgets/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/Menu.cpp -------------------------------------------------------------------------------- /AssortedWidgets/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/Menu.h -------------------------------------------------------------------------------- /AssortedWidgets/MenuBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/MenuBar.cpp -------------------------------------------------------------------------------- /AssortedWidgets/MenuBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/MenuBar.h -------------------------------------------------------------------------------- /AssortedWidgets/MenuItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/MenuItem.cpp -------------------------------------------------------------------------------- /AssortedWidgets/MenuItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/MenuItem.h -------------------------------------------------------------------------------- /AssortedWidgets/MenuItemButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/MenuItemButton.cpp -------------------------------------------------------------------------------- /AssortedWidgets/MenuItemButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/MenuItemButton.h -------------------------------------------------------------------------------- /AssortedWidgets/MenuItemRadioButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/MenuItemRadioButton.cpp -------------------------------------------------------------------------------- /AssortedWidgets/MenuItemRadioButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/MenuItemRadioButton.h -------------------------------------------------------------------------------- /AssortedWidgets/MenuItemRadioGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/MenuItemRadioGroup.cpp -------------------------------------------------------------------------------- /AssortedWidgets/MenuItemRadioGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/MenuItemRadioGroup.h -------------------------------------------------------------------------------- /AssortedWidgets/MenuItemSeparator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/MenuItemSeparator.cpp -------------------------------------------------------------------------------- /AssortedWidgets/MenuItemSeparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/MenuItemSeparator.h -------------------------------------------------------------------------------- /AssortedWidgets/MenuItemSpacer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/MenuItemSpacer.cpp -------------------------------------------------------------------------------- /AssortedWidgets/MenuItemSpacer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/MenuItemSpacer.h -------------------------------------------------------------------------------- /AssortedWidgets/MenuItemSubMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/MenuItemSubMenu.cpp -------------------------------------------------------------------------------- /AssortedWidgets/MenuItemSubMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/MenuItemSubMenu.h -------------------------------------------------------------------------------- /AssortedWidgets/MenuItemToggleButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/MenuItemToggleButton.cpp -------------------------------------------------------------------------------- /AssortedWidgets/MenuItemToggleButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/MenuItemToggleButton.h -------------------------------------------------------------------------------- /AssortedWidgets/MenuList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/MenuList.cpp -------------------------------------------------------------------------------- /AssortedWidgets/MenuList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/MenuList.h -------------------------------------------------------------------------------- /AssortedWidgets/MenuTheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/MenuTheme.h -------------------------------------------------------------------------------- /AssortedWidgets/MouseEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/MouseEvent.h -------------------------------------------------------------------------------- /AssortedWidgets/MouseListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/MouseListener.h -------------------------------------------------------------------------------- /AssortedWidgets/Panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/Panel.cpp -------------------------------------------------------------------------------- /AssortedWidgets/Panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/Panel.h -------------------------------------------------------------------------------- /AssortedWidgets/Position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/Position.h -------------------------------------------------------------------------------- /AssortedWidgets/ProgressBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/ProgressBar.cpp -------------------------------------------------------------------------------- /AssortedWidgets/ProgressBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/ProgressBar.h -------------------------------------------------------------------------------- /AssortedWidgets/RadioButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/RadioButton.cpp -------------------------------------------------------------------------------- /AssortedWidgets/RadioButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/RadioButton.h -------------------------------------------------------------------------------- /AssortedWidgets/RadioGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/RadioGroup.cpp -------------------------------------------------------------------------------- /AssortedWidgets/RadioGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/RadioGroup.h -------------------------------------------------------------------------------- /AssortedWidgets/ScrollBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/ScrollBar.cpp -------------------------------------------------------------------------------- /AssortedWidgets/ScrollBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/ScrollBar.h -------------------------------------------------------------------------------- /AssortedWidgets/ScrollBarButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/ScrollBarButton.cpp -------------------------------------------------------------------------------- /AssortedWidgets/ScrollBarButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/ScrollBarButton.h -------------------------------------------------------------------------------- /AssortedWidgets/ScrollBarSlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/ScrollBarSlider.cpp -------------------------------------------------------------------------------- /AssortedWidgets/ScrollBarSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/ScrollBarSlider.h -------------------------------------------------------------------------------- /AssortedWidgets/ScrollPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/ScrollPanel.cpp -------------------------------------------------------------------------------- /AssortedWidgets/ScrollPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/ScrollPanel.h -------------------------------------------------------------------------------- /AssortedWidgets/SelectionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/SelectionManager.cpp -------------------------------------------------------------------------------- /AssortedWidgets/SelectionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/SelectionManager.h -------------------------------------------------------------------------------- /AssortedWidgets/Size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/Size.h -------------------------------------------------------------------------------- /AssortedWidgets/SlideBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/SlideBar.cpp -------------------------------------------------------------------------------- /AssortedWidgets/SlideBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/SlideBar.h -------------------------------------------------------------------------------- /AssortedWidgets/SlideBarSlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/SlideBarSlider.cpp -------------------------------------------------------------------------------- /AssortedWidgets/SlideBarSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/SlideBarSlider.h -------------------------------------------------------------------------------- /AssortedWidgets/Spacer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/Spacer.cpp -------------------------------------------------------------------------------- /AssortedWidgets/Spacer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/Spacer.h -------------------------------------------------------------------------------- /AssortedWidgets/SubImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/SubImage.cpp -------------------------------------------------------------------------------- /AssortedWidgets/SubImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/SubImage.h -------------------------------------------------------------------------------- /AssortedWidgets/TextField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/TextField.cpp -------------------------------------------------------------------------------- /AssortedWidgets/TextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/TextField.h -------------------------------------------------------------------------------- /AssortedWidgets/Theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/Theme.h -------------------------------------------------------------------------------- /AssortedWidgets/ThemeEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/ThemeEngine.h -------------------------------------------------------------------------------- /AssortedWidgets/TrueTypeFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/TrueTypeFont.cpp -------------------------------------------------------------------------------- /AssortedWidgets/TrueTypeFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/TrueTypeFont.h -------------------------------------------------------------------------------- /AssortedWidgets/TypeAble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/TypeAble.cpp -------------------------------------------------------------------------------- /AssortedWidgets/TypeAble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/TypeAble.h -------------------------------------------------------------------------------- /AssortedWidgets/TypeActiveManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/TypeActiveManager.cpp -------------------------------------------------------------------------------- /AssortedWidgets/TypeActiveManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/TypeActiveManager.h -------------------------------------------------------------------------------- /AssortedWidgets/UI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/UI.cpp -------------------------------------------------------------------------------- /AssortedWidgets/UI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/UI.h -------------------------------------------------------------------------------- /AssortedWidgets/fontstash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/fontstash.h -------------------------------------------------------------------------------- /AssortedWidgets/glfontstash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/glfontstash.h -------------------------------------------------------------------------------- /AssortedWidgets/sdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/sdf.h -------------------------------------------------------------------------------- /AssortedWidgets/shaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/shaders.h -------------------------------------------------------------------------------- /AssortedWidgets/shell_minimal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/shell_minimal.html -------------------------------------------------------------------------------- /AssortedWidgets/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/AssortedWidgets/stb_truetype.h -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/README.md -------------------------------------------------------------------------------- /assets/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/assets/arial.ttf -------------------------------------------------------------------------------- /assets/aw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/assets/aw.png -------------------------------------------------------------------------------- /assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/assets/index.html -------------------------------------------------------------------------------- /cmake/Modules/Emscripten.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/cmake/Modules/Emscripten.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindOpenGLES2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/cmake/Modules/FindOpenGLES2.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/cmake/Modules/FindSDL2.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindSDL2_image.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/cmake/Modules/FindSDL2_image.cmake -------------------------------------------------------------------------------- /demo/AllInOneDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/demo/AllInOneDialog.cpp -------------------------------------------------------------------------------- /demo/AllInOneDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/demo/AllInOneDialog.h -------------------------------------------------------------------------------- /demo/BorderLayoutTestDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/demo/BorderLayoutTestDialog.cpp -------------------------------------------------------------------------------- /demo/BorderLayoutTestDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/demo/BorderLayoutTestDialog.h -------------------------------------------------------------------------------- /demo/CheckNRadioTestDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/demo/CheckNRadioTestDialog.cpp -------------------------------------------------------------------------------- /demo/CheckNRadioTestDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/demo/CheckNRadioTestDialog.h -------------------------------------------------------------------------------- /demo/DialogTestDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/demo/DialogTestDialog.cpp -------------------------------------------------------------------------------- /demo/DialogTestDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/demo/DialogTestDialog.h -------------------------------------------------------------------------------- /demo/FlowLayoutTestDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/demo/FlowLayoutTestDialog.cpp -------------------------------------------------------------------------------- /demo/FlowLayoutTestDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/demo/FlowLayoutTestDialog.h -------------------------------------------------------------------------------- /demo/GridLayoutTestDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/demo/GridLayoutTestDialog.cpp -------------------------------------------------------------------------------- /demo/GridLayoutTestDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/demo/GridLayoutTestDialog.h -------------------------------------------------------------------------------- /demo/LabelNButtonTestDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/demo/LabelNButtonTestDialog.cpp -------------------------------------------------------------------------------- /demo/LabelNButtonTestDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/demo/LabelNButtonTestDialog.h -------------------------------------------------------------------------------- /demo/MultipleLayoutTestDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/demo/MultipleLayoutTestDialog.cpp -------------------------------------------------------------------------------- /demo/MultipleLayoutTestDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/demo/MultipleLayoutTestDialog.h -------------------------------------------------------------------------------- /demo/PanelTestDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/demo/PanelTestDialog.cpp -------------------------------------------------------------------------------- /demo/PanelTestDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/demo/PanelTestDialog.h -------------------------------------------------------------------------------- /demo/ProgressNSliderTestDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/demo/ProgressNSliderTestDialog.cpp -------------------------------------------------------------------------------- /demo/ProgressNSliderTestDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/demo/ProgressNSliderTestDialog.h -------------------------------------------------------------------------------- /demo/TextNDropTestDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/demo/TextNDropTestDialog.cpp -------------------------------------------------------------------------------- /demo/TextNDropTestDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/demo/TextNDropTestDialog.h -------------------------------------------------------------------------------- /docs/AssortedWidgets.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/AssortedWidgets.data -------------------------------------------------------------------------------- /docs/AssortedWidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/AssortedWidgets.js -------------------------------------------------------------------------------- /docs/AssortedWidgets.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/AssortedWidgets.wasm -------------------------------------------------------------------------------- /docs/aw1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/aw1.jpg -------------------------------------------------------------------------------- /docs/aw3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/aw3.jpg -------------------------------------------------------------------------------- /docs/aw4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/aw4.jpg -------------------------------------------------------------------------------- /docs/aw5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/aw5.jpg -------------------------------------------------------------------------------- /docs/aw6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/aw6.jpg -------------------------------------------------------------------------------- /docs/css/atelier-forest-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/css/atelier-forest-dark.css -------------------------------------------------------------------------------- /docs/css/blueimp-gallery.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/css/blueimp-gallery.min.css -------------------------------------------------------------------------------- /docs/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/css/bootstrap-theme.css -------------------------------------------------------------------------------- /docs/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /docs/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /docs/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /docs/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/css/bootstrap.css -------------------------------------------------------------------------------- /docs/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/css/bootstrap.css.map -------------------------------------------------------------------------------- /docs/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/css/bootstrap.min.css -------------------------------------------------------------------------------- /docs/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /docs/img/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/img/error.png -------------------------------------------------------------------------------- /docs/img/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/img/error.svg -------------------------------------------------------------------------------- /docs/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/img/loading.gif -------------------------------------------------------------------------------- /docs/img/play-pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/img/play-pause.png -------------------------------------------------------------------------------- /docs/img/play-pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/img/play-pause.svg -------------------------------------------------------------------------------- /docs/img/video-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/img/video-play.png -------------------------------------------------------------------------------- /docs/img/video-play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/img/video-play.svg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/blueimp-gallery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/js/blueimp-gallery.min.js -------------------------------------------------------------------------------- /docs/js/blueimp-gallery.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/js/blueimp-gallery.min.js.map -------------------------------------------------------------------------------- /docs/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/js/bootstrap.js -------------------------------------------------------------------------------- /docs/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/js/bootstrap.min.js -------------------------------------------------------------------------------- /docs/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/js/npm.js -------------------------------------------------------------------------------- /docs/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi-yan/AssortedWidgets/HEAD/docs/screenshot.png --------------------------------------------------------------------------------