├── .gitignore ├── LICENSE ├── README.md ├── examples ├── PullToRefreshHandler │ ├── PullToRefreshHandler.pro │ ├── android │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── res │ │ │ └── values │ │ │ └── libs.xml │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ └── qtquickcontrols2.conf └── SwipeHints │ ├── SwipeUpHint.qml │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ ├── qtquickcontrols2.conf │ ├── resources │ └── up.svg │ └── swipe_hint.pro ├── src ├── PullToRefreshHandler.pri ├── com │ └── melije │ │ └── pulltorefresh │ │ ├── PullToRefreshHandler.qml │ │ ├── RefreshIndicator.qml │ │ └── qmldir └── pulltorefreshhandler.qrc └── static ├── example_480.gif ├── refresh_indicator.gif └── swip_up_hint.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadhasanzadeh/pulltorefreshhandler/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadhasanzadeh/pulltorefreshhandler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadhasanzadeh/pulltorefreshhandler/HEAD/README.md -------------------------------------------------------------------------------- /examples/PullToRefreshHandler/PullToRefreshHandler.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadhasanzadeh/pulltorefreshhandler/HEAD/examples/PullToRefreshHandler/PullToRefreshHandler.pro -------------------------------------------------------------------------------- /examples/PullToRefreshHandler/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadhasanzadeh/pulltorefreshhandler/HEAD/examples/PullToRefreshHandler/android/AndroidManifest.xml -------------------------------------------------------------------------------- /examples/PullToRefreshHandler/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadhasanzadeh/pulltorefreshhandler/HEAD/examples/PullToRefreshHandler/android/build.gradle -------------------------------------------------------------------------------- /examples/PullToRefreshHandler/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadhasanzadeh/pulltorefreshhandler/HEAD/examples/PullToRefreshHandler/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /examples/PullToRefreshHandler/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadhasanzadeh/pulltorefreshhandler/HEAD/examples/PullToRefreshHandler/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /examples/PullToRefreshHandler/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadhasanzadeh/pulltorefreshhandler/HEAD/examples/PullToRefreshHandler/android/gradlew -------------------------------------------------------------------------------- /examples/PullToRefreshHandler/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadhasanzadeh/pulltorefreshhandler/HEAD/examples/PullToRefreshHandler/android/gradlew.bat -------------------------------------------------------------------------------- /examples/PullToRefreshHandler/android/res/values/libs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadhasanzadeh/pulltorefreshhandler/HEAD/examples/PullToRefreshHandler/android/res/values/libs.xml -------------------------------------------------------------------------------- /examples/PullToRefreshHandler/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadhasanzadeh/pulltorefreshhandler/HEAD/examples/PullToRefreshHandler/main.cpp -------------------------------------------------------------------------------- /examples/PullToRefreshHandler/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadhasanzadeh/pulltorefreshhandler/HEAD/examples/PullToRefreshHandler/main.qml -------------------------------------------------------------------------------- /examples/PullToRefreshHandler/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadhasanzadeh/pulltorefreshhandler/HEAD/examples/PullToRefreshHandler/qml.qrc -------------------------------------------------------------------------------- /examples/PullToRefreshHandler/qtquickcontrols2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadhasanzadeh/pulltorefreshhandler/HEAD/examples/PullToRefreshHandler/qtquickcontrols2.conf -------------------------------------------------------------------------------- /examples/SwipeHints/SwipeUpHint.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadhasanzadeh/pulltorefreshhandler/HEAD/examples/SwipeHints/SwipeUpHint.qml -------------------------------------------------------------------------------- /examples/SwipeHints/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadhasanzadeh/pulltorefreshhandler/HEAD/examples/SwipeHints/main.cpp -------------------------------------------------------------------------------- /examples/SwipeHints/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadhasanzadeh/pulltorefreshhandler/HEAD/examples/SwipeHints/main.qml -------------------------------------------------------------------------------- /examples/SwipeHints/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadhasanzadeh/pulltorefreshhandler/HEAD/examples/SwipeHints/qml.qrc -------------------------------------------------------------------------------- /examples/SwipeHints/qtquickcontrols2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadhasanzadeh/pulltorefreshhandler/HEAD/examples/SwipeHints/qtquickcontrols2.conf -------------------------------------------------------------------------------- /examples/SwipeHints/resources/up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadhasanzadeh/pulltorefreshhandler/HEAD/examples/SwipeHints/resources/up.svg -------------------------------------------------------------------------------- /examples/SwipeHints/swipe_hint.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadhasanzadeh/pulltorefreshhandler/HEAD/examples/SwipeHints/swipe_hint.pro -------------------------------------------------------------------------------- /src/PullToRefreshHandler.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadhasanzadeh/pulltorefreshhandler/HEAD/src/PullToRefreshHandler.pri -------------------------------------------------------------------------------- /src/com/melije/pulltorefresh/PullToRefreshHandler.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadhasanzadeh/pulltorefreshhandler/HEAD/src/com/melije/pulltorefresh/PullToRefreshHandler.qml -------------------------------------------------------------------------------- /src/com/melije/pulltorefresh/RefreshIndicator.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadhasanzadeh/pulltorefreshhandler/HEAD/src/com/melije/pulltorefresh/RefreshIndicator.qml -------------------------------------------------------------------------------- /src/com/melije/pulltorefresh/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadhasanzadeh/pulltorefreshhandler/HEAD/src/com/melije/pulltorefresh/qmldir -------------------------------------------------------------------------------- /src/pulltorefreshhandler.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadhasanzadeh/pulltorefreshhandler/HEAD/src/pulltorefreshhandler.qrc -------------------------------------------------------------------------------- /static/example_480.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadhasanzadeh/pulltorefreshhandler/HEAD/static/example_480.gif -------------------------------------------------------------------------------- /static/refresh_indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadhasanzadeh/pulltorefreshhandler/HEAD/static/refresh_indicator.gif -------------------------------------------------------------------------------- /static/swip_up_hint.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadhasanzadeh/pulltorefreshhandler/HEAD/static/swip_up_hint.gif --------------------------------------------------------------------------------