├── C++ ├── AndroidApkAssetsFiles │ ├── AndroidApkAssetsFiles.pro │ ├── android │ │ └── AndroidManifest.xml │ ├── images │ │ └── logo.png │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── AndroidRequestAppPermissions │ ├── AndroidRequestAppPermissions.pro │ ├── android │ │ └── AndroidManifest.xml │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui └── ResourcesLibrary │ ├── MyApplication │ ├── MyApplication.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui │ ├── MySharedLibrary │ ├── MySharedLibrary.pro │ ├── mysharedlibrary.cpp │ ├── mysharedlibrary.h │ ├── mysharedlibrary.qrc │ ├── mysharedlibrary_global.h │ └── qt_icon.png │ ├── MyStaticLibrary │ ├── MyStaticLibrary.pro │ ├── mystaticlibrary.cpp │ ├── mystaticlibrary.h │ ├── mystaticlibrary.qrc │ └── qt_icon.png │ └── ResourcesLibrary.pro ├── LICENSE ├── QML ├── AndroidApkInfo │ ├── AndroidApkInfo.pro │ ├── android │ │ └── AndroidManifest.xml │ ├── androidinterface.cpp │ ├── androidinterface.h │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── AndroidBatteryLevel │ ├── AndroidBatteryLevel.pro │ ├── android │ │ ├── AndroidManifest.xml │ │ └── src │ │ │ └── com │ │ │ └── falsinsoft │ │ │ └── example │ │ │ └── batterylevel │ │ │ ├── AppActivity.java │ │ │ └── BatteryLevelListener.java │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ └── qtquickcontrols2.conf ├── AndroidKeyboardSize │ ├── AndroidKeyboardSize.pro │ ├── android │ │ ├── AndroidManifest.xml │ │ └── src │ │ │ └── com │ │ │ └── falsinsoft │ │ │ └── example │ │ │ └── keyboardsize │ │ │ ├── AppActivity.java │ │ │ └── VirtualKeyboardListener.java │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ └── qtquickcontrols2.conf ├── AndroidNativeSplashScreen │ ├── AndroidNativeSplashScreen.pro │ ├── android │ │ ├── AndroidManifest.xml │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ │ ├── drawable │ │ │ └── splashscreen.xml │ │ │ └── values │ │ │ └── splashscreentheme.xml │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ └── qtquickcontrols2.conf ├── AndroidScreenOrientation │ ├── AndroidScreenOrientation.pro │ ├── android │ │ └── AndroidManifest.xml │ ├── androidinterface.cpp │ ├── androidinterface.h │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── AndroidSignalStrength │ ├── AndroidSignalStrength.pro │ ├── android │ │ ├── AndroidManifest.xml │ │ └── src │ │ │ └── com │ │ │ └── falsinsoft │ │ │ └── example │ │ │ └── signalstrength │ │ │ ├── AppActivity.java │ │ │ └── SignalStrengthListener.java │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ └── qtquickcontrols2.conf ├── DescriptionControls │ ├── DescriptionCheckBox.qml │ ├── DescriptionControls.pro │ ├── DescriptionRadioButton.qml │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── Emboss │ ├── Emboss.pro │ ├── Emboss.qml │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── MixedAndroidNativeQMLSplashScreen │ ├── MixedAndroidNativeQMLSplashScreen.pro │ ├── android │ │ ├── AndroidManifest.xml │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ │ ├── drawable │ │ │ └── splashscreen.xml │ │ │ └── values │ │ │ └── splashscreentheme.xml │ ├── androidimageprovider.cpp │ ├── androidimageprovider.h │ ├── androidinterface.cpp │ ├── androidinterface.h │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ ├── qtquickcontrols2.conf │ ├── splashscreen.qml │ └── window.qml └── SplashScreen │ ├── SplashScreen.pro │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ ├── splashscreen.qml │ └── window.qml └── README.md /C++/AndroidApkAssetsFiles/AndroidApkAssetsFiles.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/C++/AndroidApkAssetsFiles/AndroidApkAssetsFiles.pro -------------------------------------------------------------------------------- /C++/AndroidApkAssetsFiles/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/C++/AndroidApkAssetsFiles/android/AndroidManifest.xml -------------------------------------------------------------------------------- /C++/AndroidApkAssetsFiles/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/C++/AndroidApkAssetsFiles/images/logo.png -------------------------------------------------------------------------------- /C++/AndroidApkAssetsFiles/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/C++/AndroidApkAssetsFiles/main.cpp -------------------------------------------------------------------------------- /C++/AndroidApkAssetsFiles/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/C++/AndroidApkAssetsFiles/mainwindow.cpp -------------------------------------------------------------------------------- /C++/AndroidApkAssetsFiles/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/C++/AndroidApkAssetsFiles/mainwindow.h -------------------------------------------------------------------------------- /C++/AndroidApkAssetsFiles/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/C++/AndroidApkAssetsFiles/mainwindow.ui -------------------------------------------------------------------------------- /C++/AndroidRequestAppPermissions/AndroidRequestAppPermissions.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/C++/AndroidRequestAppPermissions/AndroidRequestAppPermissions.pro -------------------------------------------------------------------------------- /C++/AndroidRequestAppPermissions/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/C++/AndroidRequestAppPermissions/android/AndroidManifest.xml -------------------------------------------------------------------------------- /C++/AndroidRequestAppPermissions/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/C++/AndroidRequestAppPermissions/main.cpp -------------------------------------------------------------------------------- /C++/AndroidRequestAppPermissions/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/C++/AndroidRequestAppPermissions/mainwindow.cpp -------------------------------------------------------------------------------- /C++/AndroidRequestAppPermissions/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/C++/AndroidRequestAppPermissions/mainwindow.h -------------------------------------------------------------------------------- /C++/AndroidRequestAppPermissions/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/C++/AndroidRequestAppPermissions/mainwindow.ui -------------------------------------------------------------------------------- /C++/ResourcesLibrary/MyApplication/MyApplication.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/C++/ResourcesLibrary/MyApplication/MyApplication.pro -------------------------------------------------------------------------------- /C++/ResourcesLibrary/MyApplication/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/C++/ResourcesLibrary/MyApplication/main.cpp -------------------------------------------------------------------------------- /C++/ResourcesLibrary/MyApplication/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/C++/ResourcesLibrary/MyApplication/mainwindow.cpp -------------------------------------------------------------------------------- /C++/ResourcesLibrary/MyApplication/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/C++/ResourcesLibrary/MyApplication/mainwindow.h -------------------------------------------------------------------------------- /C++/ResourcesLibrary/MyApplication/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/C++/ResourcesLibrary/MyApplication/mainwindow.ui -------------------------------------------------------------------------------- /C++/ResourcesLibrary/MySharedLibrary/MySharedLibrary.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/C++/ResourcesLibrary/MySharedLibrary/MySharedLibrary.pro -------------------------------------------------------------------------------- /C++/ResourcesLibrary/MySharedLibrary/mysharedlibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/C++/ResourcesLibrary/MySharedLibrary/mysharedlibrary.cpp -------------------------------------------------------------------------------- /C++/ResourcesLibrary/MySharedLibrary/mysharedlibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/C++/ResourcesLibrary/MySharedLibrary/mysharedlibrary.h -------------------------------------------------------------------------------- /C++/ResourcesLibrary/MySharedLibrary/mysharedlibrary.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/C++/ResourcesLibrary/MySharedLibrary/mysharedlibrary.qrc -------------------------------------------------------------------------------- /C++/ResourcesLibrary/MySharedLibrary/mysharedlibrary_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/C++/ResourcesLibrary/MySharedLibrary/mysharedlibrary_global.h -------------------------------------------------------------------------------- /C++/ResourcesLibrary/MySharedLibrary/qt_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/C++/ResourcesLibrary/MySharedLibrary/qt_icon.png -------------------------------------------------------------------------------- /C++/ResourcesLibrary/MyStaticLibrary/MyStaticLibrary.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/C++/ResourcesLibrary/MyStaticLibrary/MyStaticLibrary.pro -------------------------------------------------------------------------------- /C++/ResourcesLibrary/MyStaticLibrary/mystaticlibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/C++/ResourcesLibrary/MyStaticLibrary/mystaticlibrary.cpp -------------------------------------------------------------------------------- /C++/ResourcesLibrary/MyStaticLibrary/mystaticlibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/C++/ResourcesLibrary/MyStaticLibrary/mystaticlibrary.h -------------------------------------------------------------------------------- /C++/ResourcesLibrary/MyStaticLibrary/mystaticlibrary.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/C++/ResourcesLibrary/MyStaticLibrary/mystaticlibrary.qrc -------------------------------------------------------------------------------- /C++/ResourcesLibrary/MyStaticLibrary/qt_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/C++/ResourcesLibrary/MyStaticLibrary/qt_icon.png -------------------------------------------------------------------------------- /C++/ResourcesLibrary/ResourcesLibrary.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/C++/ResourcesLibrary/ResourcesLibrary.pro -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/LICENSE -------------------------------------------------------------------------------- /QML/AndroidApkInfo/AndroidApkInfo.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidApkInfo/AndroidApkInfo.pro -------------------------------------------------------------------------------- /QML/AndroidApkInfo/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidApkInfo/android/AndroidManifest.xml -------------------------------------------------------------------------------- /QML/AndroidApkInfo/androidinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidApkInfo/androidinterface.cpp -------------------------------------------------------------------------------- /QML/AndroidApkInfo/androidinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidApkInfo/androidinterface.h -------------------------------------------------------------------------------- /QML/AndroidApkInfo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidApkInfo/main.cpp -------------------------------------------------------------------------------- /QML/AndroidApkInfo/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidApkInfo/main.qml -------------------------------------------------------------------------------- /QML/AndroidApkInfo/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidApkInfo/qml.qrc -------------------------------------------------------------------------------- /QML/AndroidBatteryLevel/AndroidBatteryLevel.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidBatteryLevel/AndroidBatteryLevel.pro -------------------------------------------------------------------------------- /QML/AndroidBatteryLevel/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidBatteryLevel/android/AndroidManifest.xml -------------------------------------------------------------------------------- /QML/AndroidBatteryLevel/android/src/com/falsinsoft/example/batterylevel/AppActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidBatteryLevel/android/src/com/falsinsoft/example/batterylevel/AppActivity.java -------------------------------------------------------------------------------- /QML/AndroidBatteryLevel/android/src/com/falsinsoft/example/batterylevel/BatteryLevelListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidBatteryLevel/android/src/com/falsinsoft/example/batterylevel/BatteryLevelListener.java -------------------------------------------------------------------------------- /QML/AndroidBatteryLevel/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidBatteryLevel/main.cpp -------------------------------------------------------------------------------- /QML/AndroidBatteryLevel/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidBatteryLevel/main.qml -------------------------------------------------------------------------------- /QML/AndroidBatteryLevel/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidBatteryLevel/qml.qrc -------------------------------------------------------------------------------- /QML/AndroidBatteryLevel/qtquickcontrols2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidBatteryLevel/qtquickcontrols2.conf -------------------------------------------------------------------------------- /QML/AndroidKeyboardSize/AndroidKeyboardSize.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidKeyboardSize/AndroidKeyboardSize.pro -------------------------------------------------------------------------------- /QML/AndroidKeyboardSize/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidKeyboardSize/android/AndroidManifest.xml -------------------------------------------------------------------------------- /QML/AndroidKeyboardSize/android/src/com/falsinsoft/example/keyboardsize/AppActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidKeyboardSize/android/src/com/falsinsoft/example/keyboardsize/AppActivity.java -------------------------------------------------------------------------------- /QML/AndroidKeyboardSize/android/src/com/falsinsoft/example/keyboardsize/VirtualKeyboardListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidKeyboardSize/android/src/com/falsinsoft/example/keyboardsize/VirtualKeyboardListener.java -------------------------------------------------------------------------------- /QML/AndroidKeyboardSize/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidKeyboardSize/main.cpp -------------------------------------------------------------------------------- /QML/AndroidKeyboardSize/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidKeyboardSize/main.qml -------------------------------------------------------------------------------- /QML/AndroidKeyboardSize/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidKeyboardSize/qml.qrc -------------------------------------------------------------------------------- /QML/AndroidKeyboardSize/qtquickcontrols2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidKeyboardSize/qtquickcontrols2.conf -------------------------------------------------------------------------------- /QML/AndroidNativeSplashScreen/AndroidNativeSplashScreen.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidNativeSplashScreen/AndroidNativeSplashScreen.pro -------------------------------------------------------------------------------- /QML/AndroidNativeSplashScreen/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidNativeSplashScreen/android/AndroidManifest.xml -------------------------------------------------------------------------------- /QML/AndroidNativeSplashScreen/android/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidNativeSplashScreen/android/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /QML/AndroidNativeSplashScreen/android/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidNativeSplashScreen/android/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /QML/AndroidNativeSplashScreen/android/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidNativeSplashScreen/android/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /QML/AndroidNativeSplashScreen/android/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidNativeSplashScreen/android/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /QML/AndroidNativeSplashScreen/android/res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidNativeSplashScreen/android/res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /QML/AndroidNativeSplashScreen/android/res/drawable/splashscreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidNativeSplashScreen/android/res/drawable/splashscreen.xml -------------------------------------------------------------------------------- /QML/AndroidNativeSplashScreen/android/res/values/splashscreentheme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidNativeSplashScreen/android/res/values/splashscreentheme.xml -------------------------------------------------------------------------------- /QML/AndroidNativeSplashScreen/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidNativeSplashScreen/main.cpp -------------------------------------------------------------------------------- /QML/AndroidNativeSplashScreen/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidNativeSplashScreen/main.qml -------------------------------------------------------------------------------- /QML/AndroidNativeSplashScreen/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidNativeSplashScreen/qml.qrc -------------------------------------------------------------------------------- /QML/AndroidNativeSplashScreen/qtquickcontrols2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidNativeSplashScreen/qtquickcontrols2.conf -------------------------------------------------------------------------------- /QML/AndroidScreenOrientation/AndroidScreenOrientation.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidScreenOrientation/AndroidScreenOrientation.pro -------------------------------------------------------------------------------- /QML/AndroidScreenOrientation/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidScreenOrientation/android/AndroidManifest.xml -------------------------------------------------------------------------------- /QML/AndroidScreenOrientation/androidinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidScreenOrientation/androidinterface.cpp -------------------------------------------------------------------------------- /QML/AndroidScreenOrientation/androidinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidScreenOrientation/androidinterface.h -------------------------------------------------------------------------------- /QML/AndroidScreenOrientation/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidScreenOrientation/main.cpp -------------------------------------------------------------------------------- /QML/AndroidScreenOrientation/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidScreenOrientation/main.qml -------------------------------------------------------------------------------- /QML/AndroidScreenOrientation/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidScreenOrientation/qml.qrc -------------------------------------------------------------------------------- /QML/AndroidSignalStrength/AndroidSignalStrength.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidSignalStrength/AndroidSignalStrength.pro -------------------------------------------------------------------------------- /QML/AndroidSignalStrength/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidSignalStrength/android/AndroidManifest.xml -------------------------------------------------------------------------------- /QML/AndroidSignalStrength/android/src/com/falsinsoft/example/signalstrength/AppActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidSignalStrength/android/src/com/falsinsoft/example/signalstrength/AppActivity.java -------------------------------------------------------------------------------- /QML/AndroidSignalStrength/android/src/com/falsinsoft/example/signalstrength/SignalStrengthListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidSignalStrength/android/src/com/falsinsoft/example/signalstrength/SignalStrengthListener.java -------------------------------------------------------------------------------- /QML/AndroidSignalStrength/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidSignalStrength/main.cpp -------------------------------------------------------------------------------- /QML/AndroidSignalStrength/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidSignalStrength/main.qml -------------------------------------------------------------------------------- /QML/AndroidSignalStrength/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidSignalStrength/qml.qrc -------------------------------------------------------------------------------- /QML/AndroidSignalStrength/qtquickcontrols2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/AndroidSignalStrength/qtquickcontrols2.conf -------------------------------------------------------------------------------- /QML/DescriptionControls/DescriptionCheckBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/DescriptionControls/DescriptionCheckBox.qml -------------------------------------------------------------------------------- /QML/DescriptionControls/DescriptionControls.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/DescriptionControls/DescriptionControls.pro -------------------------------------------------------------------------------- /QML/DescriptionControls/DescriptionRadioButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/DescriptionControls/DescriptionRadioButton.qml -------------------------------------------------------------------------------- /QML/DescriptionControls/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/DescriptionControls/main.cpp -------------------------------------------------------------------------------- /QML/DescriptionControls/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/DescriptionControls/main.qml -------------------------------------------------------------------------------- /QML/DescriptionControls/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/DescriptionControls/qml.qrc -------------------------------------------------------------------------------- /QML/Emboss/Emboss.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/Emboss/Emboss.pro -------------------------------------------------------------------------------- /QML/Emboss/Emboss.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/Emboss/Emboss.qml -------------------------------------------------------------------------------- /QML/Emboss/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/Emboss/main.cpp -------------------------------------------------------------------------------- /QML/Emboss/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/Emboss/main.qml -------------------------------------------------------------------------------- /QML/Emboss/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/Emboss/qml.qrc -------------------------------------------------------------------------------- /QML/MixedAndroidNativeQMLSplashScreen/MixedAndroidNativeQMLSplashScreen.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/MixedAndroidNativeQMLSplashScreen/MixedAndroidNativeQMLSplashScreen.pro -------------------------------------------------------------------------------- /QML/MixedAndroidNativeQMLSplashScreen/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/MixedAndroidNativeQMLSplashScreen/android/AndroidManifest.xml -------------------------------------------------------------------------------- /QML/MixedAndroidNativeQMLSplashScreen/android/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/MixedAndroidNativeQMLSplashScreen/android/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /QML/MixedAndroidNativeQMLSplashScreen/android/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/MixedAndroidNativeQMLSplashScreen/android/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /QML/MixedAndroidNativeQMLSplashScreen/android/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/MixedAndroidNativeQMLSplashScreen/android/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /QML/MixedAndroidNativeQMLSplashScreen/android/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/MixedAndroidNativeQMLSplashScreen/android/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /QML/MixedAndroidNativeQMLSplashScreen/android/res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/MixedAndroidNativeQMLSplashScreen/android/res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /QML/MixedAndroidNativeQMLSplashScreen/android/res/drawable/splashscreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/MixedAndroidNativeQMLSplashScreen/android/res/drawable/splashscreen.xml -------------------------------------------------------------------------------- /QML/MixedAndroidNativeQMLSplashScreen/android/res/values/splashscreentheme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/MixedAndroidNativeQMLSplashScreen/android/res/values/splashscreentheme.xml -------------------------------------------------------------------------------- /QML/MixedAndroidNativeQMLSplashScreen/androidimageprovider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/MixedAndroidNativeQMLSplashScreen/androidimageprovider.cpp -------------------------------------------------------------------------------- /QML/MixedAndroidNativeQMLSplashScreen/androidimageprovider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/MixedAndroidNativeQMLSplashScreen/androidimageprovider.h -------------------------------------------------------------------------------- /QML/MixedAndroidNativeQMLSplashScreen/androidinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/MixedAndroidNativeQMLSplashScreen/androidinterface.cpp -------------------------------------------------------------------------------- /QML/MixedAndroidNativeQMLSplashScreen/androidinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/MixedAndroidNativeQMLSplashScreen/androidinterface.h -------------------------------------------------------------------------------- /QML/MixedAndroidNativeQMLSplashScreen/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/MixedAndroidNativeQMLSplashScreen/main.cpp -------------------------------------------------------------------------------- /QML/MixedAndroidNativeQMLSplashScreen/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/MixedAndroidNativeQMLSplashScreen/main.qml -------------------------------------------------------------------------------- /QML/MixedAndroidNativeQMLSplashScreen/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/MixedAndroidNativeQMLSplashScreen/qml.qrc -------------------------------------------------------------------------------- /QML/MixedAndroidNativeQMLSplashScreen/qtquickcontrols2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/MixedAndroidNativeQMLSplashScreen/qtquickcontrols2.conf -------------------------------------------------------------------------------- /QML/MixedAndroidNativeQMLSplashScreen/splashscreen.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/MixedAndroidNativeQMLSplashScreen/splashscreen.qml -------------------------------------------------------------------------------- /QML/MixedAndroidNativeQMLSplashScreen/window.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/MixedAndroidNativeQMLSplashScreen/window.qml -------------------------------------------------------------------------------- /QML/SplashScreen/SplashScreen.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/SplashScreen/SplashScreen.pro -------------------------------------------------------------------------------- /QML/SplashScreen/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/SplashScreen/main.cpp -------------------------------------------------------------------------------- /QML/SplashScreen/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/SplashScreen/main.qml -------------------------------------------------------------------------------- /QML/SplashScreen/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/SplashScreen/qml.qrc -------------------------------------------------------------------------------- /QML/SplashScreen/splashscreen.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/SplashScreen/splashscreen.qml -------------------------------------------------------------------------------- /QML/SplashScreen/window.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/QML/SplashScreen/window.qml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalsinSoft/QtExamples/HEAD/README.md --------------------------------------------------------------------------------