├── .github └── FUNDING.yml ├── .gitignore ├── CMakeLists.txt ├── CircularSlider.pro ├── LICENSE.md ├── README.md ├── controls ├── CCheckBox.qml ├── CLabel.qml ├── CSlider.qml ├── CTabButton.qml └── CircularSlider.qml ├── main.cpp ├── main.qml ├── pages ├── BasicPropertiesPage.qml ├── CustomHandlePage.qml ├── CustomTrackAndProgressPage.qml └── NonInteractiveSliderAsProgressIndicator.qml ├── qml.qrc └── screens ├── basic_properties.png ├── custom_handles.png ├── custom_progress.png ├── default.png └── progress_indicator.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [arunpkio] 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunpkio/CircularSlider/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunpkio/CircularSlider/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CircularSlider.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunpkio/CircularSlider/HEAD/CircularSlider.pro -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunpkio/CircularSlider/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunpkio/CircularSlider/HEAD/README.md -------------------------------------------------------------------------------- /controls/CCheckBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunpkio/CircularSlider/HEAD/controls/CCheckBox.qml -------------------------------------------------------------------------------- /controls/CLabel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunpkio/CircularSlider/HEAD/controls/CLabel.qml -------------------------------------------------------------------------------- /controls/CSlider.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunpkio/CircularSlider/HEAD/controls/CSlider.qml -------------------------------------------------------------------------------- /controls/CTabButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunpkio/CircularSlider/HEAD/controls/CTabButton.qml -------------------------------------------------------------------------------- /controls/CircularSlider.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunpkio/CircularSlider/HEAD/controls/CircularSlider.qml -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunpkio/CircularSlider/HEAD/main.cpp -------------------------------------------------------------------------------- /main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunpkio/CircularSlider/HEAD/main.qml -------------------------------------------------------------------------------- /pages/BasicPropertiesPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunpkio/CircularSlider/HEAD/pages/BasicPropertiesPage.qml -------------------------------------------------------------------------------- /pages/CustomHandlePage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunpkio/CircularSlider/HEAD/pages/CustomHandlePage.qml -------------------------------------------------------------------------------- /pages/CustomTrackAndProgressPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunpkio/CircularSlider/HEAD/pages/CustomTrackAndProgressPage.qml -------------------------------------------------------------------------------- /pages/NonInteractiveSliderAsProgressIndicator.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunpkio/CircularSlider/HEAD/pages/NonInteractiveSliderAsProgressIndicator.qml -------------------------------------------------------------------------------- /qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunpkio/CircularSlider/HEAD/qml.qrc -------------------------------------------------------------------------------- /screens/basic_properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunpkio/CircularSlider/HEAD/screens/basic_properties.png -------------------------------------------------------------------------------- /screens/custom_handles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunpkio/CircularSlider/HEAD/screens/custom_handles.png -------------------------------------------------------------------------------- /screens/custom_progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunpkio/CircularSlider/HEAD/screens/custom_progress.png -------------------------------------------------------------------------------- /screens/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunpkio/CircularSlider/HEAD/screens/default.png -------------------------------------------------------------------------------- /screens/progress_indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunpkio/CircularSlider/HEAD/screens/progress_indicator.png --------------------------------------------------------------------------------