├── .appveyor.yml ├── .travis.yml ├── LICENSE ├── README.md ├── example ├── README.md ├── addons.make ├── example.png └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── exampleAdvancedGui ├── README.md ├── addons.make ├── advancedGuiExample.png ├── containers.png └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── exampleGraphics ├── README.md ├── addons.make ├── bin │ └── data │ │ └── images │ │ └── ente.jpg ├── exampleGraphics.png └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── exampleLayout ├── README.md ├── addons.make ├── layoutExample.png └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── exampleMenu ├── README.md ├── addons.make ├── exampleMenu.png └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── exampleOscParametersReceiver ├── addons.make └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── exampleOscParametersSender ├── addons.make └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── examplePanel ├── README.md ├── addons.make ├── bin │ └── data │ │ ├── ring.wav │ │ └── settings.xml ├── examplePanel.png └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── exampleParameterGroup ├── README.md ├── addons.make ├── parameterGroupExample.png └── src │ ├── CirclesRenderer.cpp │ ├── CirclesRenderer.h │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── exampleThemes ├── README.md ├── addons.make ├── bin │ └── data │ │ ├── fonts │ │ ├── Ubuntu-L.ttf │ │ ├── UbuntuMono-B.ttf │ │ ├── UbuntuMono-R.ttf │ │ └── ubuntu-font-licence-1.0.txt │ │ ├── theme3.json │ │ ├── theme_default.json │ │ └── theme_light.json ├── exampleThemes.png └── src │ ├── CirclesRenderer.cpp │ ├── CirclesRenderer.h │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── exampleXBadPractice ├── README.md ├── addons.make ├── bin │ └── data │ │ └── ring.wav ├── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h └── xBadPracticeGuiExample.png ├── src ├── DOM │ ├── Document.cpp │ ├── Document.h │ ├── Element.cpp │ ├── Element.h │ ├── EventTarget.h │ ├── Events.cpp │ ├── Events.h │ ├── Exceptions.cpp │ ├── Exceptions.h │ ├── Layout.cpp │ ├── Layout.h │ ├── Types.h │ └── ofxDOM.h ├── containers │ ├── ofxGuiContainer.cpp │ ├── ofxGuiContainer.h │ ├── ofxGuiGroup.cpp │ ├── ofxGuiGroup.h │ ├── ofxGuiMenu.cpp │ ├── ofxGuiMenu.h │ ├── ofxGuiPanel.cpp │ ├── ofxGuiPanel.h │ ├── ofxGuiSliderGroup.cpp │ ├── ofxGuiSliderGroup.h │ ├── ofxGuiTabs.cpp │ └── ofxGuiTabs.h ├── controls │ ├── ofxGuiButton.cpp │ ├── ofxGuiButton.h │ ├── ofxGuiFpsPlotter.cpp │ ├── ofxGuiFpsPlotter.h │ ├── ofxGuiFunctionPlotter.cpp │ ├── ofxGuiFunctionPlotter.h │ ├── ofxGuiFunctionSlider.cpp │ ├── ofxGuiFunctionSlider.h │ ├── ofxGuiGraphics.cpp │ ├── ofxGuiGraphics.h │ ├── ofxGuiInputField.cpp │ ├── ofxGuiInputField.h │ ├── ofxGuiLabel.cpp │ ├── ofxGuiLabel.h │ ├── ofxGuiRangeSlider.cpp │ ├── ofxGuiRangeSlider.h │ ├── ofxGuiSlider.cpp │ ├── ofxGuiSlider.h │ ├── ofxGuiToggle.cpp │ ├── ofxGuiToggle.h │ ├── ofxGuiValuePlotter.cpp │ ├── ofxGuiValuePlotter.h │ ├── ofxGuiZoomableGraphics.cpp │ └── ofxGuiZoomableGraphics.h ├── ofxGuiElement.cpp ├── ofxGuiElement.h ├── ofxGuiExtended.cpp ├── ofxGuiExtended.h ├── util │ └── IDGenerator.h └── view │ ├── JsonConfigParser.cpp │ ├── JsonConfigParser.h │ ├── ofxDOMBoxLayout.cpp │ ├── ofxDOMBoxLayout.h │ ├── ofxDOMFlexBoxLayout.cpp │ ├── ofxDOMFlexBoxLayout.h │ ├── ofxDOMLayoutHelper.cpp │ ├── ofxDOMLayoutHelper.h │ └── ofxGuiDefaultConfig.h ├── testFlexBox ├── README.md ├── addons.make └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h └── testLayout ├── README.md ├── addons.make ├── bin └── data │ ├── fonts │ ├── UbuntuMono-B.ttf │ └── ubuntu-font-licence-1.0.txt │ ├── theme_default.json │ └── theme_light.json └── src ├── main.cpp ├── ofApp.cpp └── ofApp.h /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/README.md -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/example/README.md -------------------------------------------------------------------------------- /example/addons.make: -------------------------------------------------------------------------------- 1 | ofxGuiExtended 2 | -------------------------------------------------------------------------------- /example/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/example/example.png -------------------------------------------------------------------------------- /example/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/example/src/main.cpp -------------------------------------------------------------------------------- /example/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/example/src/ofApp.cpp -------------------------------------------------------------------------------- /example/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/example/src/ofApp.h -------------------------------------------------------------------------------- /exampleAdvancedGui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleAdvancedGui/README.md -------------------------------------------------------------------------------- /exampleAdvancedGui/addons.make: -------------------------------------------------------------------------------- 1 | ofxGuiExtended 2 | -------------------------------------------------------------------------------- /exampleAdvancedGui/advancedGuiExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleAdvancedGui/advancedGuiExample.png -------------------------------------------------------------------------------- /exampleAdvancedGui/containers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleAdvancedGui/containers.png -------------------------------------------------------------------------------- /exampleAdvancedGui/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleAdvancedGui/src/main.cpp -------------------------------------------------------------------------------- /exampleAdvancedGui/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleAdvancedGui/src/ofApp.cpp -------------------------------------------------------------------------------- /exampleAdvancedGui/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleAdvancedGui/src/ofApp.h -------------------------------------------------------------------------------- /exampleGraphics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleGraphics/README.md -------------------------------------------------------------------------------- /exampleGraphics/addons.make: -------------------------------------------------------------------------------- 1 | ofxGuiExtended 2 | -------------------------------------------------------------------------------- /exampleGraphics/bin/data/images/ente.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleGraphics/bin/data/images/ente.jpg -------------------------------------------------------------------------------- /exampleGraphics/exampleGraphics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleGraphics/exampleGraphics.png -------------------------------------------------------------------------------- /exampleGraphics/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleGraphics/src/main.cpp -------------------------------------------------------------------------------- /exampleGraphics/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleGraphics/src/ofApp.cpp -------------------------------------------------------------------------------- /exampleGraphics/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleGraphics/src/ofApp.h -------------------------------------------------------------------------------- /exampleLayout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleLayout/README.md -------------------------------------------------------------------------------- /exampleLayout/addons.make: -------------------------------------------------------------------------------- 1 | ofxGuiExtended 2 | -------------------------------------------------------------------------------- /exampleLayout/layoutExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleLayout/layoutExample.png -------------------------------------------------------------------------------- /exampleLayout/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleLayout/src/main.cpp -------------------------------------------------------------------------------- /exampleLayout/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleLayout/src/ofApp.cpp -------------------------------------------------------------------------------- /exampleLayout/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleLayout/src/ofApp.h -------------------------------------------------------------------------------- /exampleMenu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleMenu/README.md -------------------------------------------------------------------------------- /exampleMenu/addons.make: -------------------------------------------------------------------------------- 1 | ofxGuiExtended 2 | -------------------------------------------------------------------------------- /exampleMenu/exampleMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleMenu/exampleMenu.png -------------------------------------------------------------------------------- /exampleMenu/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleMenu/src/main.cpp -------------------------------------------------------------------------------- /exampleMenu/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleMenu/src/ofApp.cpp -------------------------------------------------------------------------------- /exampleMenu/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleMenu/src/ofApp.h -------------------------------------------------------------------------------- /exampleOscParametersReceiver/addons.make: -------------------------------------------------------------------------------- 1 | ofxOsc 2 | ofxGuiExtended 3 | -------------------------------------------------------------------------------- /exampleOscParametersReceiver/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleOscParametersReceiver/src/main.cpp -------------------------------------------------------------------------------- /exampleOscParametersReceiver/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleOscParametersReceiver/src/ofApp.cpp -------------------------------------------------------------------------------- /exampleOscParametersReceiver/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleOscParametersReceiver/src/ofApp.h -------------------------------------------------------------------------------- /exampleOscParametersSender/addons.make: -------------------------------------------------------------------------------- 1 | ofxOsc 2 | ofxGuiExtended 3 | -------------------------------------------------------------------------------- /exampleOscParametersSender/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleOscParametersSender/src/main.cpp -------------------------------------------------------------------------------- /exampleOscParametersSender/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleOscParametersSender/src/ofApp.cpp -------------------------------------------------------------------------------- /exampleOscParametersSender/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleOscParametersSender/src/ofApp.h -------------------------------------------------------------------------------- /examplePanel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/examplePanel/README.md -------------------------------------------------------------------------------- /examplePanel/addons.make: -------------------------------------------------------------------------------- 1 | ofxGuiExtended 2 | -------------------------------------------------------------------------------- /examplePanel/bin/data/ring.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/examplePanel/bin/data/ring.wav -------------------------------------------------------------------------------- /examplePanel/bin/data/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/examplePanel/bin/data/settings.xml -------------------------------------------------------------------------------- /examplePanel/examplePanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/examplePanel/examplePanel.png -------------------------------------------------------------------------------- /examplePanel/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/examplePanel/src/main.cpp -------------------------------------------------------------------------------- /examplePanel/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/examplePanel/src/ofApp.cpp -------------------------------------------------------------------------------- /examplePanel/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/examplePanel/src/ofApp.h -------------------------------------------------------------------------------- /exampleParameterGroup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleParameterGroup/README.md -------------------------------------------------------------------------------- /exampleParameterGroup/addons.make: -------------------------------------------------------------------------------- 1 | ofxGuiExtended 2 | -------------------------------------------------------------------------------- /exampleParameterGroup/parameterGroupExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleParameterGroup/parameterGroupExample.png -------------------------------------------------------------------------------- /exampleParameterGroup/src/CirclesRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleParameterGroup/src/CirclesRenderer.cpp -------------------------------------------------------------------------------- /exampleParameterGroup/src/CirclesRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleParameterGroup/src/CirclesRenderer.h -------------------------------------------------------------------------------- /exampleParameterGroup/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleParameterGroup/src/main.cpp -------------------------------------------------------------------------------- /exampleParameterGroup/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleParameterGroup/src/ofApp.cpp -------------------------------------------------------------------------------- /exampleParameterGroup/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleParameterGroup/src/ofApp.h -------------------------------------------------------------------------------- /exampleThemes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleThemes/README.md -------------------------------------------------------------------------------- /exampleThemes/addons.make: -------------------------------------------------------------------------------- 1 | ofxGuiExtended 2 | -------------------------------------------------------------------------------- /exampleThemes/bin/data/fonts/Ubuntu-L.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleThemes/bin/data/fonts/Ubuntu-L.ttf -------------------------------------------------------------------------------- /exampleThemes/bin/data/fonts/UbuntuMono-B.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleThemes/bin/data/fonts/UbuntuMono-B.ttf -------------------------------------------------------------------------------- /exampleThemes/bin/data/fonts/UbuntuMono-R.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleThemes/bin/data/fonts/UbuntuMono-R.ttf -------------------------------------------------------------------------------- /exampleThemes/bin/data/fonts/ubuntu-font-licence-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleThemes/bin/data/fonts/ubuntu-font-licence-1.0.txt -------------------------------------------------------------------------------- /exampleThemes/bin/data/theme3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleThemes/bin/data/theme3.json -------------------------------------------------------------------------------- /exampleThemes/bin/data/theme_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleThemes/bin/data/theme_default.json -------------------------------------------------------------------------------- /exampleThemes/bin/data/theme_light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleThemes/bin/data/theme_light.json -------------------------------------------------------------------------------- /exampleThemes/exampleThemes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleThemes/exampleThemes.png -------------------------------------------------------------------------------- /exampleThemes/src/CirclesRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleThemes/src/CirclesRenderer.cpp -------------------------------------------------------------------------------- /exampleThemes/src/CirclesRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleThemes/src/CirclesRenderer.h -------------------------------------------------------------------------------- /exampleThemes/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleThemes/src/main.cpp -------------------------------------------------------------------------------- /exampleThemes/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleThemes/src/ofApp.cpp -------------------------------------------------------------------------------- /exampleThemes/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleThemes/src/ofApp.h -------------------------------------------------------------------------------- /exampleXBadPractice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleXBadPractice/README.md -------------------------------------------------------------------------------- /exampleXBadPractice/addons.make: -------------------------------------------------------------------------------- 1 | ofxGuiExtended 2 | -------------------------------------------------------------------------------- /exampleXBadPractice/bin/data/ring.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleXBadPractice/bin/data/ring.wav -------------------------------------------------------------------------------- /exampleXBadPractice/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleXBadPractice/src/main.cpp -------------------------------------------------------------------------------- /exampleXBadPractice/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleXBadPractice/src/ofApp.cpp -------------------------------------------------------------------------------- /exampleXBadPractice/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleXBadPractice/src/ofApp.h -------------------------------------------------------------------------------- /exampleXBadPractice/xBadPracticeGuiExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/exampleXBadPractice/xBadPracticeGuiExample.png -------------------------------------------------------------------------------- /src/DOM/Document.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/DOM/Document.cpp -------------------------------------------------------------------------------- /src/DOM/Document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/DOM/Document.h -------------------------------------------------------------------------------- /src/DOM/Element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/DOM/Element.cpp -------------------------------------------------------------------------------- /src/DOM/Element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/DOM/Element.h -------------------------------------------------------------------------------- /src/DOM/EventTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/DOM/EventTarget.h -------------------------------------------------------------------------------- /src/DOM/Events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/DOM/Events.cpp -------------------------------------------------------------------------------- /src/DOM/Events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/DOM/Events.h -------------------------------------------------------------------------------- /src/DOM/Exceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/DOM/Exceptions.cpp -------------------------------------------------------------------------------- /src/DOM/Exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/DOM/Exceptions.h -------------------------------------------------------------------------------- /src/DOM/Layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/DOM/Layout.cpp -------------------------------------------------------------------------------- /src/DOM/Layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/DOM/Layout.h -------------------------------------------------------------------------------- /src/DOM/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/DOM/Types.h -------------------------------------------------------------------------------- /src/DOM/ofxDOM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/DOM/ofxDOM.h -------------------------------------------------------------------------------- /src/containers/ofxGuiContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/containers/ofxGuiContainer.cpp -------------------------------------------------------------------------------- /src/containers/ofxGuiContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/containers/ofxGuiContainer.h -------------------------------------------------------------------------------- /src/containers/ofxGuiGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/containers/ofxGuiGroup.cpp -------------------------------------------------------------------------------- /src/containers/ofxGuiGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/containers/ofxGuiGroup.h -------------------------------------------------------------------------------- /src/containers/ofxGuiMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/containers/ofxGuiMenu.cpp -------------------------------------------------------------------------------- /src/containers/ofxGuiMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/containers/ofxGuiMenu.h -------------------------------------------------------------------------------- /src/containers/ofxGuiPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/containers/ofxGuiPanel.cpp -------------------------------------------------------------------------------- /src/containers/ofxGuiPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/containers/ofxGuiPanel.h -------------------------------------------------------------------------------- /src/containers/ofxGuiSliderGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/containers/ofxGuiSliderGroup.cpp -------------------------------------------------------------------------------- /src/containers/ofxGuiSliderGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/containers/ofxGuiSliderGroup.h -------------------------------------------------------------------------------- /src/containers/ofxGuiTabs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/containers/ofxGuiTabs.cpp -------------------------------------------------------------------------------- /src/containers/ofxGuiTabs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/containers/ofxGuiTabs.h -------------------------------------------------------------------------------- /src/controls/ofxGuiButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/controls/ofxGuiButton.cpp -------------------------------------------------------------------------------- /src/controls/ofxGuiButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/controls/ofxGuiButton.h -------------------------------------------------------------------------------- /src/controls/ofxGuiFpsPlotter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/controls/ofxGuiFpsPlotter.cpp -------------------------------------------------------------------------------- /src/controls/ofxGuiFpsPlotter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/controls/ofxGuiFpsPlotter.h -------------------------------------------------------------------------------- /src/controls/ofxGuiFunctionPlotter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/controls/ofxGuiFunctionPlotter.cpp -------------------------------------------------------------------------------- /src/controls/ofxGuiFunctionPlotter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/controls/ofxGuiFunctionPlotter.h -------------------------------------------------------------------------------- /src/controls/ofxGuiFunctionSlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/controls/ofxGuiFunctionSlider.cpp -------------------------------------------------------------------------------- /src/controls/ofxGuiFunctionSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/controls/ofxGuiFunctionSlider.h -------------------------------------------------------------------------------- /src/controls/ofxGuiGraphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/controls/ofxGuiGraphics.cpp -------------------------------------------------------------------------------- /src/controls/ofxGuiGraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/controls/ofxGuiGraphics.h -------------------------------------------------------------------------------- /src/controls/ofxGuiInputField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/controls/ofxGuiInputField.cpp -------------------------------------------------------------------------------- /src/controls/ofxGuiInputField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/controls/ofxGuiInputField.h -------------------------------------------------------------------------------- /src/controls/ofxGuiLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/controls/ofxGuiLabel.cpp -------------------------------------------------------------------------------- /src/controls/ofxGuiLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/controls/ofxGuiLabel.h -------------------------------------------------------------------------------- /src/controls/ofxGuiRangeSlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/controls/ofxGuiRangeSlider.cpp -------------------------------------------------------------------------------- /src/controls/ofxGuiRangeSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/controls/ofxGuiRangeSlider.h -------------------------------------------------------------------------------- /src/controls/ofxGuiSlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/controls/ofxGuiSlider.cpp -------------------------------------------------------------------------------- /src/controls/ofxGuiSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/controls/ofxGuiSlider.h -------------------------------------------------------------------------------- /src/controls/ofxGuiToggle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/controls/ofxGuiToggle.cpp -------------------------------------------------------------------------------- /src/controls/ofxGuiToggle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/controls/ofxGuiToggle.h -------------------------------------------------------------------------------- /src/controls/ofxGuiValuePlotter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/controls/ofxGuiValuePlotter.cpp -------------------------------------------------------------------------------- /src/controls/ofxGuiValuePlotter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/controls/ofxGuiValuePlotter.h -------------------------------------------------------------------------------- /src/controls/ofxGuiZoomableGraphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/controls/ofxGuiZoomableGraphics.cpp -------------------------------------------------------------------------------- /src/controls/ofxGuiZoomableGraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/controls/ofxGuiZoomableGraphics.h -------------------------------------------------------------------------------- /src/ofxGuiElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/ofxGuiElement.cpp -------------------------------------------------------------------------------- /src/ofxGuiElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/ofxGuiElement.h -------------------------------------------------------------------------------- /src/ofxGuiExtended.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/ofxGuiExtended.cpp -------------------------------------------------------------------------------- /src/ofxGuiExtended.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/ofxGuiExtended.h -------------------------------------------------------------------------------- /src/util/IDGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/util/IDGenerator.h -------------------------------------------------------------------------------- /src/view/JsonConfigParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/view/JsonConfigParser.cpp -------------------------------------------------------------------------------- /src/view/JsonConfigParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/view/JsonConfigParser.h -------------------------------------------------------------------------------- /src/view/ofxDOMBoxLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/view/ofxDOMBoxLayout.cpp -------------------------------------------------------------------------------- /src/view/ofxDOMBoxLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/view/ofxDOMBoxLayout.h -------------------------------------------------------------------------------- /src/view/ofxDOMFlexBoxLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/view/ofxDOMFlexBoxLayout.cpp -------------------------------------------------------------------------------- /src/view/ofxDOMFlexBoxLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/view/ofxDOMFlexBoxLayout.h -------------------------------------------------------------------------------- /src/view/ofxDOMLayoutHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/view/ofxDOMLayoutHelper.cpp -------------------------------------------------------------------------------- /src/view/ofxDOMLayoutHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/view/ofxDOMLayoutHelper.h -------------------------------------------------------------------------------- /src/view/ofxGuiDefaultConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/src/view/ofxGuiDefaultConfig.h -------------------------------------------------------------------------------- /testFlexBox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/testFlexBox/README.md -------------------------------------------------------------------------------- /testFlexBox/addons.make: -------------------------------------------------------------------------------- 1 | ofxGuiExtended 2 | -------------------------------------------------------------------------------- /testFlexBox/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/testFlexBox/src/main.cpp -------------------------------------------------------------------------------- /testFlexBox/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/testFlexBox/src/ofApp.cpp -------------------------------------------------------------------------------- /testFlexBox/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/testFlexBox/src/ofApp.h -------------------------------------------------------------------------------- /testLayout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/testLayout/README.md -------------------------------------------------------------------------------- /testLayout/addons.make: -------------------------------------------------------------------------------- 1 | ofxGuiExtended 2 | -------------------------------------------------------------------------------- /testLayout/bin/data/fonts/UbuntuMono-B.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/testLayout/bin/data/fonts/UbuntuMono-B.ttf -------------------------------------------------------------------------------- /testLayout/bin/data/fonts/ubuntu-font-licence-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/testLayout/bin/data/fonts/ubuntu-font-licence-1.0.txt -------------------------------------------------------------------------------- /testLayout/bin/data/theme_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/testLayout/bin/data/theme_default.json -------------------------------------------------------------------------------- /testLayout/bin/data/theme_light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/testLayout/bin/data/theme_light.json -------------------------------------------------------------------------------- /testLayout/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/testLayout/src/main.cpp -------------------------------------------------------------------------------- /testLayout/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/testLayout/src/ofApp.cpp -------------------------------------------------------------------------------- /testLayout/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frauzufall/ofxGuiExtended/HEAD/testLayout/src/ofApp.h --------------------------------------------------------------------------------