├── .github └── workflows │ ├── build.yml │ └── sonarcloud-analysis.yml ├── .gitignore ├── COPYING ├── COPYING.LESSER ├── LICENSE ├── README.md ├── android ├── google-play │ ├── featured-image.png │ ├── product-icon.png │ └── screenshots │ │ ├── mobile-cartoon-1.png │ │ ├── mobile-cartoon-2.png │ │ ├── mobile-decolorize-1.png │ │ ├── mobile-decolorize-2.png │ │ ├── mobile-main-screen.png │ │ ├── mobile-recolor-1.png │ │ ├── mobile-retouch-1.png │ │ ├── mobile-sketch-1.png │ │ ├── tablet-main-screen.png │ │ └── templates │ │ ├── template-mobile-generic.png │ │ ├── template-mobile-recolor.png │ │ └── template-mobile-retouch.png └── source │ ├── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── res │ ├── drawable-hdpi │ │ ├── ic_launcher_foreground.png │ │ ├── ic_splash_qt.png │ │ └── ic_splash_theme.png │ ├── drawable-mdpi │ │ ├── ic_launcher_foreground.png │ │ ├── ic_splash_qt.png │ │ └── ic_splash_theme.png │ ├── drawable-xhdpi │ │ ├── ic_launcher_foreground.png │ │ ├── ic_splash_qt.png │ │ └── ic_splash_theme.png │ ├── drawable-xxhdpi │ │ ├── ic_launcher_foreground.png │ │ ├── ic_splash_qt.png │ │ └── ic_splash_theme.png │ ├── drawable-xxxhdpi │ │ ├── ic_launcher_foreground.png │ │ ├── ic_splash_qt.png │ │ └── ic_splash_theme.png │ ├── drawable │ │ ├── splash_qt.xml │ │ └── splash_theme.xml │ ├── mipmap-anydpi-v26 │ │ └── ic_launcher.xml │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ ├── values-de │ │ └── strings.xml │ ├── values-fr │ │ └── strings.xml │ ├── values-ru │ │ └── strings.xml │ ├── values-zh │ │ └── strings.xml │ ├── values │ │ ├── colors.xml │ │ ├── libs.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── xml │ │ ├── backup_content.xml │ │ └── provider_paths.xml │ └── src │ └── com │ └── derevenetz │ └── oleg │ └── magicphotos │ └── MagicActivity.java ├── magicphotos.pro ├── qml.qrc ├── qml ├── Core │ ├── BlurPage.qml │ ├── BlurPreviewPage.qml │ ├── CartoonPage.qml │ ├── CartoonPreviewPage.qml │ ├── DecolorizePage.qml │ ├── Dialog │ │ └── AdMobConsentDialog.qml │ ├── Misc │ │ └── MFButton.qml │ ├── ModeSelectionPage.qml │ ├── PixelatePage.qml │ ├── PixelatePreviewPage.qml │ ├── RecolorPage.qml │ ├── RetouchPage.qml │ ├── SketchPage.qml │ ├── SketchPreviewPage.qml │ └── Templates │ │ ├── EffectEditorPage.qml │ │ └── PreviewPage.qml ├── Util.js └── main.qml ├── resources.qrc ├── resources └── images │ ├── edit_mode_blur.png │ ├── edit_mode_cartoon.png │ ├── edit_mode_decolorize.png │ ├── edit_mode_pixelate.png │ ├── edit_mode_recolor.png │ ├── edit_mode_retouch.png │ ├── edit_mode_sketch.png │ ├── helper_mask.png │ ├── mode_blur.png │ ├── mode_clone.png │ ├── mode_effected.png │ ├── mode_hue_selection.png │ ├── mode_original.png │ ├── mode_sampling_point.png │ ├── mode_scroll.png │ ├── sampling_point.png │ ├── tool_ad_privacy_settings.png │ ├── tool_apply.png │ ├── tool_help.png │ ├── tool_purchase.png │ ├── tool_save.png │ ├── tool_settings.png │ ├── tool_share.png │ └── tool_undo.png ├── src ├── admobhelper.cpp ├── admobhelper.h ├── androidgw.cpp ├── androidgw.h ├── appsettings.cpp ├── appsettings.h ├── blureditor.cpp ├── blureditor.h ├── brushpreviewgenerator.cpp ├── brushpreviewgenerator.h ├── cartooneditor.cpp ├── cartooneditor.h ├── decolorizeeditor.cpp ├── decolorizeeditor.h ├── editor.cpp ├── editor.h ├── effecteditor.cpp ├── effecteditor.h ├── gplayhelper.cpp ├── gplayhelper.h ├── helper.cpp ├── helper.h ├── main.cpp ├── mediastorehelper.cpp ├── mediastorehelper.h ├── pixelateeditor.cpp ├── pixelateeditor.h ├── previewgenerator.cpp ├── previewgenerator.h ├── recoloreditor.cpp ├── recoloreditor.h ├── retoucheditor.cpp ├── retoucheditor.h ├── sketcheditor.cpp ├── sketcheditor.h ├── uihelper.cpp └── uihelper.h ├── tools ├── gen_qm.bat ├── gen_ts.bat ├── gradlew_lint.bat ├── install-qt.sh ├── qml_lint.bat └── sonarcloud.bat ├── translations.qrc └── translations ├── magicphotos_de.qm ├── magicphotos_de.qt.ts ├── magicphotos_de.src.ts ├── magicphotos_de.ts ├── magicphotos_fr.qm ├── magicphotos_fr.qt.ts ├── magicphotos_fr.src.ts ├── magicphotos_fr.ts ├── magicphotos_ru.qm ├── magicphotos_ru.qt.ts ├── magicphotos_ru.src.ts ├── magicphotos_ru.ts ├── magicphotos_zh.qm ├── magicphotos_zh.qt.ts ├── magicphotos_zh.src.ts └── magicphotos_zh.ts /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/sonarcloud-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/.github/workflows/sonarcloud-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/COPYING.LESSER -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/README.md -------------------------------------------------------------------------------- /android/google-play/featured-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/google-play/featured-image.png -------------------------------------------------------------------------------- /android/google-play/product-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/google-play/product-icon.png -------------------------------------------------------------------------------- /android/google-play/screenshots/mobile-cartoon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/google-play/screenshots/mobile-cartoon-1.png -------------------------------------------------------------------------------- /android/google-play/screenshots/mobile-cartoon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/google-play/screenshots/mobile-cartoon-2.png -------------------------------------------------------------------------------- /android/google-play/screenshots/mobile-decolorize-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/google-play/screenshots/mobile-decolorize-1.png -------------------------------------------------------------------------------- /android/google-play/screenshots/mobile-decolorize-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/google-play/screenshots/mobile-decolorize-2.png -------------------------------------------------------------------------------- /android/google-play/screenshots/mobile-main-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/google-play/screenshots/mobile-main-screen.png -------------------------------------------------------------------------------- /android/google-play/screenshots/mobile-recolor-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/google-play/screenshots/mobile-recolor-1.png -------------------------------------------------------------------------------- /android/google-play/screenshots/mobile-retouch-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/google-play/screenshots/mobile-retouch-1.png -------------------------------------------------------------------------------- /android/google-play/screenshots/mobile-sketch-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/google-play/screenshots/mobile-sketch-1.png -------------------------------------------------------------------------------- /android/google-play/screenshots/tablet-main-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/google-play/screenshots/tablet-main-screen.png -------------------------------------------------------------------------------- /android/google-play/screenshots/templates/template-mobile-generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/google-play/screenshots/templates/template-mobile-generic.png -------------------------------------------------------------------------------- /android/google-play/screenshots/templates/template-mobile-recolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/google-play/screenshots/templates/template-mobile-recolor.png -------------------------------------------------------------------------------- /android/google-play/screenshots/templates/template-mobile-retouch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/google-play/screenshots/templates/template-mobile-retouch.png -------------------------------------------------------------------------------- /android/source/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/AndroidManifest.xml -------------------------------------------------------------------------------- /android/source/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/build.gradle -------------------------------------------------------------------------------- /android/source/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/gradle.properties -------------------------------------------------------------------------------- /android/source/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/source/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/source/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/gradlew -------------------------------------------------------------------------------- /android/source/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/gradlew.bat -------------------------------------------------------------------------------- /android/source/res/drawable-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/res/drawable-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/source/res/drawable-hdpi/ic_splash_qt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/res/drawable-hdpi/ic_splash_qt.png -------------------------------------------------------------------------------- /android/source/res/drawable-hdpi/ic_splash_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/res/drawable-hdpi/ic_splash_theme.png -------------------------------------------------------------------------------- /android/source/res/drawable-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/res/drawable-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/source/res/drawable-mdpi/ic_splash_qt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/res/drawable-mdpi/ic_splash_qt.png -------------------------------------------------------------------------------- /android/source/res/drawable-mdpi/ic_splash_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/res/drawable-mdpi/ic_splash_theme.png -------------------------------------------------------------------------------- /android/source/res/drawable-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/res/drawable-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/source/res/drawable-xhdpi/ic_splash_qt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/res/drawable-xhdpi/ic_splash_qt.png -------------------------------------------------------------------------------- /android/source/res/drawable-xhdpi/ic_splash_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/res/drawable-xhdpi/ic_splash_theme.png -------------------------------------------------------------------------------- /android/source/res/drawable-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/res/drawable-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/source/res/drawable-xxhdpi/ic_splash_qt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/res/drawable-xxhdpi/ic_splash_qt.png -------------------------------------------------------------------------------- /android/source/res/drawable-xxhdpi/ic_splash_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/res/drawable-xxhdpi/ic_splash_theme.png -------------------------------------------------------------------------------- /android/source/res/drawable-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/res/drawable-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/source/res/drawable-xxxhdpi/ic_splash_qt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/res/drawable-xxxhdpi/ic_splash_qt.png -------------------------------------------------------------------------------- /android/source/res/drawable-xxxhdpi/ic_splash_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/res/drawable-xxxhdpi/ic_splash_theme.png -------------------------------------------------------------------------------- /android/source/res/drawable/splash_qt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/res/drawable/splash_qt.xml -------------------------------------------------------------------------------- /android/source/res/drawable/splash_theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/res/drawable/splash_theme.xml -------------------------------------------------------------------------------- /android/source/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/source/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/source/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/source/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/source/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/source/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/source/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/res/values-de/strings.xml -------------------------------------------------------------------------------- /android/source/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/res/values-fr/strings.xml -------------------------------------------------------------------------------- /android/source/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/res/values-ru/strings.xml -------------------------------------------------------------------------------- /android/source/res/values-zh/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/res/values-zh/strings.xml -------------------------------------------------------------------------------- /android/source/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/res/values/colors.xml -------------------------------------------------------------------------------- /android/source/res/values/libs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/res/values/libs.xml -------------------------------------------------------------------------------- /android/source/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/res/values/strings.xml -------------------------------------------------------------------------------- /android/source/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/res/values/styles.xml -------------------------------------------------------------------------------- /android/source/res/xml/backup_content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/res/xml/backup_content.xml -------------------------------------------------------------------------------- /android/source/res/xml/provider_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/res/xml/provider_paths.xml -------------------------------------------------------------------------------- /android/source/src/com/derevenetz/oleg/magicphotos/MagicActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/android/source/src/com/derevenetz/oleg/magicphotos/MagicActivity.java -------------------------------------------------------------------------------- /magicphotos.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/magicphotos.pro -------------------------------------------------------------------------------- /qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/qml.qrc -------------------------------------------------------------------------------- /qml/Core/BlurPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/qml/Core/BlurPage.qml -------------------------------------------------------------------------------- /qml/Core/BlurPreviewPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/qml/Core/BlurPreviewPage.qml -------------------------------------------------------------------------------- /qml/Core/CartoonPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/qml/Core/CartoonPage.qml -------------------------------------------------------------------------------- /qml/Core/CartoonPreviewPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/qml/Core/CartoonPreviewPage.qml -------------------------------------------------------------------------------- /qml/Core/DecolorizePage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/qml/Core/DecolorizePage.qml -------------------------------------------------------------------------------- /qml/Core/Dialog/AdMobConsentDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/qml/Core/Dialog/AdMobConsentDialog.qml -------------------------------------------------------------------------------- /qml/Core/Misc/MFButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/qml/Core/Misc/MFButton.qml -------------------------------------------------------------------------------- /qml/Core/ModeSelectionPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/qml/Core/ModeSelectionPage.qml -------------------------------------------------------------------------------- /qml/Core/PixelatePage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/qml/Core/PixelatePage.qml -------------------------------------------------------------------------------- /qml/Core/PixelatePreviewPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/qml/Core/PixelatePreviewPage.qml -------------------------------------------------------------------------------- /qml/Core/RecolorPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/qml/Core/RecolorPage.qml -------------------------------------------------------------------------------- /qml/Core/RetouchPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/qml/Core/RetouchPage.qml -------------------------------------------------------------------------------- /qml/Core/SketchPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/qml/Core/SketchPage.qml -------------------------------------------------------------------------------- /qml/Core/SketchPreviewPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/qml/Core/SketchPreviewPage.qml -------------------------------------------------------------------------------- /qml/Core/Templates/EffectEditorPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/qml/Core/Templates/EffectEditorPage.qml -------------------------------------------------------------------------------- /qml/Core/Templates/PreviewPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/qml/Core/Templates/PreviewPage.qml -------------------------------------------------------------------------------- /qml/Util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/qml/Util.js -------------------------------------------------------------------------------- /qml/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/qml/main.qml -------------------------------------------------------------------------------- /resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/resources.qrc -------------------------------------------------------------------------------- /resources/images/edit_mode_blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/resources/images/edit_mode_blur.png -------------------------------------------------------------------------------- /resources/images/edit_mode_cartoon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/resources/images/edit_mode_cartoon.png -------------------------------------------------------------------------------- /resources/images/edit_mode_decolorize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/resources/images/edit_mode_decolorize.png -------------------------------------------------------------------------------- /resources/images/edit_mode_pixelate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/resources/images/edit_mode_pixelate.png -------------------------------------------------------------------------------- /resources/images/edit_mode_recolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/resources/images/edit_mode_recolor.png -------------------------------------------------------------------------------- /resources/images/edit_mode_retouch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/resources/images/edit_mode_retouch.png -------------------------------------------------------------------------------- /resources/images/edit_mode_sketch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/resources/images/edit_mode_sketch.png -------------------------------------------------------------------------------- /resources/images/helper_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/resources/images/helper_mask.png -------------------------------------------------------------------------------- /resources/images/mode_blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/resources/images/mode_blur.png -------------------------------------------------------------------------------- /resources/images/mode_clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/resources/images/mode_clone.png -------------------------------------------------------------------------------- /resources/images/mode_effected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/resources/images/mode_effected.png -------------------------------------------------------------------------------- /resources/images/mode_hue_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/resources/images/mode_hue_selection.png -------------------------------------------------------------------------------- /resources/images/mode_original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/resources/images/mode_original.png -------------------------------------------------------------------------------- /resources/images/mode_sampling_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/resources/images/mode_sampling_point.png -------------------------------------------------------------------------------- /resources/images/mode_scroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/resources/images/mode_scroll.png -------------------------------------------------------------------------------- /resources/images/sampling_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/resources/images/sampling_point.png -------------------------------------------------------------------------------- /resources/images/tool_ad_privacy_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/resources/images/tool_ad_privacy_settings.png -------------------------------------------------------------------------------- /resources/images/tool_apply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/resources/images/tool_apply.png -------------------------------------------------------------------------------- /resources/images/tool_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/resources/images/tool_help.png -------------------------------------------------------------------------------- /resources/images/tool_purchase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/resources/images/tool_purchase.png -------------------------------------------------------------------------------- /resources/images/tool_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/resources/images/tool_save.png -------------------------------------------------------------------------------- /resources/images/tool_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/resources/images/tool_settings.png -------------------------------------------------------------------------------- /resources/images/tool_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/resources/images/tool_share.png -------------------------------------------------------------------------------- /resources/images/tool_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/resources/images/tool_undo.png -------------------------------------------------------------------------------- /src/admobhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/admobhelper.cpp -------------------------------------------------------------------------------- /src/admobhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/admobhelper.h -------------------------------------------------------------------------------- /src/androidgw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/androidgw.cpp -------------------------------------------------------------------------------- /src/androidgw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/androidgw.h -------------------------------------------------------------------------------- /src/appsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/appsettings.cpp -------------------------------------------------------------------------------- /src/appsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/appsettings.h -------------------------------------------------------------------------------- /src/blureditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/blureditor.cpp -------------------------------------------------------------------------------- /src/blureditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/blureditor.h -------------------------------------------------------------------------------- /src/brushpreviewgenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/brushpreviewgenerator.cpp -------------------------------------------------------------------------------- /src/brushpreviewgenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/brushpreviewgenerator.h -------------------------------------------------------------------------------- /src/cartooneditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/cartooneditor.cpp -------------------------------------------------------------------------------- /src/cartooneditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/cartooneditor.h -------------------------------------------------------------------------------- /src/decolorizeeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/decolorizeeditor.cpp -------------------------------------------------------------------------------- /src/decolorizeeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/decolorizeeditor.h -------------------------------------------------------------------------------- /src/editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/editor.cpp -------------------------------------------------------------------------------- /src/editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/editor.h -------------------------------------------------------------------------------- /src/effecteditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/effecteditor.cpp -------------------------------------------------------------------------------- /src/effecteditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/effecteditor.h -------------------------------------------------------------------------------- /src/gplayhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/gplayhelper.cpp -------------------------------------------------------------------------------- /src/gplayhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/gplayhelper.h -------------------------------------------------------------------------------- /src/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/helper.cpp -------------------------------------------------------------------------------- /src/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/helper.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/mediastorehelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/mediastorehelper.cpp -------------------------------------------------------------------------------- /src/mediastorehelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/mediastorehelper.h -------------------------------------------------------------------------------- /src/pixelateeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/pixelateeditor.cpp -------------------------------------------------------------------------------- /src/pixelateeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/pixelateeditor.h -------------------------------------------------------------------------------- /src/previewgenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/previewgenerator.cpp -------------------------------------------------------------------------------- /src/previewgenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/previewgenerator.h -------------------------------------------------------------------------------- /src/recoloreditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/recoloreditor.cpp -------------------------------------------------------------------------------- /src/recoloreditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/recoloreditor.h -------------------------------------------------------------------------------- /src/retoucheditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/retoucheditor.cpp -------------------------------------------------------------------------------- /src/retoucheditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/retoucheditor.h -------------------------------------------------------------------------------- /src/sketcheditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/sketcheditor.cpp -------------------------------------------------------------------------------- /src/sketcheditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/sketcheditor.h -------------------------------------------------------------------------------- /src/uihelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/uihelper.cpp -------------------------------------------------------------------------------- /src/uihelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/src/uihelper.h -------------------------------------------------------------------------------- /tools/gen_qm.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/tools/gen_qm.bat -------------------------------------------------------------------------------- /tools/gen_ts.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/tools/gen_ts.bat -------------------------------------------------------------------------------- /tools/gradlew_lint.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/tools/gradlew_lint.bat -------------------------------------------------------------------------------- /tools/install-qt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/tools/install-qt.sh -------------------------------------------------------------------------------- /tools/qml_lint.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/tools/qml_lint.bat -------------------------------------------------------------------------------- /tools/sonarcloud.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/tools/sonarcloud.bat -------------------------------------------------------------------------------- /translations.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/translations.qrc -------------------------------------------------------------------------------- /translations/magicphotos_de.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/translations/magicphotos_de.qm -------------------------------------------------------------------------------- /translations/magicphotos_de.qt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/translations/magicphotos_de.qt.ts -------------------------------------------------------------------------------- /translations/magicphotos_de.src.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/translations/magicphotos_de.src.ts -------------------------------------------------------------------------------- /translations/magicphotos_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/translations/magicphotos_de.ts -------------------------------------------------------------------------------- /translations/magicphotos_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/translations/magicphotos_fr.qm -------------------------------------------------------------------------------- /translations/magicphotos_fr.qt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/translations/magicphotos_fr.qt.ts -------------------------------------------------------------------------------- /translations/magicphotos_fr.src.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/translations/magicphotos_fr.src.ts -------------------------------------------------------------------------------- /translations/magicphotos_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/translations/magicphotos_fr.ts -------------------------------------------------------------------------------- /translations/magicphotos_ru.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/translations/magicphotos_ru.qm -------------------------------------------------------------------------------- /translations/magicphotos_ru.qt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/translations/magicphotos_ru.qt.ts -------------------------------------------------------------------------------- /translations/magicphotos_ru.src.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/translations/magicphotos_ru.src.ts -------------------------------------------------------------------------------- /translations/magicphotos_ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/translations/magicphotos_ru.ts -------------------------------------------------------------------------------- /translations/magicphotos_zh.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/translations/magicphotos_zh.qm -------------------------------------------------------------------------------- /translations/magicphotos_zh.qt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/translations/magicphotos_zh.qt.ts -------------------------------------------------------------------------------- /translations/magicphotos_zh.src.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/translations/magicphotos_zh.src.ts -------------------------------------------------------------------------------- /translations/magicphotos_zh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicphotos/magicphotos-android/HEAD/translations/magicphotos_zh.ts --------------------------------------------------------------------------------