├── .gitignore ├── README.md ├── example └── brandNewUIWidgets │ ├── data │ ├── 014ToggleButton │ │ ├── off_hover │ │ │ └── off_hover-1.png │ │ ├── off_normal │ │ │ └── off_normal-1.png │ │ ├── off_pressed │ │ │ └── off_pressed-1.png │ │ ├── on_hover │ │ │ └── on_hover-1.png │ │ ├── on_normal │ │ │ └── on_normal-1.png │ │ └── on_pressed │ │ │ └── on_pressed-1.png │ ├── TattyUI.png │ ├── avaliableOnTheAppStore │ │ ├── hover │ │ │ ├── hover-1.png │ │ │ ├── hover-10.png │ │ │ ├── hover-11.png │ │ │ ├── hover-12.png │ │ │ ├── hover-13.png │ │ │ ├── hover-2.png │ │ │ ├── hover-3.png │ │ │ ├── hover-4.png │ │ │ ├── hover-5.png │ │ │ ├── hover-6.png │ │ │ ├── hover-7.png │ │ │ ├── hover-8.png │ │ │ └── hover-9.png │ │ ├── normal │ │ │ └── normal-1.png │ │ └── pressed │ │ │ └── pressed-1.png │ ├── background.png │ ├── bigRangeSlider │ │ ├── buttonHigh │ │ │ └── buttonHigh-1.png │ │ ├── buttonLow │ │ │ └── buttonLow-1.png │ │ ├── downBackground │ │ │ └── downBackground-1.png │ │ └── upBackground │ │ │ └── upBackground-1.png │ ├── blueAddButton │ │ ├── hover │ │ │ └── hover-1.png │ │ ├── normal │ │ │ └── normal-1.png │ │ └── pressed │ │ │ └── pressed-1.png │ ├── blueCheckmarkButton │ │ ├── hover │ │ │ └── hover-1.png │ │ ├── normal │ │ │ └── normal-1.png │ │ └── pressed │ │ │ └── pressed-1.png │ ├── blueCloseButton │ │ ├── hover │ │ │ └── hover-1.png │ │ ├── normal │ │ │ └── normal-1.png │ │ └── pressed │ │ │ └── pressed-1.png │ ├── blueRemoveButton │ │ ├── hover │ │ │ └── hover-1.png │ │ ├── normal │ │ │ └── normal-1.png │ │ └── pressed │ │ │ └── pressed-1.png │ ├── blueSearchButton │ │ ├── hover │ │ │ └── hover-1.png │ │ ├── normal │ │ │ └── normal-1.png │ │ └── pressed │ │ │ └── pressed-1.png │ ├── darkAddButton │ │ ├── hover │ │ │ └── hover-1.png │ │ ├── normal │ │ │ └── normal-1.png │ │ └── pressed │ │ │ └── pressed-1.png │ ├── darkCheckmarkButton │ │ ├── hover │ │ │ └── hover-1.png │ │ ├── normal │ │ │ └── normal-1.png │ │ └── pressed │ │ │ └── pressed-1.png │ ├── darkCloseButton │ │ ├── hover │ │ │ └── hover-1.png │ │ ├── normal │ │ │ └── normal-1.png │ │ └── pressed │ │ │ └── pressed-1.png │ ├── darkSearchButton │ │ ├── hover │ │ │ └── hover-1.png │ │ ├── normal │ │ │ └── normal-1.png │ │ └── pressed │ │ │ └── pressed-1.png │ ├── drakRemoveButton │ │ ├── hover │ │ │ └── hover-1.png │ │ ├── normal │ │ │ └── normal-1.png │ │ └── pressed │ │ │ └── pressed-1.png │ ├── iOSToggleButton │ │ ├── off_hover │ │ │ └── off_hover-1.png │ │ ├── off_normal │ │ │ └── off_normal-1.png │ │ ├── off_pressed │ │ │ └── off_pressed-1.png │ │ ├── on_hover │ │ │ └── on_hover-1.png │ │ ├── on_normal │ │ │ └── on_normal-1.png │ │ └── on_pressed │ │ │ └── on_pressed-1.png │ ├── radio │ │ ├── off_hover │ │ │ └── off_hover-1.png │ │ ├── off_normal │ │ │ └── off_normal-1.png │ │ ├── off_pressed │ │ │ └── off_pressed-1.png │ │ ├── on_hover │ │ │ └── on_hover-1.png │ │ ├── on_normal │ │ │ └── on_normal-1.png │ │ └── on_pressed │ │ │ └── on_pressed-1.png │ ├── rangeSlider │ │ ├── buttonHigh │ │ │ └── buttonHigh-1.png │ │ ├── buttonLow │ │ │ └── buttonLow-1.png │ │ ├── downBackground │ │ │ └── downBackground-1.png │ │ └── upBackground │ │ │ └── upBackground-1.png │ ├── slider │ │ ├── button │ │ │ └── button-1.png │ │ ├── downBackground │ │ │ └── downBackground-1.png │ │ └── upBackground │ │ │ └── upBackground-1.png │ ├── switch2ToggleButton │ │ ├── off_hover │ │ │ └── off_hover-1.png │ │ ├── off_normal │ │ │ └── off_normal-1.png │ │ ├── off_pressed │ │ │ └── off_pressed-1.png │ │ ├── on_hover │ │ │ └── on_hover-1.png │ │ ├── on_normal │ │ │ └── on_normal-1.png │ │ └── on_pressed │ │ │ └── on_pressed-1.png │ ├── switch3ToggleButton │ │ ├── off_hover │ │ │ └── off_hover-1.png │ │ ├── off_normal │ │ │ └── off_normal-1.png │ │ ├── off_pressed │ │ │ └── off_pressed-1.png │ │ ├── on_hover │ │ │ └── on_hover-1.png │ │ ├── on_normal │ │ │ └── on_normal-1.png │ │ └── on_pressed │ │ │ └── on_pressed-1.png │ ├── switchToggleButton │ │ ├── off_hover │ │ │ └── off_hover-1.png │ │ ├── off_normal │ │ │ └── off_normal-1.png │ │ ├── off_pressed │ │ │ └── off_pressed-1.png │ │ ├── on_hover │ │ │ └── on_hover-1.png │ │ ├── on_normal │ │ │ └── on_normal-1.png │ │ └── on_pressed │ │ │ └── on_pressed-1.png │ └── toggleButton │ │ ├── off_hover │ │ └── off_hover-1.png │ │ ├── off_normal │ │ └── off_normal.png │ │ ├── on_hover │ │ └── on_hover.png │ │ ├── on_normal │ │ └── on_normal.png │ │ └── on_pressed │ │ └── on_pressed.png │ └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── pictures ├── 1.jpg ├── 2.jpg ├── 3.jpg └── 4.jpg └── src ├── ofxUI.h ├── ofxUI2DGraph.cpp ├── ofxUI2DGraph.h ├── ofxUI2DPad.cpp ├── ofxUI2DPad.h ├── ofxUIBaseDraws.cpp ├── ofxUIBaseDraws.h ├── ofxUIBiLabelSlider.cpp ├── ofxUIBiLabelSlider.h ├── ofxUIButton.cpp ├── ofxUIButton.h ├── ofxUICanvas.cpp ├── ofxUICanvas.h ├── ofxUICircleSlider.cpp ├── ofxUICircleSlider.h ├── ofxUIDefines.h ├── ofxUIDragableLabelButton.cpp ├── ofxUIDragableLabelButton.h ├── ofxUIDropDownList.cpp ├── ofxUIDropDownList.h ├── ofxUIEventArgs.cpp ├── ofxUIEventArgs.h ├── ofxUIFPS.cpp ├── ofxUIFPS.h ├── ofxUIFPSSlider.cpp ├── ofxUIFPSSlider.h ├── ofxUIFrameAnimation.h ├── ofxUIFrameAnimationr.cpp ├── ofxUIImage.cpp ├── ofxUIImage.h ├── ofxUIImageButton.cpp ├── ofxUIImageButton.h ├── ofxUIImageSampler.cpp ├── ofxUIImageSampler.h ├── ofxUIImageSlider.cpp ├── ofxUIImageSlider.h ├── ofxUIImageToggle.cpp ├── ofxUIImageToggle.h ├── ofxUILabel.cpp ├── ofxUILabel.h ├── ofxUILabelButton.cpp ├── ofxUILabelButton.h ├── ofxUILabelToggle.cpp ├── ofxUILabelToggle.h ├── ofxUIMessage.cpp ├── ofxUIMessage.h ├── ofxUIMinimalSlider.cpp ├── ofxUIMinimalSlider.h ├── ofxUIMovingGraph.cpp ├── ofxUIMovingGraph.h ├── ofxUIMultiImageButton.cpp ├── ofxUIMultiImageButton.h ├── ofxUIMultiImageToggle.cpp ├── ofxUIMultiImageToggle.h ├── ofxUINumberDialer.cpp ├── ofxUINumberDialer.h ├── ofxUIOFWrapper.h ├── ofxUIRadio.cpp ├── ofxUIRadio.h ├── ofxUIRangeSlider.cpp ├── ofxUIRangeSlider.h ├── ofxUIRectangle.cpp ├── ofxUIRectangle.h ├── ofxUIRotarySlider.cpp ├── ofxUIRotarySlider.h ├── ofxUIScrollableCanvas.cpp ├── ofxUIScrollableCanvas.h ├── ofxUISlider.cpp ├── ofxUISlider.h ├── ofxUISortableList.cpp ├── ofxUISortableList.h ├── ofxUISpacer.cpp ├── ofxUISpacer.h ├── ofxUISpectrum.cpp ├── ofxUISpectrum.h ├── ofxUISuperCanvas.cpp ├── ofxUISuperCanvas.h ├── ofxUITabBar.cpp ├── ofxUITabBar.h ├── ofxUITattyXML.cpp ├── ofxUITattyXML.h ├── ofxUITextArea.cpp ├── ofxUITextArea.h ├── ofxUITextInput.cpp ├── ofxUITextInput.h ├── ofxUIToggle.cpp ├── ofxUIToggle.h ├── ofxUIToggleMatrix.cpp ├── ofxUIToggleMatrix.h ├── ofxUIUtils.h ├── ofxUIValuePlotter.cpp ├── ofxUIValuePlotter.h ├── ofxUIWaveform.cpp ├── ofxUIWaveform.h ├── ofxUIWidget.cpp ├── ofxUIWidget.h ├── ofxUIWidgetWithLabel.cpp ├── ofxUIWidgetWithLabel.h ├── ofxUIWidgets.h ├── ofxUIWindowCanvas.cpp ├── ofxUIWindowCanvas.h └── ofxUIWrapper.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/README.md -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/014ToggleButton/off_hover/off_hover-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/014ToggleButton/off_hover/off_hover-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/014ToggleButton/off_normal/off_normal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/014ToggleButton/off_normal/off_normal-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/014ToggleButton/off_pressed/off_pressed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/014ToggleButton/off_pressed/off_pressed-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/014ToggleButton/on_hover/on_hover-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/014ToggleButton/on_hover/on_hover-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/014ToggleButton/on_normal/on_normal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/014ToggleButton/on_normal/on_normal-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/014ToggleButton/on_pressed/on_pressed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/014ToggleButton/on_pressed/on_pressed-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/TattyUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/TattyUI.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/avaliableOnTheAppStore/hover/hover-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/avaliableOnTheAppStore/hover/hover-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/avaliableOnTheAppStore/hover/hover-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/avaliableOnTheAppStore/hover/hover-10.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/avaliableOnTheAppStore/hover/hover-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/avaliableOnTheAppStore/hover/hover-11.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/avaliableOnTheAppStore/hover/hover-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/avaliableOnTheAppStore/hover/hover-12.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/avaliableOnTheAppStore/hover/hover-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/avaliableOnTheAppStore/hover/hover-13.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/avaliableOnTheAppStore/hover/hover-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/avaliableOnTheAppStore/hover/hover-2.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/avaliableOnTheAppStore/hover/hover-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/avaliableOnTheAppStore/hover/hover-3.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/avaliableOnTheAppStore/hover/hover-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/avaliableOnTheAppStore/hover/hover-4.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/avaliableOnTheAppStore/hover/hover-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/avaliableOnTheAppStore/hover/hover-5.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/avaliableOnTheAppStore/hover/hover-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/avaliableOnTheAppStore/hover/hover-6.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/avaliableOnTheAppStore/hover/hover-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/avaliableOnTheAppStore/hover/hover-7.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/avaliableOnTheAppStore/hover/hover-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/avaliableOnTheAppStore/hover/hover-8.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/avaliableOnTheAppStore/hover/hover-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/avaliableOnTheAppStore/hover/hover-9.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/avaliableOnTheAppStore/normal/normal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/avaliableOnTheAppStore/normal/normal-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/avaliableOnTheAppStore/pressed/pressed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/avaliableOnTheAppStore/pressed/pressed-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/background.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/bigRangeSlider/buttonHigh/buttonHigh-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/bigRangeSlider/buttonHigh/buttonHigh-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/bigRangeSlider/buttonLow/buttonLow-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/bigRangeSlider/buttonLow/buttonLow-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/bigRangeSlider/downBackground/downBackground-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/bigRangeSlider/downBackground/downBackground-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/bigRangeSlider/upBackground/upBackground-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/bigRangeSlider/upBackground/upBackground-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/blueAddButton/hover/hover-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/blueAddButton/hover/hover-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/blueAddButton/normal/normal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/blueAddButton/normal/normal-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/blueAddButton/pressed/pressed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/blueAddButton/pressed/pressed-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/blueCheckmarkButton/hover/hover-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/blueCheckmarkButton/hover/hover-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/blueCheckmarkButton/normal/normal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/blueCheckmarkButton/normal/normal-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/blueCheckmarkButton/pressed/pressed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/blueCheckmarkButton/pressed/pressed-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/blueCloseButton/hover/hover-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/blueCloseButton/hover/hover-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/blueCloseButton/normal/normal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/blueCloseButton/normal/normal-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/blueCloseButton/pressed/pressed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/blueCloseButton/pressed/pressed-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/blueRemoveButton/hover/hover-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/blueRemoveButton/hover/hover-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/blueRemoveButton/normal/normal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/blueRemoveButton/normal/normal-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/blueRemoveButton/pressed/pressed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/blueRemoveButton/pressed/pressed-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/blueSearchButton/hover/hover-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/blueSearchButton/hover/hover-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/blueSearchButton/normal/normal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/blueSearchButton/normal/normal-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/blueSearchButton/pressed/pressed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/blueSearchButton/pressed/pressed-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/darkAddButton/hover/hover-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/darkAddButton/hover/hover-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/darkAddButton/normal/normal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/darkAddButton/normal/normal-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/darkAddButton/pressed/pressed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/darkAddButton/pressed/pressed-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/darkCheckmarkButton/hover/hover-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/darkCheckmarkButton/hover/hover-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/darkCheckmarkButton/normal/normal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/darkCheckmarkButton/normal/normal-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/darkCheckmarkButton/pressed/pressed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/darkCheckmarkButton/pressed/pressed-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/darkCloseButton/hover/hover-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/darkCloseButton/hover/hover-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/darkCloseButton/normal/normal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/darkCloseButton/normal/normal-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/darkCloseButton/pressed/pressed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/darkCloseButton/pressed/pressed-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/darkSearchButton/hover/hover-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/darkSearchButton/hover/hover-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/darkSearchButton/normal/normal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/darkSearchButton/normal/normal-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/darkSearchButton/pressed/pressed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/darkSearchButton/pressed/pressed-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/drakRemoveButton/hover/hover-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/drakRemoveButton/hover/hover-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/drakRemoveButton/normal/normal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/drakRemoveButton/normal/normal-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/drakRemoveButton/pressed/pressed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/drakRemoveButton/pressed/pressed-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/iOSToggleButton/off_hover/off_hover-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/iOSToggleButton/off_hover/off_hover-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/iOSToggleButton/off_normal/off_normal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/iOSToggleButton/off_normal/off_normal-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/iOSToggleButton/off_pressed/off_pressed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/iOSToggleButton/off_pressed/off_pressed-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/iOSToggleButton/on_hover/on_hover-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/iOSToggleButton/on_hover/on_hover-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/iOSToggleButton/on_normal/on_normal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/iOSToggleButton/on_normal/on_normal-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/iOSToggleButton/on_pressed/on_pressed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/iOSToggleButton/on_pressed/on_pressed-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/radio/off_hover/off_hover-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/radio/off_hover/off_hover-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/radio/off_normal/off_normal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/radio/off_normal/off_normal-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/radio/off_pressed/off_pressed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/radio/off_pressed/off_pressed-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/radio/on_hover/on_hover-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/radio/on_hover/on_hover-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/radio/on_normal/on_normal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/radio/on_normal/on_normal-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/radio/on_pressed/on_pressed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/radio/on_pressed/on_pressed-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/rangeSlider/buttonHigh/buttonHigh-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/rangeSlider/buttonHigh/buttonHigh-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/rangeSlider/buttonLow/buttonLow-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/rangeSlider/buttonLow/buttonLow-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/rangeSlider/downBackground/downBackground-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/rangeSlider/downBackground/downBackground-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/rangeSlider/upBackground/upBackground-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/rangeSlider/upBackground/upBackground-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/slider/button/button-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/slider/button/button-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/slider/downBackground/downBackground-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/slider/downBackground/downBackground-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/slider/upBackground/upBackground-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/slider/upBackground/upBackground-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/switch2ToggleButton/off_hover/off_hover-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/switch2ToggleButton/off_hover/off_hover-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/switch2ToggleButton/off_normal/off_normal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/switch2ToggleButton/off_normal/off_normal-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/switch2ToggleButton/off_pressed/off_pressed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/switch2ToggleButton/off_pressed/off_pressed-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/switch2ToggleButton/on_hover/on_hover-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/switch2ToggleButton/on_hover/on_hover-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/switch2ToggleButton/on_normal/on_normal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/switch2ToggleButton/on_normal/on_normal-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/switch2ToggleButton/on_pressed/on_pressed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/switch2ToggleButton/on_pressed/on_pressed-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/switch3ToggleButton/off_hover/off_hover-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/switch3ToggleButton/off_hover/off_hover-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/switch3ToggleButton/off_normal/off_normal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/switch3ToggleButton/off_normal/off_normal-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/switch3ToggleButton/off_pressed/off_pressed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/switch3ToggleButton/off_pressed/off_pressed-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/switch3ToggleButton/on_hover/on_hover-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/switch3ToggleButton/on_hover/on_hover-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/switch3ToggleButton/on_normal/on_normal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/switch3ToggleButton/on_normal/on_normal-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/switch3ToggleButton/on_pressed/on_pressed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/switch3ToggleButton/on_pressed/on_pressed-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/switchToggleButton/off_hover/off_hover-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/switchToggleButton/off_hover/off_hover-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/switchToggleButton/off_normal/off_normal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/switchToggleButton/off_normal/off_normal-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/switchToggleButton/off_pressed/off_pressed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/switchToggleButton/off_pressed/off_pressed-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/switchToggleButton/on_hover/on_hover-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/switchToggleButton/on_hover/on_hover-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/switchToggleButton/on_normal/on_normal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/switchToggleButton/on_normal/on_normal-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/switchToggleButton/on_pressed/on_pressed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/switchToggleButton/on_pressed/on_pressed-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/toggleButton/off_hover/off_hover-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/toggleButton/off_hover/off_hover-1.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/toggleButton/off_normal/off_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/toggleButton/off_normal/off_normal.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/toggleButton/on_hover/on_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/toggleButton/on_hover/on_hover.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/toggleButton/on_normal/on_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/toggleButton/on_normal/on_normal.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/data/toggleButton/on_pressed/on_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/data/toggleButton/on_pressed/on_pressed.png -------------------------------------------------------------------------------- /example/brandNewUIWidgets/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/src/main.cpp -------------------------------------------------------------------------------- /example/brandNewUIWidgets/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/src/ofApp.cpp -------------------------------------------------------------------------------- /example/brandNewUIWidgets/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/example/brandNewUIWidgets/src/ofApp.h -------------------------------------------------------------------------------- /pictures/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/pictures/1.jpg -------------------------------------------------------------------------------- /pictures/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/pictures/2.jpg -------------------------------------------------------------------------------- /pictures/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/pictures/3.jpg -------------------------------------------------------------------------------- /pictures/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/pictures/4.jpg -------------------------------------------------------------------------------- /src/ofxUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUI.h -------------------------------------------------------------------------------- /src/ofxUI2DGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUI2DGraph.cpp -------------------------------------------------------------------------------- /src/ofxUI2DGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUI2DGraph.h -------------------------------------------------------------------------------- /src/ofxUI2DPad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUI2DPad.cpp -------------------------------------------------------------------------------- /src/ofxUI2DPad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUI2DPad.h -------------------------------------------------------------------------------- /src/ofxUIBaseDraws.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIBaseDraws.cpp -------------------------------------------------------------------------------- /src/ofxUIBaseDraws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIBaseDraws.h -------------------------------------------------------------------------------- /src/ofxUIBiLabelSlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIBiLabelSlider.cpp -------------------------------------------------------------------------------- /src/ofxUIBiLabelSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIBiLabelSlider.h -------------------------------------------------------------------------------- /src/ofxUIButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIButton.cpp -------------------------------------------------------------------------------- /src/ofxUIButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIButton.h -------------------------------------------------------------------------------- /src/ofxUICanvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUICanvas.cpp -------------------------------------------------------------------------------- /src/ofxUICanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUICanvas.h -------------------------------------------------------------------------------- /src/ofxUICircleSlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUICircleSlider.cpp -------------------------------------------------------------------------------- /src/ofxUICircleSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUICircleSlider.h -------------------------------------------------------------------------------- /src/ofxUIDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIDefines.h -------------------------------------------------------------------------------- /src/ofxUIDragableLabelButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIDragableLabelButton.cpp -------------------------------------------------------------------------------- /src/ofxUIDragableLabelButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIDragableLabelButton.h -------------------------------------------------------------------------------- /src/ofxUIDropDownList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIDropDownList.cpp -------------------------------------------------------------------------------- /src/ofxUIDropDownList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIDropDownList.h -------------------------------------------------------------------------------- /src/ofxUIEventArgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIEventArgs.cpp -------------------------------------------------------------------------------- /src/ofxUIEventArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIEventArgs.h -------------------------------------------------------------------------------- /src/ofxUIFPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIFPS.cpp -------------------------------------------------------------------------------- /src/ofxUIFPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIFPS.h -------------------------------------------------------------------------------- /src/ofxUIFPSSlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIFPSSlider.cpp -------------------------------------------------------------------------------- /src/ofxUIFPSSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIFPSSlider.h -------------------------------------------------------------------------------- /src/ofxUIFrameAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIFrameAnimation.h -------------------------------------------------------------------------------- /src/ofxUIFrameAnimationr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIFrameAnimationr.cpp -------------------------------------------------------------------------------- /src/ofxUIImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIImage.cpp -------------------------------------------------------------------------------- /src/ofxUIImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIImage.h -------------------------------------------------------------------------------- /src/ofxUIImageButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIImageButton.cpp -------------------------------------------------------------------------------- /src/ofxUIImageButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIImageButton.h -------------------------------------------------------------------------------- /src/ofxUIImageSampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIImageSampler.cpp -------------------------------------------------------------------------------- /src/ofxUIImageSampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIImageSampler.h -------------------------------------------------------------------------------- /src/ofxUIImageSlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIImageSlider.cpp -------------------------------------------------------------------------------- /src/ofxUIImageSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIImageSlider.h -------------------------------------------------------------------------------- /src/ofxUIImageToggle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIImageToggle.cpp -------------------------------------------------------------------------------- /src/ofxUIImageToggle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIImageToggle.h -------------------------------------------------------------------------------- /src/ofxUILabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUILabel.cpp -------------------------------------------------------------------------------- /src/ofxUILabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUILabel.h -------------------------------------------------------------------------------- /src/ofxUILabelButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUILabelButton.cpp -------------------------------------------------------------------------------- /src/ofxUILabelButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUILabelButton.h -------------------------------------------------------------------------------- /src/ofxUILabelToggle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUILabelToggle.cpp -------------------------------------------------------------------------------- /src/ofxUILabelToggle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUILabelToggle.h -------------------------------------------------------------------------------- /src/ofxUIMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIMessage.cpp -------------------------------------------------------------------------------- /src/ofxUIMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIMessage.h -------------------------------------------------------------------------------- /src/ofxUIMinimalSlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIMinimalSlider.cpp -------------------------------------------------------------------------------- /src/ofxUIMinimalSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIMinimalSlider.h -------------------------------------------------------------------------------- /src/ofxUIMovingGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIMovingGraph.cpp -------------------------------------------------------------------------------- /src/ofxUIMovingGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIMovingGraph.h -------------------------------------------------------------------------------- /src/ofxUIMultiImageButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIMultiImageButton.cpp -------------------------------------------------------------------------------- /src/ofxUIMultiImageButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIMultiImageButton.h -------------------------------------------------------------------------------- /src/ofxUIMultiImageToggle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIMultiImageToggle.cpp -------------------------------------------------------------------------------- /src/ofxUIMultiImageToggle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIMultiImageToggle.h -------------------------------------------------------------------------------- /src/ofxUINumberDialer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUINumberDialer.cpp -------------------------------------------------------------------------------- /src/ofxUINumberDialer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUINumberDialer.h -------------------------------------------------------------------------------- /src/ofxUIOFWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIOFWrapper.h -------------------------------------------------------------------------------- /src/ofxUIRadio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIRadio.cpp -------------------------------------------------------------------------------- /src/ofxUIRadio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIRadio.h -------------------------------------------------------------------------------- /src/ofxUIRangeSlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIRangeSlider.cpp -------------------------------------------------------------------------------- /src/ofxUIRangeSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIRangeSlider.h -------------------------------------------------------------------------------- /src/ofxUIRectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIRectangle.cpp -------------------------------------------------------------------------------- /src/ofxUIRectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIRectangle.h -------------------------------------------------------------------------------- /src/ofxUIRotarySlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIRotarySlider.cpp -------------------------------------------------------------------------------- /src/ofxUIRotarySlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIRotarySlider.h -------------------------------------------------------------------------------- /src/ofxUIScrollableCanvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIScrollableCanvas.cpp -------------------------------------------------------------------------------- /src/ofxUIScrollableCanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIScrollableCanvas.h -------------------------------------------------------------------------------- /src/ofxUISlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUISlider.cpp -------------------------------------------------------------------------------- /src/ofxUISlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUISlider.h -------------------------------------------------------------------------------- /src/ofxUISortableList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUISortableList.cpp -------------------------------------------------------------------------------- /src/ofxUISortableList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUISortableList.h -------------------------------------------------------------------------------- /src/ofxUISpacer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUISpacer.cpp -------------------------------------------------------------------------------- /src/ofxUISpacer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUISpacer.h -------------------------------------------------------------------------------- /src/ofxUISpectrum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUISpectrum.cpp -------------------------------------------------------------------------------- /src/ofxUISpectrum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUISpectrum.h -------------------------------------------------------------------------------- /src/ofxUISuperCanvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUISuperCanvas.cpp -------------------------------------------------------------------------------- /src/ofxUISuperCanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUISuperCanvas.h -------------------------------------------------------------------------------- /src/ofxUITabBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUITabBar.cpp -------------------------------------------------------------------------------- /src/ofxUITabBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUITabBar.h -------------------------------------------------------------------------------- /src/ofxUITattyXML.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUITattyXML.cpp -------------------------------------------------------------------------------- /src/ofxUITattyXML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUITattyXML.h -------------------------------------------------------------------------------- /src/ofxUITextArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUITextArea.cpp -------------------------------------------------------------------------------- /src/ofxUITextArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUITextArea.h -------------------------------------------------------------------------------- /src/ofxUITextInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUITextInput.cpp -------------------------------------------------------------------------------- /src/ofxUITextInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUITextInput.h -------------------------------------------------------------------------------- /src/ofxUIToggle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIToggle.cpp -------------------------------------------------------------------------------- /src/ofxUIToggle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIToggle.h -------------------------------------------------------------------------------- /src/ofxUIToggleMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIToggleMatrix.cpp -------------------------------------------------------------------------------- /src/ofxUIToggleMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIToggleMatrix.h -------------------------------------------------------------------------------- /src/ofxUIUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIUtils.h -------------------------------------------------------------------------------- /src/ofxUIValuePlotter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIValuePlotter.cpp -------------------------------------------------------------------------------- /src/ofxUIValuePlotter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIValuePlotter.h -------------------------------------------------------------------------------- /src/ofxUIWaveform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIWaveform.cpp -------------------------------------------------------------------------------- /src/ofxUIWaveform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIWaveform.h -------------------------------------------------------------------------------- /src/ofxUIWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIWidget.cpp -------------------------------------------------------------------------------- /src/ofxUIWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIWidget.h -------------------------------------------------------------------------------- /src/ofxUIWidgetWithLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIWidgetWithLabel.cpp -------------------------------------------------------------------------------- /src/ofxUIWidgetWithLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIWidgetWithLabel.h -------------------------------------------------------------------------------- /src/ofxUIWidgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIWidgets.h -------------------------------------------------------------------------------- /src/ofxUIWindowCanvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIWindowCanvas.cpp -------------------------------------------------------------------------------- /src/ofxUIWindowCanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIWindowCanvas.h -------------------------------------------------------------------------------- /src/ofxUIWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BentleyBlanks/ofxUI/HEAD/src/ofxUIWrapper.h --------------------------------------------------------------------------------