├── .gitignore ├── README.md ├── composeApp ├── build.gradle.kts ├── libgcc_s_seh-1.dll ├── libwinpthread-1.dll ├── libzune_jni_bindings.so ├── src │ ├── androidMain │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-playstore.png │ │ ├── jniLibs │ │ │ ├── arm64-v8a │ │ │ │ └── libzune_jni_bindings.so │ │ │ ├── armeabi-v7a │ │ │ │ └── libzune_jni_bindings.so │ │ │ └── x86 │ │ │ │ └── libzune_jni_bindings.so │ │ ├── kotlin │ │ │ ├── loadImage.android.kt │ │ │ └── org │ │ │ │ └── cae │ │ │ │ └── pixly │ │ │ │ ├── AndroidScalableCanvas.kt │ │ │ │ ├── AndroidSliderTextComponent.kt │ │ │ │ ├── AndroidUtils.kt │ │ │ │ ├── BlurFiltersComponent.kt │ │ │ │ ├── BottomBar.kt │ │ │ │ ├── ColorFilterPanel.kt │ │ │ │ ├── FilePicker.kt │ │ │ │ ├── HSLFilters.kt │ │ │ │ ├── ImageFiltersComponent.kt │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── OrientationFilters.kt │ │ │ │ ├── SaveAs.kt │ │ │ │ ├── TopBar.kt │ │ │ │ └── ZilAndroidBitmap.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── blur_svgrepo_com.xml │ │ │ ├── colours_svgrepo_com.xml │ │ │ ├── flip_horizontal_svgrepo_com.xml │ │ │ ├── flip_vertical_svgrepo_com.xml │ │ │ ├── histogram_linear_svgrepo_com.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── light_bulb_svgrepo_com.xml │ │ │ ├── orientation_svgrepo_com.xml │ │ │ ├── rotate_90.xml │ │ │ └── transpose_svgrepo_com.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_background.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_background.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_background.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_background.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_background.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ └── values │ │ │ └── strings.xml │ ├── commonMain │ │ ├── kotlin │ │ │ ├── AppContext.kt │ │ │ ├── FilterMatrix.kt │ │ │ ├── ImageFormats.kt │ │ │ ├── ProtectedBitmapInterface.kt │ │ │ ├── ScalabeState.kt │ │ │ ├── ShowModifiers.kt │ │ │ ├── ZilBitmapInterface.kt │ │ │ ├── ZilImageJni.kt │ │ │ ├── components │ │ │ │ ├── CollapsibleBox.kt │ │ │ │ ├── HistogramChart.kt │ │ │ │ ├── ImageCropper.kt │ │ │ │ ├── ImageInformation.kt │ │ │ │ └── TopTabBar.kt │ │ │ ├── enums.kt │ │ │ ├── events │ │ │ │ └── ExternalNavigationEventBus.kt │ │ │ ├── extensions │ │ │ │ └── CoroutineLaunch.kt │ │ │ ├── functions │ │ │ │ └── KeyboardShortcutsManagement.kt │ │ │ ├── history │ │ │ │ ├── HistoryOperationsEnum.kt │ │ │ │ └── UndoHistory.kt │ │ │ ├── image │ │ │ │ ├── ZilColorspace.kt │ │ │ │ ├── ZilDepth.kt │ │ │ │ ├── ZilImageFormat.kt │ │ │ │ ├── ZilImageInterface.kt │ │ │ │ └── imageUtils.kt │ │ │ ├── imageops │ │ │ │ └── AppContextExtsOps.kt │ │ │ ├── loadImage.kt │ │ │ ├── modifiers │ │ │ │ ├── BackgroundColorIfTrue.kt │ │ │ │ └── ModifyOnChange.kt │ │ │ ├── themes │ │ │ │ ├── Color.kt │ │ │ │ └── Theme.kt │ │ │ └── utils.kt │ │ └── resources │ │ │ ├── add-circle.svg │ │ │ ├── colorfilter-svgrepo-com.svg │ │ │ ├── delete-svgrepo.svg │ │ │ ├── eye-off-svgrepo-com.svg │ │ │ ├── eye-show-svgrepo-com.svg │ │ │ ├── file-svgrepo.svg │ │ │ ├── filters-2-svgrepo-com.svg │ │ │ ├── flip-horizontal-svgrepo-com.svg │ │ │ ├── flip-vertical-svgrepo-com.svg │ │ │ ├── folder-svgrepo-com.svg │ │ │ ├── folder-svgrepo.svg │ │ │ ├── fonts │ │ │ └── Poppins │ │ │ │ ├── OFL.txt │ │ │ │ ├── Poppins-Black.ttf │ │ │ │ ├── Poppins-BlackItalic.ttf │ │ │ │ ├── Poppins-Bold.ttf │ │ │ │ ├── Poppins-BoldItalic.ttf │ │ │ │ ├── Poppins-ExtraBold.ttf │ │ │ │ ├── Poppins-ExtraBoldItalic.ttf │ │ │ │ ├── Poppins-ExtraLight.ttf │ │ │ │ ├── Poppins-ExtraLightItalic.ttf │ │ │ │ ├── Poppins-Italic.ttf │ │ │ │ ├── Poppins-Light.ttf │ │ │ │ ├── Poppins-LightItalic.ttf │ │ │ │ ├── Poppins-Medium.ttf │ │ │ │ ├── Poppins-MediumItalic.ttf │ │ │ │ ├── Poppins-Regular.ttf │ │ │ │ ├── Poppins-SemiBold.ttf │ │ │ │ ├── Poppins-SemiBoldItalic.ttf │ │ │ │ ├── Poppins-Thin.ttf │ │ │ │ └── Poppins-ThinItalic.ttf │ │ │ ├── half-v-svgrepo-com.svg │ │ │ ├── heart-svgrepo.svg │ │ │ ├── history-svgrepo-com.svg │ │ │ ├── icon.png │ │ │ ├── image-edit-svgrepo-com.svg │ │ │ ├── info-svgrepo.svg │ │ │ ├── moon-svgrepo-com.svg │ │ │ ├── open-file-svgrepo-com (1).svg │ │ │ ├── open-file-svgrepo-com.svg │ │ │ ├── open-folder-svgrepo-com.svg │ │ │ ├── open-panel-filled-left-svgrepo-com.png │ │ │ ├── open-panel-filled-left-svgrepo-com.svg │ │ │ ├── open-panel-left-svgrepo-com.svg │ │ │ ├── reload-svgrepo-com.svg │ │ │ ├── rotate-180.svg │ │ │ ├── rotate-270.svg │ │ │ ├── rotate-90.svg │ │ │ ├── rotate-orignal.svg │ │ │ ├── rotate-right-svgrepo-com.svg │ │ │ ├── save-as-svgrepo-com.svg │ │ │ ├── save-svgrepo.svg │ │ │ ├── search-svgrepo.svg │ │ │ ├── shared_libs │ │ │ ├── linux │ │ │ │ └── libzune_jni_bindings.so │ │ │ └── windows │ │ │ │ ├── libgcc_s_seh-1.dll │ │ │ │ ├── libwinpthread-1.dll │ │ │ │ └── zune_jni_bindings.dll │ │ │ ├── sun-svgrepo-com.svg │ │ │ ├── thumbnail-1-svgrepo-com.png │ │ │ ├── thumbnail-1-svgrepo-com.svg │ │ │ ├── transpose-svgrepo-com.png │ │ │ ├── transpose-svgrepo-com.svg │ │ │ ├── undo-svgrepo.svg │ │ │ └── xml │ │ │ ├── add_circle.xml │ │ │ ├── colorfilter_svgrepo_com.xml │ │ │ ├── filters_svgrepo_com.xml │ │ │ ├── info_svgrepo.xml │ │ │ ├── moon_svgrepo_com.xml │ │ │ ├── open_file_svgrepo_com.xml │ │ │ ├── save_svgrepo.xml │ │ │ ├── sun_svgrepo_com.xml │ │ │ └── undo_svgrepo.xml │ └── desktopMain │ │ └── kotlin │ │ ├── Constants.kt │ │ ├── DesktopProtectedBitmap.kt │ │ ├── ImageSpace.kt │ │ ├── LeftPane.kt │ │ ├── RightPane.kt │ │ ├── ThumbnailGenerator.kt │ │ ├── ZilBitmap.kt │ │ ├── desktopComponents │ │ ├── DirectoryViewer.kt │ │ ├── ImageFilters.kt │ │ ├── PixlyToolTip.kt │ │ ├── SaveAs.kt │ │ ├── ScalableImage.kt │ │ ├── SliderTextComponent.kt │ │ └── TopHoveringIcons.kt │ │ ├── extensions │ │ └── ModifierPointer.kt │ │ ├── history │ │ └── HistoryWidget.kt │ │ └── main.kt └── zune_jni_bindings.dll ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── iosApp ├── Configuration │ └── Config.xcconfig ├── iosApp.xcodeproj │ └── project.pbxproj └── iosApp │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ └── app-icon-1024.png │ └── Contents.json │ ├── ContentView.swift │ ├── Info.plist │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ └── iOSApp.swift ├── rust ├── .cargo │ └── config ├── .gitignore ├── Cargo.toml ├── README.md └── src │ └── lib.rs ├── screenshots ├── android_view.png ├── desktop_full.png └── ic_launcher-playstore.png ├── settings.gradle.kts └── video └── desktop.mp4 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/README.md -------------------------------------------------------------------------------- /composeApp/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/build.gradle.kts -------------------------------------------------------------------------------- /composeApp/libgcc_s_seh-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/libgcc_s_seh-1.dll -------------------------------------------------------------------------------- /composeApp/libwinpthread-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/libwinpthread-1.dll -------------------------------------------------------------------------------- /composeApp/libzune_jni_bindings.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/libzune_jni_bindings.so -------------------------------------------------------------------------------- /composeApp/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/ic_launcher-playstore.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/jniLibs/arm64-v8a/libzune_jni_bindings.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/jniLibs/arm64-v8a/libzune_jni_bindings.so -------------------------------------------------------------------------------- /composeApp/src/androidMain/jniLibs/armeabi-v7a/libzune_jni_bindings.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/jniLibs/armeabi-v7a/libzune_jni_bindings.so -------------------------------------------------------------------------------- /composeApp/src/androidMain/jniLibs/x86/libzune_jni_bindings.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/jniLibs/x86/libzune_jni_bindings.so -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/loadImage.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/kotlin/loadImage.android.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/org/cae/pixly/AndroidScalableCanvas.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/kotlin/org/cae/pixly/AndroidScalableCanvas.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/org/cae/pixly/AndroidSliderTextComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/kotlin/org/cae/pixly/AndroidSliderTextComponent.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/org/cae/pixly/AndroidUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/kotlin/org/cae/pixly/AndroidUtils.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/org/cae/pixly/BlurFiltersComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/kotlin/org/cae/pixly/BlurFiltersComponent.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/org/cae/pixly/BottomBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/kotlin/org/cae/pixly/BottomBar.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/org/cae/pixly/ColorFilterPanel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/kotlin/org/cae/pixly/ColorFilterPanel.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/org/cae/pixly/FilePicker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/kotlin/org/cae/pixly/FilePicker.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/org/cae/pixly/HSLFilters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/kotlin/org/cae/pixly/HSLFilters.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/org/cae/pixly/ImageFiltersComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/kotlin/org/cae/pixly/ImageFiltersComponent.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/org/cae/pixly/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/kotlin/org/cae/pixly/MainActivity.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/org/cae/pixly/OrientationFilters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/kotlin/org/cae/pixly/OrientationFilters.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/org/cae/pixly/SaveAs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/kotlin/org/cae/pixly/SaveAs.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/org/cae/pixly/TopBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/kotlin/org/cae/pixly/TopBar.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/org/cae/pixly/ZilAndroidBitmap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/kotlin/org/cae/pixly/ZilAndroidBitmap.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/blur_svgrepo_com.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/res/drawable/blur_svgrepo_com.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/colours_svgrepo_com.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/res/drawable/colours_svgrepo_com.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/flip_horizontal_svgrepo_com.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/res/drawable/flip_horizontal_svgrepo_com.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/flip_vertical_svgrepo_com.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/res/drawable/flip_vertical_svgrepo_com.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/histogram_linear_svgrepo_com.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/res/drawable/histogram_linear_svgrepo_com.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/light_bulb_svgrepo_com.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/res/drawable/light_bulb_svgrepo_com.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/orientation_svgrepo_com.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/res/drawable/orientation_svgrepo_com.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/rotate_90.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/res/drawable/rotate_90.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/transpose_svgrepo_com.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/res/drawable/transpose_svgrepo_com.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher_background.webp -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-mdpi/ic_launcher_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/res/mipmap-mdpi/ic_launcher_background.webp -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-mdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/res/mipmap-mdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-xhdpi/ic_launcher_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/res/mipmap-xhdpi/ic_launcher_background.webp -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-xhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/res/mipmap-xhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-xxhdpi/ic_launcher_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/res/mipmap-xxhdpi/ic_launcher_background.webp -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-xxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/res/mipmap-xxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_background.webp -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/androidMain/res/values/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/AppContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/kotlin/AppContext.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/FilterMatrix.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/kotlin/FilterMatrix.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/ImageFormats.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/kotlin/ImageFormats.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/ProtectedBitmapInterface.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/kotlin/ProtectedBitmapInterface.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/ScalabeState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/kotlin/ScalabeState.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/ShowModifiers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/kotlin/ShowModifiers.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/ZilBitmapInterface.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/kotlin/ZilBitmapInterface.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/ZilImageJni.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/kotlin/ZilImageJni.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/components/CollapsibleBox.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/kotlin/components/CollapsibleBox.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/components/HistogramChart.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/kotlin/components/HistogramChart.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/components/ImageCropper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/kotlin/components/ImageCropper.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/components/ImageInformation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/kotlin/components/ImageInformation.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/components/TopTabBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/kotlin/components/TopTabBar.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/enums.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/kotlin/enums.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/events/ExternalNavigationEventBus.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/kotlin/events/ExternalNavigationEventBus.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/extensions/CoroutineLaunch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/kotlin/extensions/CoroutineLaunch.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/functions/KeyboardShortcutsManagement.kt: -------------------------------------------------------------------------------- 1 | package functions 2 | 3 | -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/history/HistoryOperationsEnum.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/kotlin/history/HistoryOperationsEnum.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/history/UndoHistory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/kotlin/history/UndoHistory.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/image/ZilColorspace.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/kotlin/image/ZilColorspace.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/image/ZilDepth.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/kotlin/image/ZilDepth.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/image/ZilImageFormat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/kotlin/image/ZilImageFormat.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/image/ZilImageInterface.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/kotlin/image/ZilImageInterface.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/image/imageUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/kotlin/image/imageUtils.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/imageops/AppContextExtsOps.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/kotlin/imageops/AppContextExtsOps.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/loadImage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/kotlin/loadImage.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/modifiers/BackgroundColorIfTrue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/kotlin/modifiers/BackgroundColorIfTrue.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/modifiers/ModifyOnChange.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/kotlin/modifiers/ModifyOnChange.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/themes/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/kotlin/themes/Color.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/themes/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/kotlin/themes/Theme.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/kotlin/utils.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/add-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/add-circle.svg -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/colorfilter-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/colorfilter-svgrepo-com.svg -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/delete-svgrepo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/delete-svgrepo.svg -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/eye-off-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/eye-off-svgrepo-com.svg -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/eye-show-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/eye-show-svgrepo-com.svg -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/file-svgrepo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/file-svgrepo.svg -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/filters-2-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/filters-2-svgrepo-com.svg -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/flip-horizontal-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/flip-horizontal-svgrepo-com.svg -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/flip-vertical-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/flip-vertical-svgrepo-com.svg -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/folder-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/folder-svgrepo-com.svg -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/folder-svgrepo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/folder-svgrepo.svg -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/fonts/Poppins/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/fonts/Poppins/OFL.txt -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/fonts/Poppins/Poppins-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/fonts/Poppins/Poppins-Black.ttf -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/fonts/Poppins/Poppins-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/fonts/Poppins/Poppins-BlackItalic.ttf -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/fonts/Poppins/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/fonts/Poppins/Poppins-Bold.ttf -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/fonts/Poppins/Poppins-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/fonts/Poppins/Poppins-BoldItalic.ttf -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/fonts/Poppins/Poppins-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/fonts/Poppins/Poppins-ExtraBold.ttf -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/fonts/Poppins/Poppins-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/fonts/Poppins/Poppins-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/fonts/Poppins/Poppins-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/fonts/Poppins/Poppins-ExtraLight.ttf -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/fonts/Poppins/Poppins-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/fonts/Poppins/Poppins-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/fonts/Poppins/Poppins-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/fonts/Poppins/Poppins-Italic.ttf -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/fonts/Poppins/Poppins-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/fonts/Poppins/Poppins-Light.ttf -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/fonts/Poppins/Poppins-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/fonts/Poppins/Poppins-LightItalic.ttf -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/fonts/Poppins/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/fonts/Poppins/Poppins-Medium.ttf -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/fonts/Poppins/Poppins-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/fonts/Poppins/Poppins-MediumItalic.ttf -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/fonts/Poppins/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/fonts/Poppins/Poppins-Regular.ttf -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/fonts/Poppins/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/fonts/Poppins/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/fonts/Poppins/Poppins-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/fonts/Poppins/Poppins-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/fonts/Poppins/Poppins-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/fonts/Poppins/Poppins-Thin.ttf -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/fonts/Poppins/Poppins-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/fonts/Poppins/Poppins-ThinItalic.ttf -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/half-v-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/half-v-svgrepo-com.svg -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/heart-svgrepo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/heart-svgrepo.svg -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/history-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/history-svgrepo-com.svg -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/icon.png -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/image-edit-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/image-edit-svgrepo-com.svg -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/info-svgrepo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/info-svgrepo.svg -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/moon-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/moon-svgrepo-com.svg -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/open-file-svgrepo-com (1).svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/open-file-svgrepo-com (1).svg -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/open-file-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/open-file-svgrepo-com.svg -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/open-folder-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/open-folder-svgrepo-com.svg -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/open-panel-filled-left-svgrepo-com.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/open-panel-filled-left-svgrepo-com.png -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/open-panel-filled-left-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/open-panel-filled-left-svgrepo-com.svg -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/open-panel-left-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/open-panel-left-svgrepo-com.svg -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/reload-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/reload-svgrepo-com.svg -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/rotate-180.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/rotate-180.svg -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/rotate-270.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/rotate-270.svg -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/rotate-90.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/rotate-90.svg -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/rotate-orignal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/rotate-orignal.svg -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/rotate-right-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/rotate-right-svgrepo-com.svg -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/save-as-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/save-as-svgrepo-com.svg -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/save-svgrepo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/save-svgrepo.svg -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/search-svgrepo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/search-svgrepo.svg -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/shared_libs/linux/libzune_jni_bindings.so: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/shared_libs/windows/libgcc_s_seh-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/shared_libs/windows/libgcc_s_seh-1.dll -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/shared_libs/windows/libwinpthread-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/shared_libs/windows/libwinpthread-1.dll -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/shared_libs/windows/zune_jni_bindings.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/shared_libs/windows/zune_jni_bindings.dll -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/sun-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/sun-svgrepo-com.svg -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/thumbnail-1-svgrepo-com.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/thumbnail-1-svgrepo-com.png -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/thumbnail-1-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/thumbnail-1-svgrepo-com.svg -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/transpose-svgrepo-com.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/transpose-svgrepo-com.png -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/transpose-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/transpose-svgrepo-com.svg -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/undo-svgrepo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/undo-svgrepo.svg -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/xml/add_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/xml/add_circle.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/xml/colorfilter_svgrepo_com.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/xml/colorfilter_svgrepo_com.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/xml/filters_svgrepo_com.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/xml/filters_svgrepo_com.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/xml/info_svgrepo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/xml/info_svgrepo.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/xml/moon_svgrepo_com.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/xml/moon_svgrepo_com.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/xml/open_file_svgrepo_com.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/xml/open_file_svgrepo_com.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/xml/save_svgrepo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/xml/save_svgrepo.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/xml/sun_svgrepo_com.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/xml/sun_svgrepo_com.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/resources/xml/undo_svgrepo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/commonMain/resources/xml/undo_svgrepo.xml -------------------------------------------------------------------------------- /composeApp/src/desktopMain/kotlin/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/desktopMain/kotlin/Constants.kt -------------------------------------------------------------------------------- /composeApp/src/desktopMain/kotlin/DesktopProtectedBitmap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/desktopMain/kotlin/DesktopProtectedBitmap.kt -------------------------------------------------------------------------------- /composeApp/src/desktopMain/kotlin/ImageSpace.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/desktopMain/kotlin/ImageSpace.kt -------------------------------------------------------------------------------- /composeApp/src/desktopMain/kotlin/LeftPane.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/desktopMain/kotlin/LeftPane.kt -------------------------------------------------------------------------------- /composeApp/src/desktopMain/kotlin/RightPane.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/desktopMain/kotlin/RightPane.kt -------------------------------------------------------------------------------- /composeApp/src/desktopMain/kotlin/ThumbnailGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/desktopMain/kotlin/ThumbnailGenerator.kt -------------------------------------------------------------------------------- /composeApp/src/desktopMain/kotlin/ZilBitmap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/desktopMain/kotlin/ZilBitmap.kt -------------------------------------------------------------------------------- /composeApp/src/desktopMain/kotlin/desktopComponents/DirectoryViewer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/desktopMain/kotlin/desktopComponents/DirectoryViewer.kt -------------------------------------------------------------------------------- /composeApp/src/desktopMain/kotlin/desktopComponents/ImageFilters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/desktopMain/kotlin/desktopComponents/ImageFilters.kt -------------------------------------------------------------------------------- /composeApp/src/desktopMain/kotlin/desktopComponents/PixlyToolTip.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/desktopMain/kotlin/desktopComponents/PixlyToolTip.kt -------------------------------------------------------------------------------- /composeApp/src/desktopMain/kotlin/desktopComponents/SaveAs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/desktopMain/kotlin/desktopComponents/SaveAs.kt -------------------------------------------------------------------------------- /composeApp/src/desktopMain/kotlin/desktopComponents/ScalableImage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/desktopMain/kotlin/desktopComponents/ScalableImage.kt -------------------------------------------------------------------------------- /composeApp/src/desktopMain/kotlin/desktopComponents/SliderTextComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/desktopMain/kotlin/desktopComponents/SliderTextComponent.kt -------------------------------------------------------------------------------- /composeApp/src/desktopMain/kotlin/desktopComponents/TopHoveringIcons.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/desktopMain/kotlin/desktopComponents/TopHoveringIcons.kt -------------------------------------------------------------------------------- /composeApp/src/desktopMain/kotlin/extensions/ModifierPointer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/desktopMain/kotlin/extensions/ModifierPointer.kt -------------------------------------------------------------------------------- /composeApp/src/desktopMain/kotlin/history/HistoryWidget.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/desktopMain/kotlin/history/HistoryWidget.kt -------------------------------------------------------------------------------- /composeApp/src/desktopMain/kotlin/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/src/desktopMain/kotlin/main.kt -------------------------------------------------------------------------------- /composeApp/zune_jni_bindings.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/composeApp/zune_jni_bindings.dll -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/gradlew.bat -------------------------------------------------------------------------------- /iosApp/Configuration/Config.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/iosApp/Configuration/Config.xcconfig -------------------------------------------------------------------------------- /iosApp/iosApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/iosApp/iosApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/app-icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/app-icon-1024.png -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/iosApp/iosApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/iosApp/iosApp/ContentView.swift -------------------------------------------------------------------------------- /iosApp/iosApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/iosApp/iosApp/Info.plist -------------------------------------------------------------------------------- /iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/iOSApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/iosApp/iosApp/iOSApp.swift -------------------------------------------------------------------------------- /rust/.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/rust/.cargo/config -------------------------------------------------------------------------------- /rust/.gitignore: -------------------------------------------------------------------------------- 1 | /target -------------------------------------------------------------------------------- /rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/rust/Cargo.toml -------------------------------------------------------------------------------- /rust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/rust/README.md -------------------------------------------------------------------------------- /rust/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/rust/src/lib.rs -------------------------------------------------------------------------------- /screenshots/android_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/screenshots/android_view.png -------------------------------------------------------------------------------- /screenshots/desktop_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/screenshots/desktop_full.png -------------------------------------------------------------------------------- /screenshots/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/screenshots/ic_launcher-playstore.png -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /video/desktop.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etemesi254/Pixly/HEAD/video/desktop.mp4 --------------------------------------------------------------------------------