├── .gitignore ├── AdvancedTextView.py ├── BoxLayout.py ├── InputAlert.py ├── KeyboardFrame.py ├── PopupButton.py ├── README.md ├── RootView.py ├── SPLView11.py ├── TabbedView.py ├── TouchDispatcher.py ├── VerticalSlider.py ├── ZoomSlider.py ├── ZoomView.py ├── colorpicker.py ├── dropdown.py ├── file_picker.py ├── fixed_convert_and_kbframe.py ├── flowcontrol.jpg ├── keyboard_example.jpg ├── keyboard_example.py ├── loadpyui.py ├── splitview.py ├── test.png ├── test2.png ├── uiCheckBox.py ├── ui_settings_storage.py ├── uicontainer.py ├── uidialog.py └── uidir.py /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /AdvancedTextView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbain/uicomponents/HEAD/AdvancedTextView.py -------------------------------------------------------------------------------- /BoxLayout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbain/uicomponents/HEAD/BoxLayout.py -------------------------------------------------------------------------------- /InputAlert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbain/uicomponents/HEAD/InputAlert.py -------------------------------------------------------------------------------- /KeyboardFrame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbain/uicomponents/HEAD/KeyboardFrame.py -------------------------------------------------------------------------------- /PopupButton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbain/uicomponents/HEAD/PopupButton.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbain/uicomponents/HEAD/README.md -------------------------------------------------------------------------------- /RootView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbain/uicomponents/HEAD/RootView.py -------------------------------------------------------------------------------- /SPLView11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbain/uicomponents/HEAD/SPLView11.py -------------------------------------------------------------------------------- /TabbedView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbain/uicomponents/HEAD/TabbedView.py -------------------------------------------------------------------------------- /TouchDispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbain/uicomponents/HEAD/TouchDispatcher.py -------------------------------------------------------------------------------- /VerticalSlider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbain/uicomponents/HEAD/VerticalSlider.py -------------------------------------------------------------------------------- /ZoomSlider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbain/uicomponents/HEAD/ZoomSlider.py -------------------------------------------------------------------------------- /ZoomView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbain/uicomponents/HEAD/ZoomView.py -------------------------------------------------------------------------------- /colorpicker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbain/uicomponents/HEAD/colorpicker.py -------------------------------------------------------------------------------- /dropdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbain/uicomponents/HEAD/dropdown.py -------------------------------------------------------------------------------- /file_picker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbain/uicomponents/HEAD/file_picker.py -------------------------------------------------------------------------------- /fixed_convert_and_kbframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbain/uicomponents/HEAD/fixed_convert_and_kbframe.py -------------------------------------------------------------------------------- /flowcontrol.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbain/uicomponents/HEAD/flowcontrol.jpg -------------------------------------------------------------------------------- /keyboard_example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbain/uicomponents/HEAD/keyboard_example.jpg -------------------------------------------------------------------------------- /keyboard_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbain/uicomponents/HEAD/keyboard_example.py -------------------------------------------------------------------------------- /loadpyui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbain/uicomponents/HEAD/loadpyui.py -------------------------------------------------------------------------------- /splitview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbain/uicomponents/HEAD/splitview.py -------------------------------------------------------------------------------- /test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbain/uicomponents/HEAD/test.png -------------------------------------------------------------------------------- /test2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbain/uicomponents/HEAD/test2.png -------------------------------------------------------------------------------- /uiCheckBox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbain/uicomponents/HEAD/uiCheckBox.py -------------------------------------------------------------------------------- /ui_settings_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbain/uicomponents/HEAD/ui_settings_storage.py -------------------------------------------------------------------------------- /uicontainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbain/uicomponents/HEAD/uicontainer.py -------------------------------------------------------------------------------- /uidialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbain/uicomponents/HEAD/uidialog.py -------------------------------------------------------------------------------- /uidir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbain/uicomponents/HEAD/uidir.py --------------------------------------------------------------------------------