Compare commits
1 Commits
master
...
ci-extra-f
Author | SHA1 | Date | |
---|---|---|---|
|
8397cee0c5 |
2
.github/FUNDING.yml
vendored
2
.github/FUNDING.yml
vendored
@ -1,2 +0,0 @@
|
|||||||
ko_fi: blumia
|
|
||||||
custom: ["https://blumia.itch.io/pineapple-pictures"]
|
|
33
.github/workflows/macos.yml
vendored
33
.github/workflows/macos.yml
vendored
@ -1,6 +1,6 @@
|
|||||||
name: macOS CI
|
name: macOS CI
|
||||||
|
|
||||||
on: [push, pull_request, workflow_dispatch]
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
@ -8,31 +8,12 @@ jobs:
|
|||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v3
|
||||||
- name: Install Qt
|
- name: Install Qt
|
||||||
uses: jurplel/install-qt-action@v4
|
uses: jurplel/install-qt-action@v3
|
||||||
with:
|
with:
|
||||||
version: '6.9.1'
|
version: '5.15.2'
|
||||||
modules: 'qtimageformats'
|
- name: Run a qt project
|
||||||
- name: Install Conan and Dependencies
|
|
||||||
id: conan
|
|
||||||
working-directory: ./
|
|
||||||
shell: bash
|
|
||||||
run: |
|
run: |
|
||||||
pip3 install wheel setuptools
|
cmake ./
|
||||||
pip3 install conan --upgrade
|
make
|
||||||
conan --version
|
|
||||||
conan profile detect
|
|
||||||
conan install --requires=exiv2/0.28.3 --generator CMakeDeps --generator CMakeToolchain --build=missing
|
|
||||||
- name: Build
|
|
||||||
run: |
|
|
||||||
cmake . -DTRANSLATION_RESOURCE_EMBEDDING=ON --preset conan-release
|
|
||||||
cmake --build --preset conan-release
|
|
||||||
- name: Deploy
|
|
||||||
run: |
|
|
||||||
macdeployqt ./ppic.app -dmg
|
|
||||||
ls
|
|
||||||
- uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: "macos-bundle"
|
|
||||||
path: "*.dmg"
|
|
||||||
|
8
.github/workflows/reuse-check.yml
vendored
8
.github/workflows/reuse-check.yml
vendored
@ -7,11 +7,9 @@ name: REUSE Compliance Check
|
|||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
reuse-compliance-check:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- uses: actions/checkout@v2
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: REUSE Compliance Check
|
- name: REUSE Compliance Check
|
||||||
uses: fsfe/reuse-action@v5
|
uses: fsfe/reuse-action@v1
|
14
.github/workflows/ubuntu.yml
vendored
14
.github/workflows/ubuntu.yml
vendored
@ -3,14 +3,16 @@ name: Ubuntu CI
|
|||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
ubuntu-24-04-build:
|
ubuntu-22-04-build:
|
||||||
runs-on: ubuntu-24.04
|
|
||||||
|
runs-on: ubuntu-22.04
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v3
|
||||||
- name: Get build dept.
|
- name: Get build dept.
|
||||||
run: |
|
run: |
|
||||||
sudo apt update
|
sudo apt update
|
||||||
sudo apt install cmake qt6-base-dev qt6-svg-dev qt6-tools-dev libexiv2-dev
|
sudo apt install cmake qtbase5-dev libqt5svg5-dev qttools5-dev libexiv2-dev
|
||||||
- name: Build it
|
- name: Build it
|
||||||
run: |
|
run: |
|
||||||
mkdir build
|
mkdir build
|
||||||
@ -22,7 +24,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
cd build
|
cd build
|
||||||
sudo apt install ./*.deb
|
sudo apt install ./*.deb
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: ubuntu-24.04-deb-package
|
name: ubuntu-22.04-deb-package
|
||||||
path: build/*.deb
|
path: build/*.deb
|
||||||
|
121
.github/workflows/windows.yml
vendored
121
.github/workflows/windows.yml
vendored
@ -1,28 +1,24 @@
|
|||||||
name: Windows CI
|
name: Windows CI
|
||||||
|
|
||||||
on: [push, pull_request, workflow_dispatch]
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
msvc-qmake-build:
|
msvc-build:
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
vs: ['2019']
|
||||||
- qt_ver: '6.9.1'
|
msvc_arch: ['x64']
|
||||||
vs: '2022'
|
|
||||||
aqt_arch: 'win64_msvc2022_64'
|
|
||||||
msvc_arch: 'x64'
|
|
||||||
|
|
||||||
runs-on: windows-2022
|
runs-on: windows-2019
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v3
|
||||||
- name: Install Qt
|
- name: Install Qt
|
||||||
uses: jurplel/install-qt-action@v4
|
uses: jurplel/install-qt-action@v3
|
||||||
with:
|
with:
|
||||||
arch: ${{ matrix.aqt_arch }}
|
arch: 'win64_msvc2019_64'
|
||||||
version: ${{ matrix.qt_ver }}
|
version: '5.15.2'
|
||||||
modules: 'qtimageformats'
|
|
||||||
- name: Build
|
- name: Build
|
||||||
shell: cmd
|
shell: cmd
|
||||||
run: |
|
run: |
|
||||||
@ -32,102 +28,3 @@ jobs:
|
|||||||
call %VCVARS% ${{ matrix.msvc_arch }}
|
call %VCVARS% ${{ matrix.msvc_arch }}
|
||||||
qmake pineapple-pictures.pro
|
qmake pineapple-pictures.pro
|
||||||
nmake
|
nmake
|
||||||
nmake clean
|
|
||||||
windeployqt --verbose=2 --no-quick-import --no-translations --no-opengl-sw --no-system-d3d-compiler --no-system-dxc-compiler --skip-plugin-types tls,networkinformation release\ppic.exe
|
|
||||||
- uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: "windows-msvc${{ matrix.vs }}-qt${{ matrix.qt_ver }}-qmake-package"
|
|
||||||
path: release/*
|
|
||||||
|
|
||||||
msvc-cmake-build:
|
|
||||||
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
include:
|
|
||||||
- qt_ver: '6.9.1'
|
|
||||||
vs: '2022'
|
|
||||||
aqt_arch: 'win64_msvc2022_64'
|
|
||||||
msvc_arch: 'x64'
|
|
||||||
|
|
||||||
runs-on: windows-2022
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- name: Install Qt
|
|
||||||
uses: jurplel/install-qt-action@v4
|
|
||||||
with:
|
|
||||||
arch: ${{ matrix.aqt_arch }}
|
|
||||||
version: ${{ matrix.qt_ver }}
|
|
||||||
modules: 'qtimageformats'
|
|
||||||
- name: Build
|
|
||||||
shell: cmd
|
|
||||||
run: |
|
|
||||||
:: ------ env ------
|
|
||||||
set PWD=%cd%
|
|
||||||
set VS=${{ matrix.vs }}
|
|
||||||
set VCVARS="C:\Program Files (x86)\Microsoft Visual Studio\%VS%\Enterprise\VC\Auxiliary\Build\vcvarsall.bat"
|
|
||||||
if not exist %VCVARS% set VCVARS="C:\Program Files\Microsoft Visual Studio\%VS%\Enterprise\VC\Auxiliary\Build\vcvarsall.bat"
|
|
||||||
call %VCVARS% ${{ matrix.msvc_arch }}
|
|
||||||
:: ------ dep ------
|
|
||||||
set CMAKE_PREFIX_PATH=%PWD%/dependencies_bin
|
|
||||||
mkdir dependencies_src
|
|
||||||
echo ::group::===== exiv2 =====
|
|
||||||
curl -fsSL -o exiv2_bin.zip https://github.com/Exiv2/exiv2/releases/download/v0.28.3/exiv2-0.28.3-2019msvc64.zip
|
|
||||||
7z x exiv2_bin.zip -y
|
|
||||||
ren .\exiv2-0.28.3-2019msvc64 dependencies_bin
|
|
||||||
echo ::endgroup::
|
|
||||||
echo ::group::===== zlib =====
|
|
||||||
curl -fsSL -o zlib_src.zip https://zlib.net/zlib131.zip
|
|
||||||
7z x zlib_src.zip -y -o"dependencies_src"
|
|
||||||
ren .\dependencies_src\zlib-1.3.1 zlib || goto :error
|
|
||||||
cmake ./dependencies_src/zlib -Bbuild_dependencies/zlib -DCMAKE_INSTALL_PREFIX="dependencies_bin" || goto :error
|
|
||||||
cmake --build build_dependencies/zlib --config Release --target=install || goto :error
|
|
||||||
curl -fsSL -o expat_src.zip https://github.com/libexpat/libexpat/archive/R_2_6_2.zip
|
|
||||||
echo ::endgroup::
|
|
||||||
echo ::group::===== AOM for libavif AVI decoding support =====
|
|
||||||
git clone -q -b v3.12.0 --depth 1 https://aomedia.googlesource.com/aom dependencies_src/aom
|
|
||||||
cmake ./dependencies_src/aom -Bbuild_dependencies/aom -DCMAKE_INSTALL_PREFIX="dependencies_bin" -DENABLE_DOCS=OFF -DBUILD_SHARED_LIBS=ON -DAOM_TARGET_CPU=generic -DENABLE_TESTS=OFF -DENABLE_TESTDATA=OFF -DENABLE_TOOLS=OFF -DENABLE_EXAMPLES=0 || goto :error
|
|
||||||
cmake --build build_dependencies/aom --config Release --target=install || goto :error
|
|
||||||
echo ::endgroup::
|
|
||||||
echo ::group::===== libavif =====
|
|
||||||
curl -fsSL -o libavif-v1_2_1.zip https://github.com/AOMediaCodec/libavif/archive/v1.2.1.zip
|
|
||||||
7z x libavif-v1_2_1.zip -y -o"dependencies_src"
|
|
||||||
ren .\dependencies_src\libavif-1.2.1 libavif || goto :error
|
|
||||||
cmake ./dependencies_src/libavif -Bbuild_dependencies/libavif -DCMAKE_INSTALL_PREFIX="dependencies_bin" -DAVIF_CODEC_AOM=ON -DAVIF_LIBYUV=LOCAL
|
|
||||||
cmake --build build_dependencies/libavif --config Release --target=install || goto :error
|
|
||||||
echo ::endgroup::
|
|
||||||
echo ::group::===== expat =====
|
|
||||||
7z x expat_src.zip -y -o"dependencies_src"
|
|
||||||
ren .\dependencies_src\libexpat-R_2_6_2 expat || goto :error
|
|
||||||
cmake ./dependencies_src/expat/expat -Bbuild_dependencies/expat -DCMAKE_INSTALL_PREFIX="dependencies_bin" || goto :error
|
|
||||||
cmake --build build_dependencies/expat --config Release --target=install || goto :error
|
|
||||||
echo ::endgroup::
|
|
||||||
echo ::group::===== ECM =====
|
|
||||||
git clone -q https://invent.kde.org/frameworks/extra-cmake-modules.git dependencies_src/extra-cmake-modules
|
|
||||||
cmake .\dependencies_src\extra-cmake-modules -Bbuild_dependencies/extra-cmake-modules -DCMAKE_INSTALL_PREFIX="dependencies_bin" -DBUILD_TESTING=OFF || goto :error
|
|
||||||
cmake --build build_dependencies/extra-cmake-modules --config Release --target=install || goto :error
|
|
||||||
echo ::endgroup::
|
|
||||||
echo ::group::===== KArchive =====
|
|
||||||
git clone -q https://invent.kde.org/frameworks/karchive.git dependencies_src/karchive
|
|
||||||
cmake .\dependencies_src\karchive -Bbuild_dependencies/karchive -DWITH_LIBZSTD=OFF -DWITH_BZIP2=OFF -DWITH_LIBLZMA=OFF -DCMAKE_INSTALL_PREFIX="dependencies_bin" || goto :error
|
|
||||||
cmake --build build_dependencies/karchive --config Release --target=install || goto :error
|
|
||||||
echo ::endgroup::
|
|
||||||
echo ::group::===== KImageFormats =====
|
|
||||||
git clone -q https://invent.kde.org/frameworks/kimageformats.git dependencies_src/kimageformats
|
|
||||||
cmake .\dependencies_src\kimageformats -Bbuild_dependencies/kimageformats -DKDE_INSTALL_QTPLUGINDIR=%QT_ROOT_DIR%\plugins || goto :error
|
|
||||||
cmake --build build_dependencies/kimageformats --config Release --target=install || goto :error
|
|
||||||
echo ::endgroup::
|
|
||||||
:: ------ app ------
|
|
||||||
cmake -Bbuild . -DCMAKE_INSTALL_PREFIX="%PWD%\build\"
|
|
||||||
cmake --build build --config Release
|
|
||||||
cmake --build build --config Release --target=install
|
|
||||||
:: ------ pkg ------
|
|
||||||
windeployqt --verbose=2 --no-quick-import --no-translations --no-opengl-sw --no-system-d3d-compiler --no-system-dxc-compiler --skip-plugin-types tls,networkinformation build\bin\ppic.exe
|
|
||||||
robocopy ./dependencies_bin/bin build/bin *.dll
|
|
||||||
if ErrorLevel 8 (exit /B 1)
|
|
||||||
copy LICENSE build\bin
|
|
||||||
exit /B 0
|
|
||||||
- uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: "windows-msvc${{ matrix.vs }}-qt${{ matrix.qt_ver }}-cmake-package"
|
|
||||||
path: build/bin/*
|
|
||||||
|
3
.gitignore
vendored
3
.gitignore
vendored
@ -2,9 +2,6 @@
|
|||||||
*.user
|
*.user
|
||||||
*.user.*
|
*.user.*
|
||||||
|
|
||||||
# Why, macOS, why?
|
|
||||||
.DS_Store
|
|
||||||
|
|
||||||
# Translation files
|
# Translation files
|
||||||
*.qm
|
*.qm
|
||||||
*.mo
|
*.mo
|
||||||
|
28
.reuse/dep5
Normal file
28
.reuse/dep5
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||||
|
Upstream-Name: Pineapple Pictures
|
||||||
|
Source: https://github.com/BLumia/pineapple-pictures
|
||||||
|
|
||||||
|
# Config files
|
||||||
|
Files: .gitignore appveyor.yml .github/*
|
||||||
|
Copyright: None
|
||||||
|
License: CC0-1.0
|
||||||
|
|
||||||
|
# README, resource files and Metadata files
|
||||||
|
Files: README*.md assets/*.rc assets/*.qrc dist/*
|
||||||
|
Copyright: None
|
||||||
|
License: CC0-1.0
|
||||||
|
|
||||||
|
# Translation files
|
||||||
|
# See assets/plain/translators.html for a list of translators
|
||||||
|
Files: app/translations/*.ts assets/plain/translators.html
|
||||||
|
Copyright: Translators from hosted.weblate.org
|
||||||
|
License: MIT
|
||||||
|
|
||||||
|
# Assets
|
||||||
|
Files: assets/icons/*.svg
|
||||||
|
Copyright: 2022 Gary Wang
|
||||||
|
License: MIT
|
||||||
|
|
||||||
|
Files: assets/icons/app-icon.*
|
||||||
|
Copyright: 2020 Lovelyblack
|
||||||
|
License: MIT
|
135
CMakeLists.txt
135
CMakeLists.txt
@ -1,41 +1,54 @@
|
|||||||
# SPDX-FileCopyrightText: 2022 - 2025 Gary Wang <git@blumia.net>
|
# SPDX-FileCopyrightText: 2022 - 2023 Gary Wang <git@blumia.net>
|
||||||
#
|
#
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
cmake_minimum_required(VERSION 3.16)
|
project (pineapple-pictures)
|
||||||
|
|
||||||
project(pineapple-pictures VERSION 1.0.0) # don't forget to update NEWS file and AppStream metadata.
|
cmake_minimum_required (VERSION 3.9.5)
|
||||||
|
|
||||||
include(GNUInstallDirs)
|
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_LIST_DIR}/cmake)
|
||||||
include(FeatureSummary)
|
|
||||||
|
include (GNUInstallDirs)
|
||||||
|
include (FeatureSummary)
|
||||||
|
|
||||||
option (EXIV2_METADATA_SUPPORT "Better image metadata support via libexiv2" ON)
|
option (EXIV2_METADATA_SUPPORT "Better image metadata support via libexiv2" ON)
|
||||||
option (TRANSLATION_RESOURCE_EMBEDDING "Embedding .qm translation files inside resource" OFF)
|
option (PREFER_QT_5 "Prefer to use Qt 5 even if we have Qt 6" ON)
|
||||||
|
|
||||||
set (CMAKE_CXX_STANDARD 17)
|
|
||||||
set (CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
||||||
set (CMAKE_AUTOMOC ON)
|
set (CMAKE_AUTOMOC ON)
|
||||||
set (CMAKE_AUTORCC ON)
|
set (CMAKE_AUTORCC ON)
|
||||||
|
|
||||||
find_package(QT NAMES Qt6 REQUIRED COMPONENTS Core)
|
if (PREFER_QT_5)
|
||||||
|
find_package(QT NAMES Qt5 REQUIRED COMPONENTS Core)
|
||||||
|
else ()
|
||||||
|
find_package(QT NAMES Qt6 Qt5 REQUIRED COMPONENTS Core)
|
||||||
|
endif ()
|
||||||
|
|
||||||
set (QT_MINIMUM_VERSION "6.4")
|
if (${QT_VERSION_MAJOR} EQUAL "5")
|
||||||
|
set (QT_MINIMUM_VERSION "5.15.2")
|
||||||
|
else ()
|
||||||
|
set (QT_MINIMUM_VERSION "6.4")
|
||||||
|
endif ()
|
||||||
|
|
||||||
find_package(Qt${QT_VERSION_MAJOR} ${QT_MINIMUM_VERSION} REQUIRED
|
find_package(Qt${QT_VERSION_MAJOR} ${QT_MINIMUM_VERSION} REQUIRED
|
||||||
COMPONENTS Widgets Svg SvgWidgets LinguistTools
|
COMPONENTS Widgets Svg LinguistTools
|
||||||
OPTIONAL_COMPONENTS DBus
|
OPTIONAL_COMPONENTS DBus
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if (${QT_VERSION_MAJOR} EQUAL "6")
|
||||||
|
find_package(Qt${QT_DEFAULT_MAJOR_VERSION} ${QT_MINIMUM_VERSION} CONFIG REQUIRED SvgWidgets)
|
||||||
|
endif ()
|
||||||
|
|
||||||
if (EXIV2_METADATA_SUPPORT)
|
if (EXIV2_METADATA_SUPPORT)
|
||||||
find_package(exiv2)
|
find_package(LibExiv2)
|
||||||
set_package_properties(exiv2 PROPERTIES
|
set_package_properties(LibExiv2 PROPERTIES
|
||||||
URL "https://www.exiv2.org"
|
URL "https://www.exiv2.org"
|
||||||
DESCRIPTION "image metadata support"
|
DESCRIPTION "image metadata support"
|
||||||
TYPE RECOMMENDED
|
TYPE OPTIONAL
|
||||||
PURPOSE "Bring better image metadata support"
|
PURPOSE "Bring better image metadata support"
|
||||||
)
|
)
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
|
#LibExiv2_FOUND
|
||||||
set (PPIC_CPP_FILES
|
set (PPIC_CPP_FILES
|
||||||
app/main.cpp
|
app/main.cpp
|
||||||
app/framelesswindow.cpp
|
app/framelesswindow.cpp
|
||||||
@ -54,8 +67,6 @@ set (PPIC_CPP_FILES
|
|||||||
app/metadatadialog.cpp
|
app/metadatadialog.cpp
|
||||||
app/exiv2wrapper.cpp
|
app/exiv2wrapper.cpp
|
||||||
app/playlistmanager.cpp
|
app/playlistmanager.cpp
|
||||||
app/shortcutedit.cpp
|
|
||||||
app/fileopeneventhandler.cpp
|
|
||||||
)
|
)
|
||||||
|
|
||||||
set (PPIC_HEADER_FILES
|
set (PPIC_HEADER_FILES
|
||||||
@ -75,8 +86,6 @@ set (PPIC_HEADER_FILES
|
|||||||
app/metadatadialog.h
|
app/metadatadialog.h
|
||||||
app/exiv2wrapper.h
|
app/exiv2wrapper.h
|
||||||
app/playlistmanager.h
|
app/playlistmanager.h
|
||||||
app/shortcutedit.h
|
|
||||||
app/fileopeneventhandler.h
|
|
||||||
)
|
)
|
||||||
|
|
||||||
set (PPIC_QRC_FILES
|
set (PPIC_QRC_FILES
|
||||||
@ -93,6 +102,8 @@ set (EXE_NAME ppic)
|
|||||||
file (GLOB PPIC_TS_FILES app/translations/*.ts)
|
file (GLOB PPIC_TS_FILES app/translations/*.ts)
|
||||||
set (PPIC_CPP_FILES_FOR_I18N ${PPIC_CPP_FILES})
|
set (PPIC_CPP_FILES_FOR_I18N ${PPIC_CPP_FILES})
|
||||||
|
|
||||||
|
qt_create_translation(PPIC_QM_FILES ${PPIC_CPP_FILES_FOR_I18N} ${PPIC_TS_FILES})
|
||||||
|
|
||||||
if (WIN32)
|
if (WIN32)
|
||||||
list(APPEND PPIC_RC_FILES assets/pineapple-pictures.rc)
|
list(APPEND PPIC_RC_FILES assets/pineapple-pictures.rc)
|
||||||
endif ()
|
endif ()
|
||||||
@ -102,38 +113,29 @@ add_executable (${EXE_NAME}
|
|||||||
${PPIC_CPP_FILES}
|
${PPIC_CPP_FILES}
|
||||||
${PPIC_QRC_FILES}
|
${PPIC_QRC_FILES}
|
||||||
${PPIC_RC_FILES}
|
${PPIC_RC_FILES}
|
||||||
|
${PPIC_QM_FILES}
|
||||||
)
|
)
|
||||||
|
|
||||||
set(ADD_TRANSLATIONS_ADDITIONAL_ARGS)
|
target_link_libraries (${EXE_NAME} Qt${QT_VERSION_MAJOR}::Widgets Qt${QT_VERSION_MAJOR}::Svg)
|
||||||
|
if (${QT_VERSION_MAJOR} EQUAL "6")
|
||||||
|
target_link_libraries (${EXE_NAME} Qt::SvgWidgets)
|
||||||
|
endif ()
|
||||||
|
|
||||||
if (Qt6_VERSION VERSION_GREATER_EQUAL "6.9.0")
|
if (LibExiv2_FOUND)
|
||||||
set(ADD_TRANSLATIONS_ADDITIONAL_ARGS MERGE_QT_TRANSLATIONS)
|
message(INFO ${LibExiv2_INCLUDE_DIRS})
|
||||||
endif()
|
target_include_directories(${EXE_NAME}
|
||||||
|
PRIVATE
|
||||||
if (TRANSLATION_RESOURCE_EMBEDDING)
|
${LibExiv2_INCLUDE_DIRS}
|
||||||
qt_add_translations(${EXE_NAME} ${ADD_TRANSLATIONS_ADDITIONAL_ARGS} TS_FILES ${PPIC_TS_FILES})
|
)
|
||||||
else()
|
|
||||||
qt_add_translations(${EXE_NAME} ${ADD_TRANSLATIONS_ADDITIONAL_ARGS} TS_FILES ${PPIC_TS_FILES} QM_FILES_OUTPUT_VARIABLE PPIC_QM_FILES)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
target_sources(${EXE_NAME} PRIVATE ${PPIC_QM_FILES})
|
|
||||||
|
|
||||||
target_link_libraries (${EXE_NAME} Qt${QT_VERSION_MAJOR}::Widgets Qt${QT_VERSION_MAJOR}::Svg Qt${QT_VERSION_MAJOR}::SvgWidgets)
|
|
||||||
|
|
||||||
if (exiv2_FOUND)
|
|
||||||
if(NOT TARGET Exiv2::exiv2lib AND TARGET exiv2lib)
|
|
||||||
# for exiv2 0.27.x and (macOS?) conan build
|
|
||||||
add_library(Exiv2::exiv2lib ALIAS exiv2lib)
|
|
||||||
endif()
|
|
||||||
target_link_libraries (${EXE_NAME}
|
target_link_libraries (${EXE_NAME}
|
||||||
Exiv2::exiv2lib
|
LibExiv2::LibExiv2
|
||||||
)
|
)
|
||||||
target_compile_definitions(${EXE_NAME} PRIVATE
|
target_compile_definitions(${EXE_NAME} PRIVATE
|
||||||
HAVE_EXIV2_VERSION="${exiv2_VERSION}"
|
HAVE_EXIV2_VERSION="${LibExiv2_VERSION}"
|
||||||
)
|
)
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
if (TARGET Qt6::DBus)
|
if (Qt5DBus_FOUND OR Qt6DBus_FOUND)
|
||||||
target_link_libraries (${EXE_NAME}
|
target_link_libraries (${EXE_NAME}
|
||||||
Qt${QT_VERSION_MAJOR}::DBus
|
Qt${QT_VERSION_MAJOR}::DBus
|
||||||
)
|
)
|
||||||
@ -144,6 +146,11 @@ endif()
|
|||||||
|
|
||||||
# Extra build settings
|
# Extra build settings
|
||||||
if (WIN32)
|
if (WIN32)
|
||||||
|
set_property (
|
||||||
|
TARGET ${EXE_NAME}
|
||||||
|
PROPERTY WIN32_EXECUTABLE true
|
||||||
|
)
|
||||||
|
|
||||||
target_compile_definitions(${EXE_NAME} PRIVATE
|
target_compile_definitions(${EXE_NAME} PRIVATE
|
||||||
FLAG_PORTABLE_MODE_SUPPORT=1
|
FLAG_PORTABLE_MODE_SUPPORT=1
|
||||||
)
|
)
|
||||||
@ -174,7 +181,6 @@ macro (ppic_set_version_via_describe _describe_long)
|
|||||||
endmacro ()
|
endmacro ()
|
||||||
|
|
||||||
# Version setup
|
# Version setup
|
||||||
target_compile_definitions(${EXE_NAME} PRIVATE PPIC_VERSION_STRING="${CMAKE_PROJECT_VERSION}")
|
|
||||||
if (EXISTS "${CMAKE_SOURCE_DIR}/.git")
|
if (EXISTS "${CMAKE_SOURCE_DIR}/.git")
|
||||||
find_package(Git)
|
find_package(Git)
|
||||||
set_package_properties(Git PROPERTIES TYPE OPTIONAL PURPOSE "Determine exact build version.")
|
set_package_properties(Git PROPERTIES TYPE OPTIONAL PURPOSE "Determine exact build version.")
|
||||||
@ -194,24 +200,8 @@ endif ()
|
|||||||
|
|
||||||
# Install settings
|
# Install settings
|
||||||
if (WIN32)
|
if (WIN32)
|
||||||
set_target_properties(${EXE_NAME} PROPERTIES
|
# TODO: try to avoid install to a "bin" subfolder under windows...
|
||||||
WIN32_EXECUTABLE TRUE
|
# when fixed, don't forget to update the CI config file...
|
||||||
)
|
|
||||||
elseif (APPLE)
|
|
||||||
set_source_files_properties(assets/icons/app-icon.icns PROPERTIES
|
|
||||||
MACOSX_PACKAGE_LOCATION "Resources"
|
|
||||||
)
|
|
||||||
target_sources(${EXE_NAME} PUBLIC assets/icons/app-icon.icns)
|
|
||||||
# See https://cmake.org/cmake/help/v3.15/prop_tgt/MACOSX_BUNDLE_INFO_PLIST.html
|
|
||||||
set_target_properties(${EXE_NAME} PROPERTIES
|
|
||||||
MACOSX_BUNDLE TRUE
|
|
||||||
MACOSX_BUNDLE_INFO_PLIST ${CMAKE_CURRENT_SOURCE_DIR}/dist/MacOSXBundleInfo.plist.in
|
|
||||||
MACOSX_BUNDLE_BUNDLE_NAME "Pineapple Pictures"
|
|
||||||
MACOSX_BUNDLE_GUI_IDENTIFIER net.blumia.pineapple-pictures
|
|
||||||
MACOSX_BUNDLE_ICON_FILE app-icon.icns # contains the .icns file name, *without* the path.
|
|
||||||
MACOSX_BUNDLE_BUNDLE_VERSION ${PROJECT_VERSION}
|
|
||||||
MACOSX_BUNDLE_SHORT_VERSION_STRING ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}
|
|
||||||
)
|
|
||||||
elseif (UNIX)
|
elseif (UNIX)
|
||||||
if (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
|
if (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
|
||||||
set(CMAKE_INSTALL_PREFIX /usr)
|
set(CMAKE_INSTALL_PREFIX /usr)
|
||||||
@ -238,7 +228,6 @@ elseif (UNIX)
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
set (INSTALL_TARGETS_DEFAULT_ARGS
|
set (INSTALL_TARGETS_DEFAULT_ARGS
|
||||||
BUNDLE DESTINATION .
|
|
||||||
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
||||||
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
||||||
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} COMPONENT Devel
|
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} COMPONENT Devel
|
||||||
@ -249,25 +238,19 @@ install (
|
|||||||
${INSTALL_TARGETS_DEFAULT_ARGS}
|
${INSTALL_TARGETS_DEFAULT_ARGS}
|
||||||
)
|
)
|
||||||
|
|
||||||
if (TRANSLATION_RESOURCE_EMBEDDING)
|
if (WIN32)
|
||||||
target_compile_definitions(${EXE_NAME}
|
|
||||||
PRIVATE TRANSLATION_RESOURCE_EMBEDDING
|
|
||||||
)
|
|
||||||
elseif (WIN32)
|
|
||||||
set (QM_FILE_INSTALL_DIR "${CMAKE_INSTALL_BINDIR}/translations")
|
set (QM_FILE_INSTALL_DIR "${CMAKE_INSTALL_BINDIR}/translations")
|
||||||
else()
|
else ()
|
||||||
set (QM_FILE_INSTALL_DIR "${CMAKE_INSTALL_FULL_DATADIR}/pineapple-pictures/translations")
|
set (QM_FILE_INSTALL_DIR "${CMAKE_INSTALL_FULL_DATADIR}/pineapple-pictures/translations")
|
||||||
target_compile_definitions(${EXE_NAME}
|
target_compile_definitions(${EXE_NAME}
|
||||||
PRIVATE QM_FILE_INSTALL_ABSOLUTE_DIR=${QM_FILE_INSTALL_DIR}
|
PRIVATE QM_FILE_INSTALL_DIR=${QM_FILE_INSTALL_DIR}
|
||||||
)
|
)
|
||||||
endif()
|
endif ()
|
||||||
|
|
||||||
if (DEFINED QM_FILE_INSTALL_DIR)
|
install (
|
||||||
install(
|
FILES ${PPIC_QM_FILES}
|
||||||
FILES ${PPIC_QM_FILES}
|
DESTINATION ${QM_FILE_INSTALL_DIR}
|
||||||
DESTINATION ${QM_FILE_INSTALL_DIR}
|
)
|
||||||
)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES FATAL_ON_MISSING_REQUIRED_PACKAGES)
|
feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES FATAL_ON_MISSING_REQUIRED_PACKAGES)
|
||||||
|
|
||||||
@ -283,7 +266,7 @@ elseif (APPLE)
|
|||||||
# ...
|
# ...
|
||||||
elseif (UNIX)
|
elseif (UNIX)
|
||||||
set (CPACK_SYSTEM_NAME "${CMAKE_SYSTEM_NAME}-${CMAKE_SYSTEM_PROCESSOR}")
|
set (CPACK_SYSTEM_NAME "${CMAKE_SYSTEM_NAME}-${CMAKE_SYSTEM_PROCESSOR}")
|
||||||
set (CPACK_DEBIAN_PACKAGE_SHLIBDEPS ON)
|
set (CPACK_DEBIAN_PACKAGE_SHILIBDEPS ON)
|
||||||
set (CPACK_DEBIAN_PACKAGE_RECOMMENDS "kimageformat-plugins")
|
set (CPACK_DEBIAN_PACKAGE_RECOMMENDS "kimageformat-plugins")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
2
LICENSE
2
LICENSE
@ -1,6 +1,6 @@
|
|||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
Copyright (c) 2025 BLumia
|
Copyright (c) 2020 BLumia
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
11
LICENSES/BSD-3-Clause.txt
Normal file
11
LICENSES/BSD-3-Clause.txt
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
Copyright (c) <year> <owner>.
|
||||||
|
|
||||||
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
||||||
|
|
||||||
|
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
||||||
|
|
||||||
|
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||||
|
|
||||||
|
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
|
||||||
|
|
||||||
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
154
NEWS
154
NEWS
@ -1,154 +0,0 @@
|
|||||||
Version 1.0.0
|
|
||||||
~~~~~~~~~~~~~
|
|
||||||
Released: 2025-05-03
|
|
||||||
|
|
||||||
Features:
|
|
||||||
* Support enforces windowed mode on start-up
|
|
||||||
* Reload image automatically when current image gets updated
|
|
||||||
|
|
||||||
Bugfixes:
|
|
||||||
* Display correct text language on macOS
|
|
||||||
|
|
||||||
Miscellaneous:
|
|
||||||
* Use native text for shortcut editor's label
|
|
||||||
* Display native commandline message when possible
|
|
||||||
* Merge Qt translations into app applications as well
|
|
||||||
|
|
||||||
Contributors:
|
|
||||||
Heimen Stoffels, albanobattistella, mmahhi
|
|
||||||
|
|
||||||
Version 0.9.2
|
|
||||||
~~~~~~~~~~~~~
|
|
||||||
Released: 2025-03-05
|
|
||||||
|
|
||||||
Bugfixes:
|
|
||||||
* Refer to the right exiv2 CMake module so it can be found on Linux
|
|
||||||
|
|
||||||
Miscellaneous:
|
|
||||||
* Convert DEP5 to REUSE.toml for better REUSE compliance
|
|
||||||
* Update translations
|
|
||||||
|
|
||||||
Contributors:
|
|
||||||
Pino Toscano, TamilNeram
|
|
||||||
|
|
||||||
Version 0.9.1
|
|
||||||
~~~~~~~~~~~~~
|
|
||||||
Released: 2025-01-25
|
|
||||||
|
|
||||||
Features:
|
|
||||||
* Option to double-click to fullscreen
|
|
||||||
* Build-time option to embed translation resources
|
|
||||||
|
|
||||||
Bugfixes:
|
|
||||||
* Fix window size not adjusted when open file on macOS
|
|
||||||
* Should center window according to available screen geometry
|
|
||||||
|
|
||||||
Miscellaneous:
|
|
||||||
* Change close window bahavior on macOS
|
|
||||||
* Update translations
|
|
||||||
|
|
||||||
Contributors:
|
|
||||||
albanobattistella, Sabri Ünal
|
|
||||||
|
|
||||||
Version 0.9.0
|
|
||||||
~~~~~~~~~~~~~
|
|
||||||
Released: 2024-12-08
|
|
||||||
|
|
||||||
Features:
|
|
||||||
* Support custom shortcuts for existing actions
|
|
||||||
* Actions for frame-by-frame animated image playback support
|
|
||||||
|
|
||||||
Miscellaneous:
|
|
||||||
* Initial macOS bundle support
|
|
||||||
* bump minimum required CMake version to 3.16
|
|
||||||
* Update translations
|
|
||||||
|
|
||||||
Contributors:
|
|
||||||
albanobattistella, VenusGirl, gallegonovato, Sabri Ünal
|
|
||||||
|
|
||||||
Version 0.8.2.1
|
|
||||||
~~~~~~~~~~~~~
|
|
||||||
Released: 2024-10-27
|
|
||||||
|
|
||||||
Bugfixes:
|
|
||||||
* Cannot load translations caused by a change in 0.8.2
|
|
||||||
|
|
||||||
Version 0.8.2
|
|
||||||
~~~~~~~~~~~~~
|
|
||||||
Released: 2024-10-26
|
|
||||||
|
|
||||||
Features:
|
|
||||||
* New option to allow use light-color checkerboard by default
|
|
||||||
|
|
||||||
Contributors:
|
|
||||||
albanobattistella, mmahhi, gallegonovato
|
|
||||||
|
|
||||||
Version 0.8.1
|
|
||||||
~~~~~~~~~~~~~
|
|
||||||
Released: 2024-08-25
|
|
||||||
|
|
||||||
Features:
|
|
||||||
* New command line option to list all supported formats
|
|
||||||
|
|
||||||
Contributors:
|
|
||||||
albanobattistella, mmahhi, ovl-1, gallegonovato, Oğuz Ersen
|
|
||||||
|
|
||||||
Version 0.8.0
|
|
||||||
~~~~~~~~~~~~~
|
|
||||||
Released: 2024-06-29
|
|
||||||
|
|
||||||
Features:
|
|
||||||
* Support move image file to trash
|
|
||||||
|
|
||||||
Contributors:
|
|
||||||
albanobattistella, mmahhi, gallegonovato, Oğuz Ersen
|
|
||||||
|
|
||||||
Version 0.7.4
|
|
||||||
~~~~~~~~~~~~~
|
|
||||||
Released: 2024-04-04
|
|
||||||
|
|
||||||
Features:
|
|
||||||
* Add some icons for corresponding menu actions
|
|
||||||
|
|
||||||
Contributors:
|
|
||||||
Reza Almanda, mmahhi, Oğuz Ersen, volkov, Сергій
|
|
||||||
|
|
||||||
Version 0.7.3
|
|
||||||
~~~~~~~~~~~~~
|
|
||||||
Released: 2023-10-24
|
|
||||||
|
|
||||||
Features:
|
|
||||||
* Add "Keep transformation" to menu
|
|
||||||
|
|
||||||
Contributors:
|
|
||||||
mmahhi, VenusGirl, albanobattistella, gallegonovato, Heimen Stoffels
|
|
||||||
|
|
||||||
Version 0.7.2
|
|
||||||
~~~~~~~~~~~~~
|
|
||||||
Released: 2023-08-27
|
|
||||||
|
|
||||||
Features:
|
|
||||||
* Add an option in setting dialog to tweak the High-DPI scaling rounding policy (might only works in Qt 6 build)
|
|
||||||
|
|
||||||
Bugfixes:
|
|
||||||
* Remove image size limit for Qt 6 build
|
|
||||||
* Fix application icon install location under Linux
|
|
||||||
|
|
||||||
Contributors:
|
|
||||||
Heimen Stoffels, Andrey, Dan, gallegonovato, albanobattistella, Sabri Ünal
|
|
||||||
|
|
||||||
Version 0.7.1
|
|
||||||
~~~~~~~~~~~~~
|
|
||||||
Released: 2023-07-08
|
|
||||||
|
|
||||||
Features:
|
|
||||||
* TIF and TIFF format files in the same folder will now be automatically added to the gallery
|
|
||||||
* Built-in window resizing now also supports Linux desktop. (macOS might also works as well)
|
|
||||||
|
|
||||||
Bugfixes:
|
|
||||||
* Settings dialog will automatedly use a suitable size instead of a hard-coded one
|
|
||||||
* Fix default configuration file location under Linux. (was `~/.config/config.ini`, now it's `~/.config/Pineapple Pictures/config.ini`)
|
|
||||||
|
|
||||||
Contributors:
|
|
||||||
yyc12345
|
|
||||||
|
|
142
README.md
142
README.md
@ -1,64 +1,78 @@
|
|||||||
Yet another image viewer.
|
Yet another image viewer.
|
||||||
|
|
||||||
|CI|Build Status|
|
|CI|Build Status|
|
||||||
|---|---|
|
|---|---|
|
||||||
|Windows Build|[](https://github.com/BLumia/pineapple-pictures/actions/workflows/windows.yml)|
|
|Windows Build|[](https://ci.appveyor.com/project/BLumia/pineapplepictures/branch/master)|
|
||||||
|macOS Build|[](https://github.com/BLumia/pineapple-pictures/actions/workflows/macos.yml)|
|
|macOS Build|[](https://github.com/BLumia/pineapple-pictures/actions/workflows/macos.yml)|
|
||||||
|Ubuntu Build|[](https://github.com/BLumia/pineapple-pictures/actions/workflows/ubuntu.yml)|
|
|Ubuntu Build|[](https://github.com/BLumia/pineapple-pictures/actions/workflows/ubuntu.yml)|
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
## Summary
|
## Summary
|
||||||
|
|
||||||
Pineapple Pictures is a lightweight image viewer that allows you view JPEG, PNG, GIF, SVG, PSD, KRA, XCF, TGA, HDR, AVIF and some other frequently used image formats files quickly and easily, and also provide a Stay-on-Top window setting that allows you pin the window so you can use it to pin a reference image at the top and then you can work with other software.
|
Pineapple Pictures is a lightweight image viewer that allows you view JPEG, PNG, GIF, SVG, PSD, KRA, XCF, TGA, AVIF and some other frequently used image formats files quickly and easily, and also provide a Stay-on-Top window setting that allows you pin the window so you can use it to pin a reference image at the top and then you can work with other software.
|
||||||
|
|
||||||
## Get it!
|
## Get it!
|
||||||
|
|
||||||
### Maintained by the original author
|
- [GitHub Release Page](https://github.com/BLumia/pineapple-pictures/releases)
|
||||||
|
- [SourceForge](https://sourceforge.net/projects/pineapple-pictures/)
|
||||||
- [GitHub Release Page](https://github.com/BLumia/pineapple-pictures/releases)
|
- Archlinux AUR: [pineapple-pictures](https://aur.archlinux.org/packages/pineapple-pictures/) | [pineapple-pictures-git](https://aur.archlinux.org/packages/pineapple-pictures-git/)
|
||||||
- [SourceForge](https://sourceforge.net/projects/pineapple-pictures/)
|
- Debian (since bullseye) or Ubuntu (since 21.04): `sudo apt install pineapple-pictures`
|
||||||
- Archlinux AUR: [pineapple-pictures](https://aur.archlinux.org/packages/pineapple-pictures/) | [pineapple-pictures-git](https://aur.archlinux.org/packages/pineapple-pictures-git/)
|
- [Itch.io Store](https://blumia.itch.io/pineapple-pictures)
|
||||||
- [Itch.io Store](https://blumia.itch.io/pineapple-pictures)
|
|
||||||
|
## Help Translation!
|
||||||
### Maintained by contributors / certain distro's package maintainers
|
|
||||||
|
[Translate this project on Weblate!](https://hosted.weblate.org/projects/pineapple-pictures/)
|
||||||
- Debian (since bullseye) or Ubuntu (since 21.04): `sudo apt install pineapple-pictures`
|
|
||||||
- Nix / NixOS: [pineapple-pictures](https://search.nixos.org/packages?channel=unstable&show=pineapple-pictures&from=0&size=50&sort=relevance&type=packages&query=pineapple-pictures) (maintained by @wineee)
|
## Build it manually:
|
||||||
|
|
||||||
## Help Translation!
|
Current state, we need:
|
||||||
|
|
||||||
[Translate this project on Weblate!](https://hosted.weblate.org/projects/pineapple-pictures/)
|
- `cmake`: as the build system.
|
||||||
|
- `qt5` with `qt5-svg` and `qt5-tools`: since the app is using Qt.
|
||||||
## Build it manually:
|
- `libexiv2`: able to display more image metadata. (optional, but recommended)
|
||||||
|
|
||||||
Current state, we need:
|
Then we can build it with any proper c++ compiler like g++ or msvc.
|
||||||
|
|
||||||
- `cmake`: as the build system.
|
Building it just requires normal cmake building steps:
|
||||||
- `qt6` with `qt6-svg` and `qt6-tools`: since the app is using Qt.
|
|
||||||
- `libexiv2`: able to display more image metadata. (optional, but recommended)
|
``` bash
|
||||||
|
$ mkdir build && cd build
|
||||||
Then we can build it with any proper c++ compiler like g++ or msvc.
|
$ cmake ..
|
||||||
|
$ cmake --build . # or simply using `make` if you are using Makefile as the cmake generator.
|
||||||
Building it just requires normal cmake building steps:
|
```
|
||||||
|
|
||||||
``` bash
|
After that, a `ppic` executable file will be available to use. You can also optionally install it by using the target `install` (or simply `make install` in case you are using Makefile). After the build process, you can also use `cpack` to make a package.
|
||||||
$ mkdir build && cd build
|
|
||||||
$ cmake ..
|
The project will try to build with `exiv2` when it's available at build time, if you would like to build the project without `exiv2`, pass `-DEXIV2_METADATA_SUPPORT=OFF` to `cmake`. The project will also not use `exiv2` if it's not found, the `EXIV2_METADATA_SUPPORT` option can be useful if you have `exiv2` but specifically don't want to use it.
|
||||||
$ cmake --build . # or simply using `make` if you are using Makefile as the cmake generator.
|
|
||||||
```
|
Image formats supports rely on Qt's imageformats plugins, just get the plugins you need from your distro's package manager will be fine. For Windows user, you may need build and install the imageformats plugin manually, read the content below.
|
||||||
|
|
||||||
After that, a `ppic` executable file will be available to use. You can also optionally install it by using the target `install` (or simply `make install` in case you are using Makefile). After the build process, you can also use `cpack` to make a package.
|
> **Note**
|
||||||
|
> Although there is a `pineapple-pictures.pro` file which can be used for QMake build, it's only for testing purpose and it doesn't have `exiv2` support included. Using QMake to build this project is NOT supported, please use CMake if possible.
|
||||||
The project will try to build with `exiv2` when it's available at build time, if you would like to build the project without `exiv2`, pass `-DEXIV2_METADATA_SUPPORT=OFF` to `cmake`. The project will also not use `exiv2` if it's not found, the `EXIV2_METADATA_SUPPORT` option can be useful if you have `exiv2` but specifically don't want to use it.
|
|
||||||
|
### Linux
|
||||||
Image formats supports rely on Qt's imageformats plugins, just get the plugins you need from your distro's package manager will be fine. For Windows user, you may need build and install the imageformats plugin manually, read the content below.
|
|
||||||
|
Just normal build process as other program will be fine. Nothing special ;)
|
||||||
It's possible to build it under Windows, Linux, macOS, and maybe other desktop platforms that Qt is ported to. For platform specific build instructions, please read the [related wiki page](https://github.com/BLumia/pineapple-pictures/wiki/Platform-Specific-Build-Instructions).
|
|
||||||
|
For Archlinux there are also a [PKGBUILD](https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=pineapple-pictures-git) you can use.
|
||||||
> [!NOTE]
|
|
||||||
> Although there is a `pineapple-pictures.pro` file which can be used for QMake build, it's only for testing purpose and it doesn't have `exiv2` support included. Using QMake to build this project is NOT supported, please use CMake if possible.
|
For packaging to debian-based distro, the `CMakeLists.txt` provides some cpack configurations for generating a `.deb` package. After the build process, use `cpack -G DEB` to generate the package. You can also take `.github/workflows/ubuntu.yml` as a reference.
|
||||||
|
|
||||||
## License
|
For this project, `DEB` is the only supported cpack generator in current state, feel free to submit a PR if you like improving `cpack` support for this project.
|
||||||
|
|
||||||
Pineapple Pictures as a whole is licensed under MIT license. Individual files may have a different, but compatible license.
|
### Windows
|
||||||
|
|
||||||
|
The normal build steps for Linux is also applied to Windows, but since Windows doesn't have a decent package manager, so if you need any other image formats support other than the supported formats which Qt provided, you need to get and build these imageformats plugins manually and vendor it. It's optional and can be skipped if you don't need extra image formats support.
|
||||||
|
|
||||||
|
For the Windows binary I provided, kimageformats plugin is used (for formats like kra, xcf, psd and etc.). You can take `appveyor.yml` as a reference to learn what I did when building the Windows binary.
|
||||||
|
|
||||||
|
[KDE Craft](https://community.kde.org/Craft) environment also can be used to build and package this program. I did also created a blueprint for building this project that you can found it at [here](https://github.com/BearKidsTeam/craft-shmooprint-bkt). It's not the way I used to create the release binary, but still worth trying.
|
||||||
|
|
||||||
|
### macOS
|
||||||
|
|
||||||
|
I don't have a mac, so no support at all. There is also a GitHub Action (see `.github/workflows/macos.yml`) running macOS build though so at least it can build. Feel free to submit a PR if you would like to give some love to the macOS build ;P
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
Pineapple Pictures as a whole is licensed under MIT license. Individual files may have a different, but compatible license.
|
||||||
|
143
README.zh_CN.md
143
README.zh_CN.md
@ -1,65 +1,78 @@
|
|||||||
简单轻量的跨平台看图工具。
|
简单轻量的跨平台看图工具。
|
||||||
|
|
||||||
|CI|构建状态|
|
|CI|构建状态|
|
||||||
|---|---|
|
|---|---|
|
||||||
|Windows Build|[](https://github.com/BLumia/pineapple-pictures/actions/workflows/windows.yml)|
|
|Windows Build|[](https://ci.appveyor.com/project/BLumia/pineapplepictures/branch/master)|
|
||||||
|macOS Build|[](https://github.com/BLumia/pineapple-pictures/actions/workflows/macos.yml)|
|
|macOS Build|[](https://github.com/BLumia/pineapple-pictures/actions/workflows/macos.yml)|
|
||||||
|Ubuntu Build|[](https://github.com/BLumia/pineapple-pictures/actions/workflows/ubuntu.yml)|
|
|Ubuntu Build|[](https://github.com/BLumia/pineapple-pictures/actions/workflows/ubuntu.yml)|
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
## 简介
|
## 简介
|
||||||
|
|
||||||
菠萝看图是一个轻量图像查看器,允许你简单快捷的查看 JPEG, PNG, GIF, SVG, PSD, KRA, XCF, TGA, HDR, AVIF 等常用格式的图像文件,并提供了置顶窗口的选项以便你在使用其它软件时也可以将参考图片固定在顶端。
|
菠萝看图是一个轻量图像查看器,允许你简单快捷的查看 JPEG, PNG, GIF, SVG, PSD, KRA, XCF, TGA, AVIF 等常用格式的图像文件,并提供了置顶窗口的选项以便你在使用其它软件时也可以将参考图片固定在顶端。
|
||||||
|
|
||||||
## 立即获取!
|
## 立即获取!
|
||||||
|
|
||||||
### 由原作者维护
|
- [GitHub Release 页面](https://github.com/BLumia/pineapple-pictures/releases) | [gitee 发布页面](https://gitee.com/blumia/pineapple-pictures/releases)
|
||||||
|
- [SourceForge](https://sourceforge.net/projects/pineapple-pictures/)
|
||||||
- [GitHub Release 页面](https://github.com/BLumia/pineapple-pictures/releases) | [gitee 发布页面](https://gitee.com/blumia/pineapple-pictures/releases)
|
- Archlinux AUR: [pineapple-pictures](https://aur.archlinux.org/packages/pineapple-pictures/) | [pineapple-pictures-git](https://aur.archlinux.org/packages/pineapple-pictures-git/)
|
||||||
- [SourceForge](https://sourceforge.net/projects/pineapple-pictures/)
|
- Debian (自 bullseye 起) 或 Ubuntu (自 21.04 起): `sudo apt install pineapple-pictures`
|
||||||
- Archlinux AUR: [pineapple-pictures](https://aur.archlinux.org/packages/pineapple-pictures/) | [pineapple-pictures-git](https://aur.archlinux.org/packages/pineapple-pictures-git/)
|
- [Itch.io 商店](https://blumia.itch.io/pineapple-pictures)
|
||||||
- [Itch.io 商店](https://blumia.itch.io/pineapple-pictures)
|
|
||||||
- Flatpak (于 FlatHub): [net.blumia.pineapple-pictures](https://flathub.org/apps/net.blumia.pineapple-pictures) *([我应当使用 flatpak 版吗?](https://github.com/BLumia/pineapple-pictures/wiki/Container%E2%80%90based-Packaging-Solutions-Support))*
|
## 帮助翻译!
|
||||||
|
|
||||||
### 由贡献者/对应发行版的打包人员维护
|
[在 Weblate 上帮助此项目翻译到更多语言!](https://hosted.weblate.org/projects/pineapple-pictures/)
|
||||||
|
|
||||||
- Debian (自 bullseye 起) 或 Ubuntu (自 21.04 起): `sudo apt install pineapple-pictures`
|
## 手动构建步骤:
|
||||||
- Nix / NixOS: [pineapple-pictures](https://search.nixos.org/packages?channel=unstable&show=pineapple-pictures&from=0&size=50&sort=relevance&type=packages&query=pineapple-pictures) (由 [@wineee](https://github.com/wineee) 维护)
|
|
||||||
|
当前状态,我们需要先确保如下依赖可用:
|
||||||
## 帮助翻译!
|
|
||||||
|
- `cmake`: 我们所使用的构建系统
|
||||||
[在 Weblate 上帮助此项目翻译到更多语言!](https://hosted.weblate.org/projects/pineapple-pictures/)
|
- 包含 `qt5-svg` 与 `qt5-tools` 组件的 `qt5`: 此应用基于 Qt
|
||||||
|
- `libexiv2`: 用以获取和显示更多的图像元信息(可选,推荐)
|
||||||
## 手动构建步骤:
|
|
||||||
|
然后我们就可以使用任何常规的 c++ 编译器如 g++ 或 msvc 来进行构建了
|
||||||
当前状态,我们需要先确保如下依赖可用:
|
|
||||||
|
构建过程就是常规的 CMake 应用构建过程:
|
||||||
- `cmake`: 我们所使用的构建系统
|
|
||||||
- 包含 `qt6-svg` 与 `qt6-tools` 组件的 `qt6`: 此应用基于 Qt
|
``` bash
|
||||||
- `libexiv2`: 用以获取和显示更多的图像元信息(可选,推荐)
|
$ mkdir build && cd build
|
||||||
|
$ cmake ..
|
||||||
然后我们就可以使用任何常规的 c++ 编译器如 g++ 或 msvc 来进行构建了
|
$ cmake --build . # 如果你使用 Makefile 作为 CMake 生成器,也可以直接简单的使用 `make`
|
||||||
|
```
|
||||||
构建过程就是常规的 CMake 应用构建过程:
|
|
||||||
|
完毕后,一个名为 `ppic` 的可执行程序即会被生成以供使用。您也可以选择通过使用 CMake 生成的 `install` 目标继续将其安装到您的设备上(假设您使用 Makefile,即可执行 `make install` 来进行安装)。构建步骤完毕后,您也可以使用 `cpack` 来对应用程序进行打包。
|
||||||
``` bash
|
|
||||||
$ mkdir build && cd build
|
当 `exiv2` 在构建时可用时,此项目将尝试使用其进行构建,若您不希望使用 `exiv2`,请传递 `-DEXIV2_METADATA_SUPPORT=OFF` 参数给 `cmake`。此项目在找不到 `exiv2` 时并不会使用 `exiv2`,`EXIV2_METADATA_SUPPORT` 选项可供尽管存在可用的 `exiv2` 但您明确不希望启用其支持时使用。
|
||||||
$ cmake ..
|
|
||||||
$ cmake --build . # 如果你使用 Makefile 作为 CMake 生成器,也可以直接简单的使用 `make`
|
此应用的图片格式支持依赖于 Qt 的 imageformats 插件,直接从您所用的发行版获取对应的图像格式插件即可。对于 Windows 用户,您可能需要手动构建和使用图像格式插件。下方给出了进一步的说明。
|
||||||
```
|
|
||||||
|
> **Note**
|
||||||
完毕后,一个名为 `ppic` 的可执行程序即会被生成以供使用。您也可以选择通过使用 CMake 生成的 `install` 目标继续将其安装到您的设备上(假设您使用 Makefile,即可执行 `make install` 来进行安装)。构建步骤完毕后,您也可以使用 `cpack` 来对应用程序进行打包。
|
> 尽管存在一个可用于 QMake 构建的 `pineapple-pictures.pro` 文件,但其仅供简单测试所用且其并不包含 `exiv2` 支持。使用 QMake 构建此项目是 **不受支持** 的,请尽可能考虑使用 CMake。
|
||||||
|
|
||||||
当 `exiv2` 在构建时可用时,此项目将尝试使用其进行构建,若您不希望使用 `exiv2`,请传递 `-DEXIV2_METADATA_SUPPORT=OFF` 参数给 `cmake`。此项目在找不到 `exiv2` 时并不会使用 `exiv2`,`EXIV2_METADATA_SUPPORT` 选项可供尽管存在可用的 `exiv2` 但您明确不希望启用其支持时使用。
|
### Linux
|
||||||
|
|
||||||
此应用的图片格式支持依赖于 Qt 的 imageformats 插件,直接从您所用的发行版获取对应的图像格式插件即可。对于 Windows 用户,您可能需要手动构建和使用图像格式插件。下方给出了进一步的说明。
|
常规的构建步骤即可完成构建,不需要额外的处理步骤 ;)
|
||||||
|
|
||||||
在 Windows、Linux 以及 macOS 系统均可构建此应用,其它有移植 Qt 支持的平台也可能可以进行构建。若要了解一些平台相关的构建指引,请参阅[相关的 Wiki 页面](https://github.com/BLumia/pineapple-pictures/wiki/Platform-Specific-Build-Instructions)。
|
对于 Archlinux 发行版的用户,这里还有一个 [PKGBUILD](https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=pineapple-pictures-git) 可供使用和参考。
|
||||||
|
|
||||||
> [!NOTE]
|
对于在基于 debian 的发行版中进行打包的需求, `CMakeLists.txt` 已经提供了一些基本的 cpack 配置以便生成一个有效的 `.deb` 软件包。在构建步骤完毕后,使用 `cpack -G DEB` 即可生成 DEB 软件包。您也可以参考 `.github/workflows/ubuntu.yml` 来查看当前正在使用的 CI 配置是如何进行打包的。
|
||||||
> 尽管存在一个可用于 QMake 构建的 `pineapple-pictures.pro` 文件,但其仅供简单测试所用且其并不包含 `exiv2` 支持。使用 QMake 构建此项目是 **不受支持** 的,请尽可能考虑使用 CMake。
|
|
||||||
|
目前,`DEB` 是当前唯一受到直接支持的 cpack 生成目标。若希望为此项目添加其它的 cpack 目标支持,欢迎发起合并请求。
|
||||||
## 许可协议
|
|
||||||
|
### Windows
|
||||||
菠萝看图整体使用 MIT 协议进行发布。项目所随的部分源文件可能具备不同但与之兼容的许可协议。
|
|
||||||
|
上述的构建步骤在 Windows 中也适用,但由于 Windows 中不具备类如大多 Linux 发行版中所提供的方便的软件包管理机制,故如果您需要任何 Qt 官方支持之外的图像格式例如 psd,xcf,kra 等格式的支持,你就可能需要自行获取并构建对应的 imageformats 插件,并在您最终生成的可执行文件中一并提供这些插件。若您不需要这些额外的图像格式支持,这个步骤也可以直接跳过。
|
||||||
|
|
||||||
|
我们所提供的预编译好的 Windows 程序包含了 kimageformats 插件来提供额外(kra, xcf, psd 等)格式的支持。您可以参考 `appveyor.yml` 来查看我们是如何构建并打包 Windows 可执行程序的。
|
||||||
|
|
||||||
|
[KDE Craft](https://community.kde.org/Craft) 环境也可以被用来构建此应用程序。我也创建了一个蓝图来进行此项目的构建和打包,可参见[这里](https://github.com/BearKidsTeam/craft-shmooprint-bkt)。尽管这不是我用于构建发布二进制所使用的方案,但仍值得一试。
|
||||||
|
|
||||||
|
### macOS
|
||||||
|
|
||||||
|
由于我没有 mac 设备,故 macOS 暂时不受任何支持。不过我们目前有一个 GitHub Action 来执行 macOS 环境下的构建(见 `.github/workflows/macos.yml`)所以至少 macOS 下是可以顺利进行构建的。如果您想完善对 macOS 的支持,也欢迎您创建合并请求 ;P
|
||||||
|
|
||||||
|
## 许可协议
|
||||||
|
|
||||||
|
菠萝看图整体使用 MIT 协议进行发布。项目所随的部分源文件可能具备不同但与之兼容的许可协议。
|
||||||
|
33
REUSE.toml
33
REUSE.toml
@ -1,33 +0,0 @@
|
|||||||
version = 1
|
|
||||||
SPDX-PackageName = "Pineapple Pictures"
|
|
||||||
SPDX-PackageDownloadLocation = "https://github.com/BLumia/pineapple-pictures"
|
|
||||||
|
|
||||||
[[annotations]]
|
|
||||||
path = [".gitignore", "appveyor.yml", ".github/**"]
|
|
||||||
precedence = "aggregate"
|
|
||||||
SPDX-FileCopyrightText = "None"
|
|
||||||
SPDX-License-Identifier = "CC0-1.0"
|
|
||||||
|
|
||||||
[[annotations]]
|
|
||||||
path = ["README**.md", "NEWS", "assets/**.rc", "assets/**.qrc", "dist/**"]
|
|
||||||
precedence = "aggregate"
|
|
||||||
SPDX-FileCopyrightText = "None"
|
|
||||||
SPDX-License-Identifier = "CC0-1.0"
|
|
||||||
|
|
||||||
[[annotations]]
|
|
||||||
path = ["app/translations/**.ts", "assets/plain/translators.html"]
|
|
||||||
precedence = "aggregate"
|
|
||||||
SPDX-FileCopyrightText = "Translators from hosted.weblate.org"
|
|
||||||
SPDX-License-Identifier = "MIT"
|
|
||||||
|
|
||||||
[[annotations]]
|
|
||||||
path = "assets/icons/**.svg"
|
|
||||||
precedence = "aggregate"
|
|
||||||
SPDX-FileCopyrightText = "2022 Gary Wang"
|
|
||||||
SPDX-License-Identifier = "MIT"
|
|
||||||
|
|
||||||
[[annotations]]
|
|
||||||
path = "assets/icons/app-icon.**"
|
|
||||||
precedence = "aggregate"
|
|
||||||
SPDX-FileCopyrightText = "2020 Lovelyblack"
|
|
||||||
SPDX-License-Identifier = "MIT"
|
|
@ -14,8 +14,6 @@
|
|||||||
#include <QPushButton>
|
#include <QPushButton>
|
||||||
#include <QFile>
|
#include <QFile>
|
||||||
|
|
||||||
using namespace Qt::Literals::StringLiterals;
|
|
||||||
|
|
||||||
AboutDialog::AboutDialog(QWidget *parent)
|
AboutDialog::AboutDialog(QWidget *parent)
|
||||||
: QDialog(parent)
|
: QDialog(parent)
|
||||||
, m_tabWidget(new QTabWidget)
|
, m_tabWidget(new QTabWidget)
|
||||||
@ -29,60 +27,53 @@ AboutDialog::AboutDialog(QWidget *parent)
|
|||||||
this->setWindowTitle(tr("About"));
|
this->setWindowTitle(tr("About"));
|
||||||
|
|
||||||
const QStringList helpStr {
|
const QStringList helpStr {
|
||||||
u"<p>%1</p>"_s.arg(tr("Launch application with image file path as argument to load the file.")),
|
QStringLiteral("<p>%1</p>").arg(tr("Launch application with image file path as argument to load the file.")),
|
||||||
u"<p>%1</p>"_s.arg(tr("Drag and drop image file onto the window is also supported.")),
|
QStringLiteral("<p>%1</p>").arg(tr("Drag and drop image file onto the window is also supported.")),
|
||||||
u"<p>%1</p>"_s.arg(tr("None of the operations in this application will alter the pictures on disk.")),
|
QStringLiteral("<p>%1</p>").arg(tr("None of the operations in this application will alter the pictures on disk.")),
|
||||||
u"<p>%1</p>"_s.arg(tr("Context menu option explanation:")),
|
QStringLiteral("<p>%1</p>").arg(tr("Context menu option explanation:")),
|
||||||
u"<ul>"_s,
|
QStringLiteral("<ul>"),
|
||||||
// blumia: Chain two arg() here since it seems lupdate will remove one of them if we use
|
// blumia: Chain two arg() here since it seems lupdate will remove one of them if we use
|
||||||
// the old `arg(QCoreApp::translate(), tr())` way, but it's worth to mention
|
// the old `arg(QCoreApp::translate(), tr())` way, but it's worth to mention
|
||||||
// `arg(QCoreApp::translate(), this->tr())` works, but lupdate will complain about the usage.
|
// `arg(QCoreApp::translate(), this->tr())` works, but lupdate will complain about the usage.
|
||||||
u"<li><b>%1</b>:<br/>%2</li>"_s
|
QStringLiteral("<li><b>%1</b>:<br/>%2</li>")
|
||||||
.arg(QCoreApplication::translate("MainWindow", "Stay on top"))
|
.arg(QCoreApplication::translate("MainWindow", "Stay on top"))
|
||||||
.arg(tr("Make window stay on top of all other windows.")),
|
.arg(tr("Make window stay on top of all other windows.")),
|
||||||
u"<li><b>%1</b>:<br/>%2</li>"_s
|
QStringLiteral("<li><b>%1</b>:<br/>%2</li>")
|
||||||
.arg(QCoreApplication::translate("MainWindow", "Protected mode"))
|
.arg(QCoreApplication::translate("MainWindow", "Protected mode"))
|
||||||
.arg(tr("Avoid close window accidentally. (eg. by double clicking the window)")),
|
.arg(tr("Avoid close window accidentally. (eg. by double clicking the window)")),
|
||||||
u"<li><b>%1</b>:<br/>%2</li>"_s
|
QStringLiteral("</ul>")
|
||||||
.arg(QCoreApplication::translate("MainWindow", "Keep transformation", "The 'transformation' means the flip/rotation status that currently applied to the image view"))
|
|
||||||
.arg(tr("Avoid resetting the zoom/rotation/flip state that was applied to the image view when switching between images.")),
|
|
||||||
u"</ul>"_s
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const QStringList aboutStr {
|
const QStringList aboutStr {
|
||||||
u"<center><img width='128' height='128' src=':/icons/app-icon.svg'/><br/>"_s,
|
QStringLiteral("<center><img width='128' height='128' src=':/icons/app-icon.svg'/><br/>"),
|
||||||
qApp->applicationDisplayName(),
|
qApp->applicationDisplayName(),
|
||||||
(u"<br/>"_s + tr("Version: %1").arg(
|
|
||||||
#ifdef GIT_DESCRIBE_VERSION_STRING
|
#ifdef GIT_DESCRIBE_VERSION_STRING
|
||||||
GIT_DESCRIBE_VERSION_STRING
|
(QStringLiteral("<br/>") + tr("Version: %1").arg(GIT_DESCRIBE_VERSION_STRING)),
|
||||||
#else
|
|
||||||
qApp->applicationVersion()
|
|
||||||
#endif // GIT_DESCRIBE_VERSION_STRING
|
#endif // GIT_DESCRIBE_VERSION_STRING
|
||||||
)),
|
QStringLiteral("<hr/>"),
|
||||||
u"<hr/>"_s,
|
|
||||||
tr("Copyright (c) %1 %2", "%1 is year, %2 is the name of copyright holder(s)")
|
tr("Copyright (c) %1 %2", "%1 is year, %2 is the name of copyright holder(s)")
|
||||||
.arg(u"2025"_s, u"<a href='https://github.com/BLumia'>@BLumia</a>"_s),
|
.arg(QStringLiteral("2023"), QStringLiteral("<a href='https://github.com/BLumia'>@BLumia</a>")),
|
||||||
u"<br/>"_s,
|
QStringLiteral("<br/>"),
|
||||||
tr("Logo designed by %1").arg(u"<a href='https://github.com/Lovelyblack'>@Lovelyblack</a>"_s),
|
tr("Logo designed by %1").arg(QStringLiteral("<a href='https://github.com/Lovelyblack'>@Lovelyblack</a>")),
|
||||||
u"<hr/>"_s,
|
QStringLiteral("<hr/>"),
|
||||||
tr("Built with Qt %1 (%2)").arg(QT_VERSION_STR, QSysInfo::buildCpuArchitecture()),
|
tr("Built with Qt %1 (%2)").arg(QT_VERSION_STR, QSysInfo::buildCpuArchitecture()),
|
||||||
QStringLiteral("<br/><a href='%1'>%2</a>").arg("https://github.com/BLumia/pineapple-pictures", tr("Source code")),
|
QStringLiteral("<br/><a href='%1'>%2</a>").arg("https://github.com/BLumia/pineapple-pictures", tr("Source code")),
|
||||||
u"</center>"_s
|
QStringLiteral("</center>")
|
||||||
};
|
};
|
||||||
|
|
||||||
QFile translaterHtml(u":/plain/translators.html"_s);
|
QFile translaterHtml(":/plain/translators.html");
|
||||||
bool canOpenFile = translaterHtml.open(QIODevice::ReadOnly);
|
bool canOpenFile = translaterHtml.open(QIODevice::ReadOnly);
|
||||||
const QByteArray & translatorList = canOpenFile ? translaterHtml.readAll() : QByteArrayLiteral("");
|
const QByteArray & translatorList = canOpenFile ? translaterHtml.readAll() : "";
|
||||||
|
|
||||||
const QStringList specialThanksStr {
|
const QStringList specialThanksStr {
|
||||||
u"<h1 align='center'>%1</h1><a href='%2'>%3</a><p>%4</p>"_s.arg(
|
QStringLiteral("<h1 align='center'>%1</h1><a href='%2'>%3</a><p>%4</p>").arg(
|
||||||
tr("Contributors"),
|
tr("Contributors"),
|
||||||
u"https://github.com/BLumia/pineapple-pictures/graphs/contributors"_s,
|
QStringLiteral("https://github.com/BLumia/pineapple-pictures/graphs/contributors"),
|
||||||
tr("List of contributors on GitHub"),
|
tr("List of contributors on GitHub"),
|
||||||
tr("Thanks to all people who contributed to this project.")
|
tr("Thanks to all people who contributed to this project.")
|
||||||
),
|
),
|
||||||
|
|
||||||
u"<h1 align='center'>%1</h1><p>%2</p>%3"_s.arg(
|
QStringLiteral("<h1 align='center'>%1</h1><p>%2</p>%3").arg(
|
||||||
tr("Translators"),
|
tr("Translators"),
|
||||||
tr("I would like to thank the following people who volunteered to translate this application."),
|
tr("I would like to thank the following people who volunteered to translate this application."),
|
||||||
translatorList
|
translatorList
|
||||||
@ -90,22 +81,22 @@ AboutDialog::AboutDialog(QWidget *parent)
|
|||||||
};
|
};
|
||||||
|
|
||||||
const QStringList licenseStr {
|
const QStringList licenseStr {
|
||||||
u"<h1 align='center'><b>%1</b></h1>"_s.arg(tr("Your Rights")),
|
QStringLiteral("<h1 align='center'><b>%1</b></h1>").arg(tr("Your Rights")),
|
||||||
u"<p>%1</p><p>%2</p><ul><li>%3</li><li>%4</li><li>%5</li><li>%6</li></ul>"_s.arg(
|
QStringLiteral("<p>%1</p><p>%2</p><ul><li>%3</li><li>%4</li><li>%5</li><li>%6</li></ul>").arg(
|
||||||
tr("%1 is released under the MIT License."), // %1
|
tr("%1 is released under the MIT License."), // %1
|
||||||
tr("This license grants people a number of freedoms:"), // %2
|
tr("This license grants people a number of freedoms:"), // %2
|
||||||
tr("You are free to use %1, for any purpose"), // %3
|
tr("You are free to use %1, for any purpose"), // %3
|
||||||
tr("You are free to distribute %1"), // %4
|
tr("You are free to distribute %1"), // %4
|
||||||
tr("You can study how %1 works and change it"), // %5
|
tr("You can study how %1 works and change it"), // %5
|
||||||
tr("You can distribute changed versions of %1") // %6
|
tr("You can distribute changed versions of %1") // %6
|
||||||
).arg(u"<i>%1</i>"_s),
|
).arg(QStringLiteral("<i>%1</i>")),
|
||||||
u"<p>%1</p>"_s.arg(tr("The MIT license guarantees you this freedom. Nobody is ever permitted to take it away.")),
|
QStringLiteral("<p>%1</p>").arg(tr("The MIT license guarantees you this freedom. Nobody is ever permitted to take it away.")),
|
||||||
u"<hr/><pre>%2</pre>"_s
|
QStringLiteral("<hr/><pre>%2</pre>")
|
||||||
};
|
};
|
||||||
|
|
||||||
const QString mitLicense(QStringLiteral(R"(Expat/MIT License
|
const QString mitLicense(QStringLiteral(R"(Expat/MIT License
|
||||||
|
|
||||||
Copyright (c) 2025 BLumia
|
Copyright (c) 2023 BLumia
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
@ -127,14 +118,14 @@ SOFTWARE.
|
|||||||
)"));
|
)"));
|
||||||
|
|
||||||
const QStringList thirdPartyLibsStr {
|
const QStringList thirdPartyLibsStr {
|
||||||
u"<h1 align='center'><b>%1</b></h1>"_s.arg(tr("Third-party Libraries used by %1")),
|
QStringLiteral("<h1 align='center'><b>%1</b></h1>").arg(tr("Third-party Libraries used by %1")),
|
||||||
tr("%1 is built on the following free software libraries:", "Free as in freedom"),
|
tr("%1 is built on the following free software libraries:", "Free as in freedom"),
|
||||||
u"<ul>"_s,
|
QStringLiteral("<ul>"),
|
||||||
#ifdef HAVE_EXIV2_VERSION
|
#ifdef HAVE_EXIV2_VERSION
|
||||||
u"<li><a href='%1'>%2</a>: %3</li>"_s.arg("https://www.exiv2.org/", "Exiv2", "GPLv2"),
|
QStringLiteral("<li><a href='%1'>%2</a>: %3</li>").arg("https://www.exiv2.org/", "Exiv2", "GPLv2"),
|
||||||
#endif // EXIV2_VERSION
|
#endif // EXIV2_VERSION
|
||||||
u"<li><a href='%1'>%2</a>: %3</li>"_s.arg("https://www.qt.io/", "Qt", "GPLv2 + GPLv3 + LGPLv2.1 + LGPLv3"),
|
QStringLiteral("<li><a href='%1'>%2</a>: %3</li>").arg("https://www.qt.io/", "Qt", "GPLv2 + GPLv3 + LGPLv2.1 + LGPLv3"),
|
||||||
u"</ul>"_s
|
QStringLiteral("</ul>")
|
||||||
};
|
};
|
||||||
|
|
||||||
m_helpTextEdit->setText(helpStr.join('\n'));
|
m_helpTextEdit->setText(helpStr.join('\n'));
|
||||||
@ -147,7 +138,7 @@ SOFTWARE.
|
|||||||
|
|
||||||
m_licenseTextEdit->setText(licenseStr.join('\n').arg(qApp->applicationDisplayName(), mitLicense));
|
m_licenseTextEdit->setText(licenseStr.join('\n').arg(qApp->applicationDisplayName(), mitLicense));
|
||||||
|
|
||||||
m_3rdPartyLibsTextEdit->setText(thirdPartyLibsStr.join('\n').arg(u"<i>%1</i>"_s).arg(qApp->applicationDisplayName()));
|
m_3rdPartyLibsTextEdit->setText(thirdPartyLibsStr.join('\n').arg(QStringLiteral("<i>%1</i>").arg(qApp->applicationDisplayName())));
|
||||||
m_3rdPartyLibsTextEdit->setOpenExternalLinks(true);
|
m_3rdPartyLibsTextEdit->setOpenExternalLinks(true);
|
||||||
|
|
||||||
m_tabWidget->addTab(m_helpTextEdit, tr("&Help"));
|
m_tabWidget->addTab(m_helpTextEdit, tr("&Help"));
|
||||||
|
@ -16,6 +16,16 @@
|
|||||||
#define ACTION_NAME(s) QStringLiteral(STRIFY(s))
|
#define ACTION_NAME(s) QStringLiteral(STRIFY(s))
|
||||||
#define STRIFY(s) #s
|
#define STRIFY(s) #s
|
||||||
|
|
||||||
|
ActionManager::ActionManager()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
ActionManager::~ActionManager()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
QIcon ActionManager::loadHidpiIcon(const QString &resp, QSize sz)
|
QIcon ActionManager::loadHidpiIcon(const QString &resp, QSize sz)
|
||||||
{
|
{
|
||||||
QSvgRenderer r(resp);
|
QSvgRenderer r(resp);
|
||||||
@ -29,10 +39,10 @@ QIcon ActionManager::loadHidpiIcon(const QString &resp, QSize sz)
|
|||||||
|
|
||||||
void ActionManager::setupAction(MainWindow *mainWindow)
|
void ActionManager::setupAction(MainWindow *mainWindow)
|
||||||
{
|
{
|
||||||
auto create_action = [] (QWidget *w, QAction **a, QString i, QString an, bool iconFromTheme = false) {
|
auto create_action = [] (QWidget *w, QAction **a, QString i, QString an) {
|
||||||
*a = new QAction(w);
|
*a = new QAction(w);
|
||||||
if (!i.isNull())
|
if (!i.isNull())
|
||||||
(*a)->setIcon(iconFromTheme ? QIcon::fromTheme(i) : ActionManager::loadHidpiIcon(i));
|
(*a)->setIcon(ActionManager::loadHidpiIcon(i));
|
||||||
(*a)->setObjectName(an);
|
(*a)->setObjectName(an);
|
||||||
w->addAction(*a);
|
w->addAction(*a);
|
||||||
};
|
};
|
||||||
@ -46,32 +56,25 @@ void ActionManager::setupAction(MainWindow *mainWindow)
|
|||||||
#undef CREATE_NEW_ICON_ACTION
|
#undef CREATE_NEW_ICON_ACTION
|
||||||
|
|
||||||
#define CREATE_NEW_ACTION(w, a) create_action(w, &a, QString(), ACTION_NAME(a))
|
#define CREATE_NEW_ACTION(w, a) create_action(w, &a, QString(), ACTION_NAME(a))
|
||||||
#define CREATE_NEW_THEMEICON_ACTION(w, a, i) create_action(w, &a, QLatin1String(STRIFY(i)), ACTION_NAME(a), true)
|
|
||||||
CREATE_NEW_ACTION(mainWindow, actionRotateCounterClockwise);
|
|
||||||
CREATE_NEW_ACTION(mainWindow, actionPrevPicture);
|
CREATE_NEW_ACTION(mainWindow, actionPrevPicture);
|
||||||
CREATE_NEW_ACTION(mainWindow, actionNextPicture);
|
CREATE_NEW_ACTION(mainWindow, actionNextPicture);
|
||||||
|
|
||||||
CREATE_NEW_ACTION(mainWindow, actionTogglePauseAnimation);
|
CREATE_NEW_ACTION(mainWindow, actionOpen);
|
||||||
CREATE_NEW_ACTION(mainWindow, actionAnimationNextFrame);
|
|
||||||
|
|
||||||
CREATE_NEW_THEMEICON_ACTION(mainWindow, actionOpen, document-open);
|
|
||||||
CREATE_NEW_ACTION(mainWindow, actionHorizontalFlip);
|
CREATE_NEW_ACTION(mainWindow, actionHorizontalFlip);
|
||||||
CREATE_NEW_ACTION(mainWindow, actionFitInView);
|
CREATE_NEW_ACTION(mainWindow, actionFitInView);
|
||||||
CREATE_NEW_ACTION(mainWindow, actionFitByWidth);
|
CREATE_NEW_ACTION(mainWindow, actionFitByWidth);
|
||||||
CREATE_NEW_THEMEICON_ACTION(mainWindow, actionCopyPixmap, edit-copy);
|
CREATE_NEW_ACTION(mainWindow, actionCopyPixmap);
|
||||||
CREATE_NEW_ACTION(mainWindow, actionCopyFilePath);
|
CREATE_NEW_ACTION(mainWindow, actionCopyFilePath);
|
||||||
CREATE_NEW_THEMEICON_ACTION(mainWindow, actionPaste, edit-paste);
|
CREATE_NEW_ACTION(mainWindow, actionPaste);
|
||||||
CREATE_NEW_THEMEICON_ACTION(mainWindow, actionTrash, edit-delete);
|
|
||||||
CREATE_NEW_ACTION(mainWindow, actionToggleStayOnTop);
|
CREATE_NEW_ACTION(mainWindow, actionToggleStayOnTop);
|
||||||
CREATE_NEW_ACTION(mainWindow, actionToggleProtectMode);
|
CREATE_NEW_ACTION(mainWindow, actionToggleProtectMode);
|
||||||
CREATE_NEW_ACTION(mainWindow, actionToggleAvoidResetTransform);
|
CREATE_NEW_ACTION(mainWindow, actionToggleAvoidResetTransform);
|
||||||
CREATE_NEW_ACTION(mainWindow, actionSettings);
|
CREATE_NEW_ACTION(mainWindow, actionSettings);
|
||||||
CREATE_NEW_THEMEICON_ACTION(mainWindow, actionHelp, system-help);
|
CREATE_NEW_ACTION(mainWindow, actionHelp);
|
||||||
CREATE_NEW_THEMEICON_ACTION(mainWindow, actionLocateInFileManager, system-file-manager);
|
CREATE_NEW_ACTION(mainWindow, actionLocateInFileManager);
|
||||||
CREATE_NEW_THEMEICON_ACTION(mainWindow, actionProperties, document-properties);
|
CREATE_NEW_ACTION(mainWindow, actionProperties);
|
||||||
CREATE_NEW_ACTION(mainWindow, actionQuitApp);
|
CREATE_NEW_ACTION(mainWindow, actionQuitApp);
|
||||||
#undef CREATE_NEW_ACTION
|
#undef CREATE_NEW_ACTION
|
||||||
#undef CREATE_NEW_THEMEICON_ACTION
|
|
||||||
|
|
||||||
retranslateUi(mainWindow);
|
retranslateUi(mainWindow);
|
||||||
|
|
||||||
@ -90,24 +93,19 @@ void ActionManager::retranslateUi(MainWindow *mainWindow)
|
|||||||
actionZoomOut->setText(QCoreApplication::translate("MainWindow", "Zoom out", nullptr));
|
actionZoomOut->setText(QCoreApplication::translate("MainWindow", "Zoom out", nullptr));
|
||||||
actionToggleCheckerboard->setText(QCoreApplication::translate("MainWindow", "Toggle Checkerboard", nullptr));
|
actionToggleCheckerboard->setText(QCoreApplication::translate("MainWindow", "Toggle Checkerboard", nullptr));
|
||||||
actionRotateClockwise->setText(QCoreApplication::translate("MainWindow", "Rotate right", nullptr));
|
actionRotateClockwise->setText(QCoreApplication::translate("MainWindow", "Rotate right", nullptr));
|
||||||
actionRotateCounterClockwise->setText(QCoreApplication::translate("MainWindow", "Rotate left", nullptr));
|
|
||||||
|
|
||||||
actionPrevPicture->setText(QCoreApplication::translate("MainWindow", "Previous image", nullptr));
|
actionPrevPicture->setText(QCoreApplication::translate("MainWindow", "Previous image", nullptr));
|
||||||
actionNextPicture->setText(QCoreApplication::translate("MainWindow", "Next image", nullptr));
|
actionNextPicture->setText(QCoreApplication::translate("MainWindow", "Next image", nullptr));
|
||||||
|
|
||||||
actionTogglePauseAnimation->setText(QCoreApplication::translate("MainWindow", "Pause/Resume Animation", nullptr));
|
|
||||||
actionAnimationNextFrame->setText(QCoreApplication::translate("MainWindow", "Animation Go to Next Frame", nullptr));
|
|
||||||
|
|
||||||
actionHorizontalFlip->setText(QCoreApplication::translate("MainWindow", "Flip &Horizontally", nullptr));
|
actionHorizontalFlip->setText(QCoreApplication::translate("MainWindow", "Flip &Horizontally", nullptr));
|
||||||
actionFitInView->setText(QCoreApplication::translate("MainWindow", "Fit to view", nullptr));
|
actionFitInView->setText("Fit in view"); // TODO: what should it called?
|
||||||
actionFitByWidth->setText(QCoreApplication::translate("MainWindow", "Fit to width", nullptr));
|
actionFitByWidth->setText("Fit by width"); // TODO: what should it called?
|
||||||
actionCopyPixmap->setText(QCoreApplication::translate("MainWindow", "Copy P&ixmap", nullptr));
|
actionCopyPixmap->setText(QCoreApplication::translate("MainWindow", "Copy P&ixmap", nullptr));
|
||||||
actionCopyFilePath->setText(QCoreApplication::translate("MainWindow", "Copy &File Path", nullptr));
|
actionCopyFilePath->setText(QCoreApplication::translate("MainWindow", "Copy &File Path", nullptr));
|
||||||
actionPaste->setText(QCoreApplication::translate("MainWindow", "&Paste", nullptr));
|
actionPaste->setText(QCoreApplication::translate("MainWindow", "&Paste", nullptr));
|
||||||
actionTrash->setText(QCoreApplication::translate("MainWindow", "Move to Trash", nullptr));
|
|
||||||
actionToggleStayOnTop->setText(QCoreApplication::translate("MainWindow", "Stay on top", nullptr));
|
actionToggleStayOnTop->setText(QCoreApplication::translate("MainWindow", "Stay on top", nullptr));
|
||||||
actionToggleProtectMode->setText(QCoreApplication::translate("MainWindow", "Protected mode", nullptr));
|
actionToggleProtectMode->setText(QCoreApplication::translate("MainWindow", "Protected mode", nullptr));
|
||||||
actionToggleAvoidResetTransform->setText(QCoreApplication::translate("MainWindow", "Keep transformation", "The 'transformation' means the flip/rotation status that currently applied to the image view"));
|
actionToggleAvoidResetTransform->setText("Avoid reset transform"); // TODO: what should it called?
|
||||||
actionSettings->setText(QCoreApplication::translate("MainWindow", "Configure...", nullptr));
|
actionSettings->setText(QCoreApplication::translate("MainWindow", "Configure...", nullptr));
|
||||||
actionHelp->setText(QCoreApplication::translate("MainWindow", "Help", nullptr));
|
actionHelp->setText(QCoreApplication::translate("MainWindow", "Help", nullptr));
|
||||||
#ifdef Q_OS_WIN
|
#ifdef Q_OS_WIN
|
||||||
@ -126,10 +124,10 @@ void ActionManager::retranslateUi(MainWindow *mainWindow)
|
|||||||
|
|
||||||
void ActionManager::setupShortcuts()
|
void ActionManager::setupShortcuts()
|
||||||
{
|
{
|
||||||
actionOpen->setShortcut(QKeySequence::Open);
|
actionOpen->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_O));
|
||||||
actionActualSize->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_0));
|
actionActualSize->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_0));
|
||||||
actionZoomIn->setShortcut(QKeySequence::ZoomIn);
|
actionZoomIn->setShortcut(QKeySequence(QKeySequence::ZoomIn));
|
||||||
actionZoomOut->setShortcut(QKeySequence::ZoomOut);
|
actionZoomOut->setShortcut(QKeySequence(QKeySequence::ZoomOut));
|
||||||
actionPrevPicture->setShortcuts({
|
actionPrevPicture->setShortcuts({
|
||||||
QKeySequence(Qt::Key_PageUp),
|
QKeySequence(Qt::Key_PageUp),
|
||||||
QKeySequence(Qt::Key_Left),
|
QKeySequence(Qt::Key_Left),
|
||||||
@ -139,9 +137,8 @@ void ActionManager::setupShortcuts()
|
|||||||
QKeySequence(Qt::Key_Right),
|
QKeySequence(Qt::Key_Right),
|
||||||
});
|
});
|
||||||
actionHorizontalFlip->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_R));
|
actionHorizontalFlip->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_R));
|
||||||
actionCopyPixmap->setShortcut(QKeySequence::Copy);
|
actionCopyPixmap->setShortcut(QKeySequence(QKeySequence::Copy));
|
||||||
actionPaste->setShortcut(QKeySequence::Paste);
|
actionPaste->setShortcut(QKeySequence::Paste);
|
||||||
actionTrash->setShortcut(QKeySequence::Delete);
|
|
||||||
actionHelp->setShortcut(QKeySequence::HelpContents);
|
actionHelp->setShortcut(QKeySequence::HelpContents);
|
||||||
actionSettings->setShortcut(QKeySequence::Preferences);
|
actionSettings->setShortcut(QKeySequence::Preferences);
|
||||||
actionProperties->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_I));
|
actionProperties->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_I));
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// SPDX-FileCopyrightText: 2025 Gary Wang <git@blumia.net>
|
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
@ -12,8 +12,8 @@ class MainWindow;
|
|||||||
class ActionManager
|
class ActionManager
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit ActionManager() = default;
|
ActionManager();
|
||||||
~ActionManager() = default;
|
~ActionManager();
|
||||||
|
|
||||||
void setupAction(MainWindow * mainWindow);
|
void setupAction(MainWindow * mainWindow);
|
||||||
void retranslateUi(MainWindow *MainWindow);
|
void retranslateUi(MainWindow *MainWindow);
|
||||||
@ -30,21 +30,16 @@ public:
|
|||||||
QAction *actionZoomOut;
|
QAction *actionZoomOut;
|
||||||
QAction *actionToggleCheckerboard;
|
QAction *actionToggleCheckerboard;
|
||||||
QAction *actionRotateClockwise;
|
QAction *actionRotateClockwise;
|
||||||
QAction *actionRotateCounterClockwise;
|
|
||||||
|
|
||||||
QAction *actionPrevPicture;
|
QAction *actionPrevPicture;
|
||||||
QAction *actionNextPicture;
|
QAction *actionNextPicture;
|
||||||
|
|
||||||
QAction *actionTogglePauseAnimation;
|
|
||||||
QAction *actionAnimationNextFrame;
|
|
||||||
|
|
||||||
QAction *actionHorizontalFlip;
|
QAction *actionHorizontalFlip;
|
||||||
QAction *actionFitInView;
|
QAction *actionFitInView;
|
||||||
QAction *actionFitByWidth;
|
QAction *actionFitByWidth;
|
||||||
QAction *actionCopyPixmap;
|
QAction *actionCopyPixmap;
|
||||||
QAction *actionCopyFilePath;
|
QAction *actionCopyFilePath;
|
||||||
QAction *actionPaste;
|
QAction *actionPaste;
|
||||||
QAction *actionTrash;
|
|
||||||
QAction *actionToggleStayOnTop;
|
QAction *actionToggleStayOnTop;
|
||||||
QAction *actionToggleProtectMode;
|
QAction *actionToggleProtectMode;
|
||||||
QAction *actionToggleAvoidResetTransform;
|
QAction *actionToggleAvoidResetTransform;
|
||||||
|
@ -6,6 +6,8 @@
|
|||||||
|
|
||||||
#include "opacityhelper.h"
|
#include "opacityhelper.h"
|
||||||
|
|
||||||
|
#include <functional>
|
||||||
|
|
||||||
#include <QToolButton>
|
#include <QToolButton>
|
||||||
#include <QVBoxLayout>
|
#include <QVBoxLayout>
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
|
@ -1,22 +0,0 @@
|
|||||||
// SPDX-FileCopyrightText: 2024 Gary Wang <git@blumia.net>
|
|
||||||
//
|
|
||||||
// SPDX-License-Identifier: MIT
|
|
||||||
|
|
||||||
#include "fileopeneventhandler.h"
|
|
||||||
|
|
||||||
#include <QFileOpenEvent>
|
|
||||||
|
|
||||||
FileOpenEventHandler::FileOpenEventHandler(QObject *parent)
|
|
||||||
: QObject(parent)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
bool FileOpenEventHandler::eventFilter(QObject *obj, QEvent *event)
|
|
||||||
{
|
|
||||||
if (event->type() == QEvent::FileOpen) {
|
|
||||||
QFileOpenEvent *fileOpenEvent = static_cast<QFileOpenEvent *>(event);
|
|
||||||
emit fileOpen(fileOpenEvent->url());
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return QObject::eventFilter(obj, event);
|
|
||||||
}
|
|
@ -1,21 +0,0 @@
|
|||||||
// SPDX-FileCopyrightText: 2024 Gary Wang <git@blumia.net>
|
|
||||||
//
|
|
||||||
// SPDX-License-Identifier: MIT
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
#include <QObject>
|
|
||||||
|
|
||||||
class FileOpenEventHandler : public QObject
|
|
||||||
{
|
|
||||||
Q_OBJECT
|
|
||||||
|
|
||||||
public:
|
|
||||||
explicit FileOpenEventHandler(QObject *parent = nullptr);
|
|
||||||
|
|
||||||
protected:
|
|
||||||
bool eventFilter(QObject *obj, QEvent *event) override;
|
|
||||||
|
|
||||||
signals:
|
|
||||||
void fileOpen(const QUrl &url);
|
|
||||||
};
|
|
@ -17,7 +17,14 @@ FramelessWindow::FramelessWindow(QWidget *parent)
|
|||||||
, m_oldCursorShape(Qt::ArrowCursor)
|
, m_oldCursorShape(Qt::ArrowCursor)
|
||||||
, m_oldEdges()
|
, m_oldEdges()
|
||||||
{
|
{
|
||||||
|
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
||||||
this->setWindowFlags(Qt::Window | Qt::FramelessWindowHint | Qt::WindowMinMaxButtonsHint);
|
this->setWindowFlags(Qt::Window | Qt::FramelessWindowHint | Qt::WindowMinMaxButtonsHint);
|
||||||
|
#else
|
||||||
|
// There is a bug in Qt 5 that will make pressing Meta+Up cause the app
|
||||||
|
// fullscreen under Windows, see QTBUG-91226 to learn more.
|
||||||
|
// The bug seems no longer exists in Qt 6 (I only tested it under Qt 6.3.0).
|
||||||
|
this->setWindowFlags(Qt::Window | Qt::FramelessWindowHint | Qt::WindowMinimizeButtonHint);
|
||||||
|
#endif // QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
||||||
this->setMouseTracking(true);
|
this->setMouseTracking(true);
|
||||||
this->setAttribute(Qt::WA_Hover, true);
|
this->setAttribute(Qt::WA_Hover, true);
|
||||||
this->installEventFilter(this);
|
this->installEventFilter(this);
|
||||||
@ -90,7 +97,11 @@ bool FramelessWindow::mousePress(QMouseEvent* event)
|
|||||||
{
|
{
|
||||||
if (event->buttons() & Qt::LeftButton && !isMaximized() && !isFullScreen()) {
|
if (event->buttons() & Qt::LeftButton && !isMaximized() && !isFullScreen()) {
|
||||||
QWindow* win = window()->windowHandle();
|
QWindow* win = window()->windowHandle();
|
||||||
|
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
||||||
Qt::Edges edges = this->getEdgesByPos(event->globalPosition().toPoint(), win->frameGeometry());
|
Qt::Edges edges = this->getEdgesByPos(event->globalPosition().toPoint(), win->frameGeometry());
|
||||||
|
#else
|
||||||
|
Qt::Edges edges = this->getEdgesByPos(event->globalPos(), win->frameGeometry());
|
||||||
|
#endif // QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
||||||
if (edges) {
|
if (edges) {
|
||||||
win->startSystemResize(edges);
|
win->startSystemResize(edges);
|
||||||
return true;
|
return true;
|
||||||
|
@ -10,7 +10,6 @@
|
|||||||
#include <QGraphicsItem>
|
#include <QGraphicsItem>
|
||||||
#include <QUrl>
|
#include <QUrl>
|
||||||
#include <QGraphicsSvgItem>
|
#include <QGraphicsSvgItem>
|
||||||
#include <QSvgRenderer>
|
|
||||||
#include <QMovie>
|
#include <QMovie>
|
||||||
#include <QPainter>
|
#include <QPainter>
|
||||||
|
|
||||||
@ -21,9 +20,6 @@ public:
|
|||||||
: QGraphicsPixmapItem(pixmap, parent)
|
: QGraphicsPixmapItem(pixmap, parent)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
enum { Type = UserType + 1 };
|
|
||||||
int type() const override { return Type; }
|
|
||||||
|
|
||||||
void setScaleHint(float scaleHint) {
|
void setScaleHint(float scaleHint) {
|
||||||
m_scaleHint = scaleHint;
|
m_scaleHint = scaleHint;
|
||||||
}
|
}
|
||||||
@ -64,9 +60,6 @@ class PGraphicsMovieItem : public QGraphicsItem
|
|||||||
public:
|
public:
|
||||||
PGraphicsMovieItem(QGraphicsItem *parent = nullptr) : QGraphicsItem(parent) {}
|
PGraphicsMovieItem(QGraphicsItem *parent = nullptr) : QGraphicsItem(parent) {}
|
||||||
|
|
||||||
enum { Type = UserType + 2 };
|
|
||||||
int type() const override { return Type; }
|
|
||||||
|
|
||||||
void setMovie(QMovie* movie) {
|
void setMovie(QMovie* movie) {
|
||||||
if (m_movie) m_movie->disconnect();
|
if (m_movie) m_movie->disconnect();
|
||||||
m_movie.reset(movie);
|
m_movie.reset(movie);
|
||||||
@ -86,10 +79,6 @@ public:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
inline QMovie * movie() const {
|
|
||||||
return m_movie.data();
|
|
||||||
}
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
QScopedPointer<QMovie> m_movie;
|
QScopedPointer<QMovie> m_movie;
|
||||||
};
|
};
|
||||||
@ -127,16 +116,7 @@ void GraphicsScene::showText(const QString &text)
|
|||||||
void GraphicsScene::showSvg(const QString &filepath)
|
void GraphicsScene::showSvg(const QString &filepath)
|
||||||
{
|
{
|
||||||
this->clear();
|
this->clear();
|
||||||
QGraphicsSvgItem * svgItem = new QGraphicsSvgItem();
|
QGraphicsSvgItem * svgItem = new QGraphicsSvgItem(filepath);
|
||||||
QSvgRenderer * render = new QSvgRenderer(svgItem);
|
|
||||||
#if QT_VERSION >= QT_VERSION_CHECK(6, 7, 0)
|
|
||||||
// Qt 6.7.0's SVG support is terrible caused by huge memory usage, see QTBUG-124287
|
|
||||||
// Qt 6.7.1's is somewhat better, memory issue seems fixed, but still laggy when zoom in,
|
|
||||||
// see QTBUG-126771. Anyway let's disable it for now.
|
|
||||||
render->setOptions(QtSvg::Tiny12FeaturesOnly);
|
|
||||||
#endif // QT_VERSION >= QT_VERSION_CHECK(6, 7, 0)
|
|
||||||
render->load(filepath);
|
|
||||||
svgItem->setSharedRenderer(render);
|
|
||||||
this->addItem(svgItem);
|
this->addItem(svgItem);
|
||||||
m_theThing = svgItem;
|
m_theThing = svgItem;
|
||||||
this->setSceneRect(m_theThing->boundingRect());
|
this->setSceneRect(m_theThing->boundingRect());
|
||||||
@ -168,29 +148,6 @@ bool GraphicsScene::trySetTransformationMode(Qt::TransformationMode mode, float
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool GraphicsScene::togglePauseAnimation()
|
|
||||||
{
|
|
||||||
PGraphicsMovieItem * animatedItem = qgraphicsitem_cast<PGraphicsMovieItem *>(m_theThing);
|
|
||||||
if (animatedItem) {
|
|
||||||
animatedItem->movie()->setPaused(animatedItem->movie()->state() != QMovie::Paused);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool GraphicsScene::skipAnimationFrame(int delta)
|
|
||||||
{
|
|
||||||
PGraphicsMovieItem * animatedItem = qgraphicsitem_cast<PGraphicsMovieItem *>(m_theThing);
|
|
||||||
if (animatedItem) {
|
|
||||||
const int frameCount = animatedItem->movie()->frameCount();
|
|
||||||
const int currentFrame = animatedItem->movie()->currentFrameNumber();
|
|
||||||
const int targetFrame = (currentFrame + delta) % frameCount;
|
|
||||||
animatedItem->movie()->setPaused(true);
|
|
||||||
return animatedItem->movie()->jumpToFrame(targetFrame);
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
QPixmap GraphicsScene::renderToPixmap()
|
QPixmap GraphicsScene::renderToPixmap()
|
||||||
{
|
{
|
||||||
PGraphicsPixmapItem * pixmapItem = qgraphicsitem_cast<PGraphicsPixmapItem *>(m_theThing);
|
PGraphicsPixmapItem * pixmapItem = qgraphicsitem_cast<PGraphicsPixmapItem *>(m_theThing);
|
||||||
|
@ -21,13 +21,10 @@ public:
|
|||||||
|
|
||||||
bool trySetTransformationMode(Qt::TransformationMode mode, float scaleHint);
|
bool trySetTransformationMode(Qt::TransformationMode mode, float scaleHint);
|
||||||
|
|
||||||
bool togglePauseAnimation();
|
|
||||||
bool skipAnimationFrame(int delta = 1);
|
|
||||||
|
|
||||||
QPixmap renderToPixmap();
|
QPixmap renderToPixmap();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
QGraphicsItem * m_theThing = nullptr;
|
QGraphicsItem * m_theThing;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // GRAPHICSSCENE_H
|
#endif // GRAPHICSSCENE_H
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
#include "graphicsview.h"
|
#include "graphicsview.h"
|
||||||
|
|
||||||
#include "graphicsscene.h"
|
#include "graphicsscene.h"
|
||||||
#include "settings.h"
|
|
||||||
|
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
#include <QMouseEvent>
|
#include <QMouseEvent>
|
||||||
@ -24,14 +23,14 @@ GraphicsView::GraphicsView(QWidget *parent)
|
|||||||
setTransformationAnchor(QGraphicsView::AnchorUnderMouse);
|
setTransformationAnchor(QGraphicsView::AnchorUnderMouse);
|
||||||
setStyleSheet("background-color: rgba(0, 0, 0, 220);"
|
setStyleSheet("background-color: rgba(0, 0, 0, 220);"
|
||||||
"border-radius: 3px;");
|
"border-radius: 3px;");
|
||||||
setAcceptDrops(false);
|
setAcceptDrops(true);
|
||||||
setCheckerboardEnabled(false);
|
setCheckerboardEnabled(false);
|
||||||
|
|
||||||
connect(horizontalScrollBar(), &QScrollBar::valueChanged, this, &GraphicsView::viewportRectChanged);
|
connect(horizontalScrollBar(), &QScrollBar::valueChanged, this, &GraphicsView::viewportRectChanged);
|
||||||
connect(verticalScrollBar(), &QScrollBar::valueChanged, this, &GraphicsView::viewportRectChanged);
|
connect(verticalScrollBar(), &QScrollBar::valueChanged, this, &GraphicsView::viewportRectChanged);
|
||||||
}
|
}
|
||||||
|
|
||||||
void GraphicsView::showFileFromPath(const QString &filePath)
|
void GraphicsView::showFileFromPath(const QString &filePath, bool doRequestGallery)
|
||||||
{
|
{
|
||||||
emit navigatorViewRequired(false, transform());
|
emit navigatorViewRequired(false, transform());
|
||||||
|
|
||||||
@ -41,20 +40,25 @@ void GraphicsView::showFileFromPath(const QString &filePath)
|
|||||||
QImageReader imageReader(filePath);
|
QImageReader imageReader(filePath);
|
||||||
imageReader.setAutoTransform(true);
|
imageReader.setAutoTransform(true);
|
||||||
imageReader.setDecideFormatFromContent(true);
|
imageReader.setDecideFormatFromContent(true);
|
||||||
|
#if QT_VERSION > QT_VERSION_CHECK(6, 0, 0)
|
||||||
imageReader.setAllocationLimit(0);
|
imageReader.setAllocationLimit(0);
|
||||||
|
#endif //QT_VERSION > QT_VERSION_CHECK(6, 0, 0)
|
||||||
|
|
||||||
// Since if the image format / plugin does not support this feature, imageFormat() will returns an invalid format.
|
// Since if the image format / plugin does not support this feature, imageFormat() will returns an invalid format.
|
||||||
// So we cannot use imageFormat() and check if it returns QImage::Format_Invalid to detect if we support the file.
|
// So we cannot use imageFormat() and check if it returns QImage::Format_Invalid to detect if we support the file.
|
||||||
// QImage::Format imageFormat = imageReader.imageFormat();
|
// QImage::Format imageFormat = imageReader.imageFormat();
|
||||||
if (imageReader.format().isEmpty()) {
|
if (imageReader.format().isEmpty()) {
|
||||||
|
doRequestGallery = false;
|
||||||
showText(tr("File is not a valid image"));
|
showText(tr("File is not a valid image"));
|
||||||
} else if (imageReader.supportsAnimation() && imageReader.imageCount() > 1) {
|
} else if (imageReader.supportsAnimation() && imageReader.imageCount() > 1) {
|
||||||
showAnimated(filePath);
|
showAnimated(filePath);
|
||||||
} else if (!imageReader.canRead()) {
|
} else if (!imageReader.canRead()) {
|
||||||
|
doRequestGallery = false;
|
||||||
showText(tr("Image data is invalid or currently unsupported"));
|
showText(tr("Image data is invalid or currently unsupported"));
|
||||||
} else {
|
} else {
|
||||||
QPixmap && pixmap = QPixmap::fromImageReader(&imageReader);
|
QPixmap && pixmap = QPixmap::fromImageReader(&imageReader);
|
||||||
if (pixmap.isNull()) {
|
if (pixmap.isNull()) {
|
||||||
|
doRequestGallery = false;
|
||||||
showText(tr("Image data is invalid or currently unsupported"));
|
showText(tr("Image data is invalid or currently unsupported"));
|
||||||
} else {
|
} else {
|
||||||
pixmap.setDevicePixelRatio(devicePixelRatioF());
|
pixmap.setDevicePixelRatio(devicePixelRatioF());
|
||||||
@ -62,6 +66,10 @@ void GraphicsView::showFileFromPath(const QString &filePath)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (doRequestGallery) {
|
||||||
|
emit requestGallery(filePath);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void GraphicsView::showImage(const QPixmap &pixmap)
|
void GraphicsView::showImage(const QPixmap &pixmap)
|
||||||
@ -116,7 +124,7 @@ qreal GraphicsView::scaleFactor() const
|
|||||||
|
|
||||||
void GraphicsView::resetTransform()
|
void GraphicsView::resetTransform()
|
||||||
{
|
{
|
||||||
if (!shouldAvoidTransform()) {
|
if (!m_avoidResetTransform) {
|
||||||
QGraphicsView::resetTransform();
|
QGraphicsView::resetTransform();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -194,7 +202,7 @@ void GraphicsView::fitByOrientation(Qt::Orientation ori, bool scaleDownOnly)
|
|||||||
|
|
||||||
void GraphicsView::displayScene()
|
void GraphicsView::displayScene()
|
||||||
{
|
{
|
||||||
if (shouldAvoidTransform()) {
|
if (m_avoidResetTransform) {
|
||||||
emit navigatorViewRequired(!isThingSmallerThanWindowWith(transform()), transform());
|
emit navigatorViewRequired(!isThingSmallerThanWindowWith(transform()), transform());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -204,7 +212,6 @@ void GraphicsView::displayScene()
|
|||||||
}
|
}
|
||||||
|
|
||||||
m_enableFitInView = true;
|
m_enableFitInView = true;
|
||||||
m_firstUserMediaLoaded = true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool GraphicsView::isSceneBiggerThanView() const
|
bool GraphicsView::isSceneBiggerThanView() const
|
||||||
@ -311,6 +318,55 @@ void GraphicsView::resizeEvent(QResizeEvent *event)
|
|||||||
return QGraphicsView::resizeEvent(event);
|
return QGraphicsView::resizeEvent(event);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void GraphicsView::dragEnterEvent(QDragEnterEvent *event)
|
||||||
|
{
|
||||||
|
if (event->mimeData()->hasUrls() || event->mimeData()->hasImage() || event->mimeData()->hasText()) {
|
||||||
|
event->acceptProposedAction();
|
||||||
|
} else {
|
||||||
|
event->ignore();
|
||||||
|
}
|
||||||
|
// qDebug() << event->mimeData() << "Drag Enter Event"
|
||||||
|
// << event->mimeData()->hasUrls() << event->mimeData()->hasImage()
|
||||||
|
// << event->mimeData()->formats() << event->mimeData()->hasFormat("text/uri-list");
|
||||||
|
|
||||||
|
return QGraphicsView::dragEnterEvent(event);
|
||||||
|
}
|
||||||
|
|
||||||
|
void GraphicsView::dragMoveEvent(QDragMoveEvent *event)
|
||||||
|
{
|
||||||
|
Q_UNUSED(event)
|
||||||
|
// by default, QGraphicsView/Scene will ignore the action if there are no QGraphicsItem under cursor.
|
||||||
|
// We actually doesn't care and would like to keep the drag event as-is, so just do nothing here.
|
||||||
|
}
|
||||||
|
|
||||||
|
void GraphicsView::dropEvent(QDropEvent *event)
|
||||||
|
{
|
||||||
|
event->acceptProposedAction();
|
||||||
|
|
||||||
|
const QMimeData * mimeData = event->mimeData();
|
||||||
|
|
||||||
|
if (mimeData->hasUrls()) {
|
||||||
|
const QList<QUrl> &urls = mimeData->urls();
|
||||||
|
if (urls.isEmpty()) {
|
||||||
|
showText(tr("File url list is empty"));
|
||||||
|
} else {
|
||||||
|
showFileFromPath(urls.first().toLocalFile(), true);
|
||||||
|
}
|
||||||
|
} else if (mimeData->hasImage()) {
|
||||||
|
QImage img = qvariant_cast<QImage>(mimeData->imageData());
|
||||||
|
QPixmap pixmap = QPixmap::fromImage(img);
|
||||||
|
if (pixmap.isNull()) {
|
||||||
|
showText(tr("Image data is invalid"));
|
||||||
|
} else {
|
||||||
|
showImage(pixmap);
|
||||||
|
}
|
||||||
|
} else if (mimeData->hasText()) {
|
||||||
|
showText(mimeData->text());
|
||||||
|
} else {
|
||||||
|
showText(tr("Not supported mimedata: %1").arg(mimeData->formats().first()));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
bool GraphicsView::isThingSmallerThanWindowWith(const QTransform &transform) const
|
bool GraphicsView::isThingSmallerThanWindowWith(const QTransform &transform) const
|
||||||
{
|
{
|
||||||
return rect().size().expandedTo(transform.mapRect(sceneRect()).size().toSize())
|
return rect().size().expandedTo(transform.mapRect(sceneRect()).size().toSize())
|
||||||
@ -338,16 +394,16 @@ bool GraphicsView::shouldIgnoreMousePressMoveEvent(const QMouseEvent *event) con
|
|||||||
void GraphicsView::setCheckerboardEnabled(bool enabled, bool invertColor)
|
void GraphicsView::setCheckerboardEnabled(bool enabled, bool invertColor)
|
||||||
{
|
{
|
||||||
m_checkerboardEnabled = enabled;
|
m_checkerboardEnabled = enabled;
|
||||||
bool isLightCheckerboard = Settings::instance()->useLightCheckerboard() ^ invertColor;
|
m_isLastCheckerboardColorInverted = invertColor;
|
||||||
if (m_checkerboardEnabled) {
|
if (m_checkerboardEnabled) {
|
||||||
// Prepare background check-board pattern
|
// Prepare background check-board pattern
|
||||||
QPixmap tilePixmap(0x20, 0x20);
|
QPixmap tilePixmap(0x20, 0x20);
|
||||||
tilePixmap.fill(isLightCheckerboard ? QColor(220, 220, 220, 170) : QColor(35, 35, 35, 170));
|
tilePixmap.fill(invertColor ? QColor(220, 220, 220, 170) : QColor(35, 35, 35, 170));
|
||||||
QPainter tilePainter(&tilePixmap);
|
QPainter tilePainter(&tilePixmap);
|
||||||
constexpr QColor color(45, 45, 45, 170);
|
constexpr QColor color(45, 45, 45, 170);
|
||||||
constexpr QColor invertedColor(210, 210, 210, 170);
|
constexpr QColor invertedColor(210, 210, 210, 170);
|
||||||
tilePainter.fillRect(0, 0, 0x10, 0x10, isLightCheckerboard ? invertedColor : color);
|
tilePainter.fillRect(0, 0, 0x10, 0x10, invertColor ? invertedColor : color);
|
||||||
tilePainter.fillRect(0x10, 0x10, 0x10, 0x10, isLightCheckerboard ? invertedColor : color);
|
tilePainter.fillRect(0x10, 0x10, 0x10, 0x10, invertColor ? invertedColor : color);
|
||||||
tilePainter.end();
|
tilePainter.end();
|
||||||
|
|
||||||
setBackgroundBrush(tilePixmap);
|
setBackgroundBrush(tilePixmap);
|
||||||
@ -364,8 +420,3 @@ void GraphicsView::applyTransformationModeByScaleFactor()
|
|||||||
scene()->trySetTransformationMode(Qt::FastTransformation, this->scaleFactor());
|
scene()->trySetTransformationMode(Qt::FastTransformation, this->scaleFactor());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bool GraphicsView::shouldAvoidTransform() const
|
|
||||||
{
|
|
||||||
return m_firstUserMediaLoaded && m_avoidResetTransform;
|
|
||||||
}
|
|
||||||
|
@ -15,7 +15,7 @@ class GraphicsView : public QGraphicsView
|
|||||||
public:
|
public:
|
||||||
GraphicsView(QWidget *parent = nullptr);
|
GraphicsView(QWidget *parent = nullptr);
|
||||||
|
|
||||||
void showFileFromPath(const QString &filePath);
|
void showFileFromPath(const QString &filePath, bool requestGallery = false);
|
||||||
|
|
||||||
void showImage(const QPixmap &pixmap);
|
void showImage(const QPixmap &pixmap);
|
||||||
void showImage(const QImage &image);
|
void showImage(const QImage &image);
|
||||||
@ -48,6 +48,7 @@ public:
|
|||||||
signals:
|
signals:
|
||||||
void navigatorViewRequired(bool required, QTransform transform);
|
void navigatorViewRequired(bool required, QTransform transform);
|
||||||
void viewportRectChanged();
|
void viewportRectChanged();
|
||||||
|
void requestGallery(const QString &filePath);
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void toggleCheckerboard(bool invertCheckerboardColor = false);
|
void toggleCheckerboard(bool invertCheckerboardColor = false);
|
||||||
@ -59,21 +60,22 @@ private:
|
|||||||
void wheelEvent(QWheelEvent *event) override;
|
void wheelEvent(QWheelEvent *event) override;
|
||||||
void resizeEvent(QResizeEvent *event) override;
|
void resizeEvent(QResizeEvent *event) override;
|
||||||
|
|
||||||
|
void dragEnterEvent(QDragEnterEvent *event) override;
|
||||||
|
void dragMoveEvent(QDragMoveEvent *event) override;
|
||||||
|
void dropEvent(QDropEvent *event) override;
|
||||||
|
|
||||||
bool isThingSmallerThanWindowWith(const QTransform &transform) const;
|
bool isThingSmallerThanWindowWith(const QTransform &transform) const;
|
||||||
bool shouldIgnoreMousePressMoveEvent(const QMouseEvent *event) const;
|
bool shouldIgnoreMousePressMoveEvent(const QMouseEvent *event) const;
|
||||||
void setCheckerboardEnabled(bool enabled, bool invertColor = false);
|
void setCheckerboardEnabled(bool enabled, bool invertColor = false);
|
||||||
void applyTransformationModeByScaleFactor();
|
void applyTransformationModeByScaleFactor();
|
||||||
|
|
||||||
inline bool shouldAvoidTransform() const;
|
|
||||||
|
|
||||||
// Consider switch to 3 state for "no fit", "always fit" and "fit when view is smaller"?
|
// Consider switch to 3 state for "no fit", "always fit" and "fit when view is smaller"?
|
||||||
// ... or even more? e.g. "fit/snap width" things...
|
// ... or even more? e.g. "fit/snap width" things...
|
||||||
// Currently it's "no fit" when it's false and "fit when view is smaller" when it's true.
|
// Currently it's "no fit" when it's false and "fit when view is smaller" when it's true.
|
||||||
bool m_enableFitInView = false;
|
bool m_enableFitInView = false;
|
||||||
bool m_avoidResetTransform = false;
|
bool m_avoidResetTransform = false;
|
||||||
bool m_checkerboardEnabled = false;
|
bool m_checkerboardEnabled = false;
|
||||||
bool m_useLightCheckerboard = false;
|
bool m_isLastCheckerboardColorInverted = false;
|
||||||
bool m_firstUserMediaLoaded = false;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // GRAPHICSVIEW_H
|
#endif // GRAPHICSVIEW_H
|
||||||
|
62
app/main.cpp
62
app/main.cpp
@ -7,77 +7,49 @@
|
|||||||
#include "playlistmanager.h"
|
#include "playlistmanager.h"
|
||||||
#include "settings.h"
|
#include "settings.h"
|
||||||
|
|
||||||
#ifdef Q_OS_MACOS
|
|
||||||
#include "fileopeneventhandler.h"
|
|
||||||
#endif // Q_OS_MACOS
|
|
||||||
|
|
||||||
#include <QApplication>
|
#include <QApplication>
|
||||||
#include <QCommandLineParser>
|
#include <QCommandLineParser>
|
||||||
#include <QDir>
|
#include <QDir>
|
||||||
#include <QTranslator>
|
#include <QTranslator>
|
||||||
#include <QUrl>
|
#include <QUrl>
|
||||||
|
|
||||||
using namespace Qt::Literals::StringLiterals;
|
// QM_FILE_INSTALL_DIR should be defined from the CMakeLists file.
|
||||||
|
#ifndef QM_FILE_INSTALL_DIR
|
||||||
|
#define QM_FILE_INSTALL_DIR ":/i18n/"
|
||||||
|
#endif // QM_FILE_INSTALL_DIR
|
||||||
|
|
||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
QCoreApplication::setApplicationName(u"Pineapple Pictures"_s);
|
|
||||||
QCoreApplication::setApplicationVersion(PPIC_VERSION_STRING);
|
|
||||||
QGuiApplication::setHighDpiScaleFactorRoundingPolicy(Settings::instance()->hiDpiScaleFactorBehavior());
|
QGuiApplication::setHighDpiScaleFactorRoundingPolicy(Settings::instance()->hiDpiScaleFactorBehavior());
|
||||||
|
|
||||||
QApplication a(argc, argv);
|
QApplication a(argc, argv);
|
||||||
|
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
|
||||||
|
a.setAttribute(Qt::ApplicationAttribute::AA_UseHighDpiPixmaps);
|
||||||
|
#endif
|
||||||
|
|
||||||
QTranslator translator;
|
QTranslator translator;
|
||||||
#if defined(TRANSLATION_RESOURCE_EMBEDDING)
|
QString qmDir;
|
||||||
const QString qmDir = u":/i18n/"_s;
|
#ifdef _WIN32
|
||||||
#elif defined(QM_FILE_INSTALL_ABSOLUTE_DIR)
|
qmDir = QDir(QCoreApplication::applicationDirPath()).absoluteFilePath("translations");
|
||||||
const QString qmDir = QT_STRINGIFY(QM_FILE_INSTALL_ABSOLUTE_DIR);
|
|
||||||
#else
|
#else
|
||||||
const QString qmDir = QDir(QCoreApplication::applicationDirPath()).absoluteFilePath("translations");
|
qmDir = QT_STRINGIFY(QM_FILE_INSTALL_DIR);
|
||||||
#endif
|
#endif
|
||||||
if (translator.load(QLocale(), u"PineapplePictures"_s, u"_"_s, qmDir)) {
|
if (translator.load(QLocale(), QLatin1String("PineapplePictures"), QLatin1String("_"), qmDir)) {
|
||||||
QCoreApplication::installTranslator(&translator);
|
a.installTranslator(&translator);
|
||||||
}
|
}
|
||||||
|
a.setApplicationName("Pineapple Pictures");
|
||||||
|
a.setApplicationDisplayName(QCoreApplication::translate("main", "Pineapple Pictures"));
|
||||||
|
|
||||||
QGuiApplication::setApplicationDisplayName(QCoreApplication::translate("main", "Pineapple Pictures"));
|
|
||||||
|
|
||||||
// commandline options
|
|
||||||
QCommandLineOption supportedImageFormats(u"supported-image-formats"_s, QCoreApplication::translate("main", "List supported image format suffixes, and quit program."));
|
|
||||||
// parse commandline arguments
|
// parse commandline arguments
|
||||||
QCommandLineParser parser;
|
QCommandLineParser parser;
|
||||||
parser.addOption(supportedImageFormats);
|
|
||||||
parser.addPositionalArgument("File list", QCoreApplication::translate("main", "File list."));
|
parser.addPositionalArgument("File list", QCoreApplication::translate("main", "File list."));
|
||||||
parser.addHelpOption();
|
parser.addHelpOption();
|
||||||
parser.process(a);
|
|
||||||
|
|
||||||
if (parser.isSet(supportedImageFormats)) {
|
parser.process(a);
|
||||||
#if QT_VERSION < QT_VERSION_CHECK(6, 9, 0)
|
|
||||||
fputs(qPrintable(MainWindow::supportedImageFormats().join(QChar('\n'))), stdout);
|
|
||||||
::exit(EXIT_SUCCESS);
|
|
||||||
#else
|
|
||||||
QCommandLineParser::showMessageAndExit(QCommandLineParser::MessageType::Information,
|
|
||||||
MainWindow::supportedImageFormats().join(QChar('\n')));
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
MainWindow w;
|
MainWindow w;
|
||||||
w.show();
|
w.show();
|
||||||
|
|
||||||
#ifdef Q_OS_MACOS
|
|
||||||
FileOpenEventHandler * fileOpenEventHandler = new FileOpenEventHandler(&a);
|
|
||||||
a.installEventFilter(fileOpenEventHandler);
|
|
||||||
a.connect(fileOpenEventHandler, &FileOpenEventHandler::fileOpen, [&w](const QUrl & url){
|
|
||||||
if (w.isHidden()) {
|
|
||||||
w.setWindowOpacity(1);
|
|
||||||
w.showNormal();
|
|
||||||
} else {
|
|
||||||
w.activateWindow();
|
|
||||||
}
|
|
||||||
w.showUrls({url});
|
|
||||||
w.initWindowSize();
|
|
||||||
});
|
|
||||||
#endif // Q_OS_MACOS
|
|
||||||
|
|
||||||
QStringList urlStrList = parser.positionalArguments();
|
QStringList urlStrList = parser.positionalArguments();
|
||||||
QList<QUrl> && urlList = PlaylistManager::convertToUrlList(urlStrList);
|
QList<QUrl> && urlList = PlaylistManager::convertToUrlList(urlStrList);
|
||||||
|
|
||||||
@ -87,5 +59,5 @@ int main(int argc, char *argv[])
|
|||||||
|
|
||||||
w.initWindowSize();
|
w.initWindowSize();
|
||||||
|
|
||||||
return QApplication::exec();
|
return a.exec();
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// SPDX-FileCopyrightText: 2025 Gary Wang <git@blumia.net>
|
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
@ -32,25 +32,19 @@
|
|||||||
#include <QFile>
|
#include <QFile>
|
||||||
#include <QTimer>
|
#include <QTimer>
|
||||||
#include <QFileDialog>
|
#include <QFileDialog>
|
||||||
#include <QFileSystemWatcher>
|
|
||||||
#include <QStandardPaths>
|
#include <QStandardPaths>
|
||||||
#include <QStringBuilder>
|
|
||||||
#include <QProcess>
|
#include <QProcess>
|
||||||
#include <QDesktopServices>
|
#include <QDesktopServices>
|
||||||
#include <QMessageBox>
|
|
||||||
|
|
||||||
#ifdef HAVE_QTDBUS
|
#ifdef HAVE_QTDBUS
|
||||||
#include <QDBusInterface>
|
#include <QDBusInterface>
|
||||||
#include <QDBusConnectionInterface>
|
#include <QDBusConnectionInterface>
|
||||||
#endif // HAVE_QTDBUS
|
#endif // HAVE_QTDBUS
|
||||||
|
|
||||||
using namespace Qt::Literals::StringLiterals;
|
|
||||||
|
|
||||||
MainWindow::MainWindow(QWidget *parent)
|
MainWindow::MainWindow(QWidget *parent)
|
||||||
: FramelessWindow(parent)
|
: FramelessWindow(parent)
|
||||||
, m_am(new ActionManager)
|
, m_am(new ActionManager)
|
||||||
, m_pm(new PlaylistManager(this))
|
, m_pm(new PlaylistManager(PlaylistManager::PL_SAMEFOLDER, this))
|
||||||
, m_fileSystemWatcher(new QFileSystemWatcher(this))
|
|
||||||
{
|
{
|
||||||
if (Settings::instance()->stayOnTop()) {
|
if (Settings::instance()->stayOnTop()) {
|
||||||
this->setWindowFlag(Qt::WindowStaysOnTopHint);
|
this->setWindowFlag(Qt::WindowStaysOnTopHint);
|
||||||
@ -58,24 +52,27 @@ MainWindow::MainWindow(QWidget *parent)
|
|||||||
|
|
||||||
this->setAttribute(Qt::WA_TranslucentBackground, true);
|
this->setAttribute(Qt::WA_TranslucentBackground, true);
|
||||||
this->setMinimumSize(350, 330);
|
this->setMinimumSize(350, 330);
|
||||||
this->setWindowIcon(QIcon(u":/icons/app-icon.svg"_s));
|
this->setWindowIcon(QIcon(":/icons/app-icon.svg"));
|
||||||
this->setMouseTracking(true);
|
this->setMouseTracking(true);
|
||||||
this->setAcceptDrops(true);
|
|
||||||
|
|
||||||
m_pm->setAutoLoadFilterSuffixes(supportedImageFormats());
|
m_pm->setAutoLoadFilterSuffix({
|
||||||
|
"*.jpg", "*.jpeg", "*.jfif",
|
||||||
|
"*.png", "*.gif", "*.svg", "*.bmp", "*.webp",
|
||||||
|
"*.tif", "*.tiff"
|
||||||
|
});
|
||||||
|
|
||||||
m_fadeOutAnimation = new QPropertyAnimation(this, "windowOpacity"_ba);
|
m_fadeOutAnimation = new QPropertyAnimation(this, "windowOpacity");
|
||||||
m_fadeOutAnimation->setDuration(300);
|
m_fadeOutAnimation->setDuration(300);
|
||||||
m_fadeOutAnimation->setStartValue(1);
|
m_fadeOutAnimation->setStartValue(1);
|
||||||
m_fadeOutAnimation->setEndValue(0);
|
m_fadeOutAnimation->setEndValue(0);
|
||||||
m_floatUpAnimation = new QPropertyAnimation(this, "geometry"_ba);
|
m_floatUpAnimation = new QPropertyAnimation(this, "geometry");
|
||||||
m_floatUpAnimation->setDuration(300);
|
m_floatUpAnimation->setDuration(300);
|
||||||
m_floatUpAnimation->setEasingCurve(QEasingCurve::OutCirc);
|
m_floatUpAnimation->setEasingCurve(QEasingCurve::OutCirc);
|
||||||
m_exitAnimationGroup = new QParallelAnimationGroup(this);
|
m_exitAnimationGroup = new QParallelAnimationGroup(this);
|
||||||
m_exitAnimationGroup->addAnimation(m_fadeOutAnimation);
|
m_exitAnimationGroup->addAnimation(m_fadeOutAnimation);
|
||||||
m_exitAnimationGroup->addAnimation(m_floatUpAnimation);
|
m_exitAnimationGroup->addAnimation(m_floatUpAnimation);
|
||||||
connect(m_exitAnimationGroup, &QParallelAnimationGroup::finished,
|
connect(m_exitAnimationGroup, &QParallelAnimationGroup::finished,
|
||||||
this, &MainWindow::doCloseWindow);
|
this, &QWidget::close);
|
||||||
|
|
||||||
GraphicsScene * scene = new GraphicsScene(this);
|
GraphicsScene * scene = new GraphicsScene(this);
|
||||||
|
|
||||||
@ -90,7 +87,7 @@ MainWindow::MainWindow(QWidget *parent)
|
|||||||
m_gv->fitInView(m_gv->sceneRect(), Qt::KeepAspectRatio);
|
m_gv->fitInView(m_gv->sceneRect(), Qt::KeepAspectRatio);
|
||||||
|
|
||||||
connect(m_graphicsView, &GraphicsView::navigatorViewRequired,
|
connect(m_graphicsView, &GraphicsView::navigatorViewRequired,
|
||||||
this, [this](bool required, const QTransform & tf){
|
this, [ = ](bool required, const QTransform & tf){
|
||||||
m_gv->setTransform(GraphicsView::resetScale(tf));
|
m_gv->setTransform(GraphicsView::resetScale(tf));
|
||||||
m_gv->fitInView(m_gv->sceneRect(), Qt::KeepAspectRatio);
|
m_gv->fitInView(m_gv->sceneRect(), Qt::KeepAspectRatio);
|
||||||
m_gv->setVisible(required);
|
m_gv->setVisible(required);
|
||||||
@ -100,6 +97,9 @@ MainWindow::MainWindow(QWidget *parent)
|
|||||||
connect(m_graphicsView, &GraphicsView::viewportRectChanged,
|
connect(m_graphicsView, &GraphicsView::viewportRectChanged,
|
||||||
m_gv, &NavigatorView::updateMainViewportRegion);
|
m_gv, &NavigatorView::updateMainViewportRegion);
|
||||||
|
|
||||||
|
connect(m_graphicsView, &GraphicsView::requestGallery,
|
||||||
|
this, &MainWindow::loadGalleryBySingleLocalFile);
|
||||||
|
|
||||||
m_closeButton = new ToolButton(true, m_graphicsView);
|
m_closeButton = new ToolButton(true, m_graphicsView);
|
||||||
m_closeButton->setIconSize(QSize(32, 32));
|
m_closeButton->setIconSize(QSize(32, 32));
|
||||||
m_closeButton->setFixedSize(QSize(50, 50));
|
m_closeButton->setFixedSize(QSize(50, 50));
|
||||||
@ -139,13 +139,18 @@ MainWindow::MainWindow(QWidget *parent)
|
|||||||
m_gv->setOpacity(0, false);
|
m_gv->setOpacity(0, false);
|
||||||
m_closeButton->setOpacity(0, false);
|
m_closeButton->setOpacity(0, false);
|
||||||
|
|
||||||
connect(m_pm, &PlaylistManager::totalCountChanged, this, &MainWindow::updateGalleryButtonsVisibility);
|
connect(m_pm, &PlaylistManager::loaded, this, [this](int galleryFileCount) {
|
||||||
|
m_prevButton->setVisible(galleryFileCount > 1);
|
||||||
|
m_nextButton->setVisible(galleryFileCount > 1);
|
||||||
|
});
|
||||||
|
|
||||||
connect(m_pm->model(), &PlaylistModel::modelReset, this, std::bind(&MainWindow::galleryCurrent, this, false, false));
|
connect(m_pm, &PlaylistManager::currentIndexChanged, this, [this]() {
|
||||||
connect(m_pm, &PlaylistManager::currentIndexChanged, this, std::bind(&MainWindow::galleryCurrent, this, true, false));
|
int index;
|
||||||
|
QUrl url;
|
||||||
connect(m_fileSystemWatcher, &QFileSystemWatcher::fileChanged, this, [this](){
|
std::tie(index, url) = m_pm->currentFileUrl();
|
||||||
QTimer::singleShot(500, this, std::bind(&MainWindow::galleryCurrent, this, false, true));
|
if (index != -1) {
|
||||||
|
this->setWindowTitle(url.fileName());
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
QShortcut * fullscreenShorucut = new QShortcut(QKeySequence(QKeySequence::FullScreen), this);
|
QShortcut * fullscreenShorucut = new QShortcut(QKeySequence(QKeySequence::FullScreen), this);
|
||||||
@ -156,7 +161,6 @@ MainWindow::MainWindow(QWidget *parent)
|
|||||||
|
|
||||||
QTimer::singleShot(0, this, [this](){
|
QTimer::singleShot(0, this, [this](){
|
||||||
m_am->setupShortcuts();
|
m_am->setupShortcuts();
|
||||||
Settings::instance()->applyUserShortcuts(this);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
// allow some mouse events can go through these widgets for resizing window.
|
// allow some mouse events can go through these widgets for resizing window.
|
||||||
@ -175,17 +179,13 @@ MainWindow::~MainWindow()
|
|||||||
void MainWindow::showUrls(const QList<QUrl> &urls)
|
void MainWindow::showUrls(const QList<QUrl> &urls)
|
||||||
{
|
{
|
||||||
if (!urls.isEmpty()) {
|
if (!urls.isEmpty()) {
|
||||||
const QUrl & firstUrl = urls.first();
|
|
||||||
if (urls.count() == 1) {
|
if (urls.count() == 1) {
|
||||||
const QString lowerCaseUrlPath(firstUrl.path().toLower());
|
m_graphicsView->showFileFromPath(urls.first().toLocalFile(), true);
|
||||||
if (lowerCaseUrlPath.endsWith(".m3u8") || lowerCaseUrlPath.endsWith(".m3u")) {
|
} else {
|
||||||
m_pm->loadM3U8Playlist(firstUrl);
|
m_graphicsView->showFileFromPath(urls.first().toLocalFile(), false);
|
||||||
galleryCurrent(true, true);
|
m_pm->setPlaylist(urls);
|
||||||
return;
|
m_pm->setCurrentIndex(0);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
m_graphicsView->showFileFromPath(firstUrl.toLocalFile());
|
|
||||||
m_pm->loadPlaylist(urls);
|
|
||||||
} else {
|
} else {
|
||||||
m_graphicsView->showText(tr("File url list is empty"));
|
m_graphicsView->showText(tr("File url list is empty"));
|
||||||
return;
|
return;
|
||||||
@ -203,9 +203,6 @@ void MainWindow::initWindowSize()
|
|||||||
case Settings::WindowSizeBehavior::Maximized:
|
case Settings::WindowSizeBehavior::Maximized:
|
||||||
showMaximized();
|
showMaximized();
|
||||||
break;
|
break;
|
||||||
case Settings::WindowSizeBehavior::Windowed:
|
|
||||||
showNormal();
|
|
||||||
break;
|
|
||||||
default:
|
default:
|
||||||
adjustWindowSizeBySceneRect();
|
adjustWindowSizeBySceneRect();
|
||||||
break;
|
break;
|
||||||
@ -214,7 +211,7 @@ void MainWindow::initWindowSize()
|
|||||||
|
|
||||||
void MainWindow::adjustWindowSizeBySceneRect()
|
void MainWindow::adjustWindowSizeBySceneRect()
|
||||||
{
|
{
|
||||||
if (m_pm->totalCount() < 1) return;
|
if (m_pm->count() < 1) return;
|
||||||
|
|
||||||
QSize sceneSize = m_graphicsView->sceneRect().toRect().size();
|
QSize sceneSize = m_graphicsView->sceneRect().toRect().size();
|
||||||
QSize sceneSizeWithMargins = sceneSize + QSize(130, 125);
|
QSize sceneSizeWithMargins = sceneSize + QSize(130, 125);
|
||||||
@ -245,64 +242,46 @@ void MainWindow::adjustWindowSizeBySceneRect()
|
|||||||
// can be empty if it is NOT from a local file.
|
// can be empty if it is NOT from a local file.
|
||||||
QUrl MainWindow::currentImageFileUrl() const
|
QUrl MainWindow::currentImageFileUrl() const
|
||||||
{
|
{
|
||||||
return m_pm->urlByIndex(m_pm->curIndex());
|
QUrl url;
|
||||||
|
std::tie(std::ignore, url) = m_pm->currentFileUrl();
|
||||||
|
|
||||||
|
return url;
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::clearGallery()
|
void MainWindow::clearGallery()
|
||||||
{
|
{
|
||||||
m_pm->setPlaylist({});
|
m_pm->clear();
|
||||||
|
}
|
||||||
|
|
||||||
|
void MainWindow::loadGalleryBySingleLocalFile(const QString &path)
|
||||||
|
{
|
||||||
|
m_pm->setCurrentFile(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::galleryPrev()
|
void MainWindow::galleryPrev()
|
||||||
{
|
{
|
||||||
QModelIndex index = m_pm->previousIndex();
|
int index;
|
||||||
if (index.isValid()) {
|
QString filePath;
|
||||||
|
std::tie(index, filePath) = m_pm->previousFile();
|
||||||
|
|
||||||
|
if (index >= 0) {
|
||||||
|
m_graphicsView->showFileFromPath(filePath, false);
|
||||||
m_pm->setCurrentIndex(index);
|
m_pm->setCurrentIndex(index);
|
||||||
m_graphicsView->showFileFromPath(m_pm->localFileByIndex(index));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::galleryNext()
|
void MainWindow::galleryNext()
|
||||||
{
|
{
|
||||||
QModelIndex index = m_pm->nextIndex();
|
int index;
|
||||||
if (index.isValid()) {
|
QString filePath;
|
||||||
|
std::tie(index, filePath) = m_pm->nextFile();
|
||||||
|
|
||||||
|
if (index >= 0) {
|
||||||
|
m_graphicsView->showFileFromPath(filePath, false);
|
||||||
m_pm->setCurrentIndex(index);
|
m_pm->setCurrentIndex(index);
|
||||||
m_graphicsView->showFileFromPath(m_pm->localFileByIndex(index));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Only use this to update minor information.
|
|
||||||
void MainWindow::galleryCurrent(bool showLoadImageHintWhenEmpty, bool reloadImage)
|
|
||||||
{
|
|
||||||
QModelIndex index = m_pm->curIndex();
|
|
||||||
bool shouldResetfileWatcher = true;
|
|
||||||
if (index.isValid()) {
|
|
||||||
const QString & localFilePath(m_pm->localFileByIndex(index));
|
|
||||||
if (reloadImage) m_graphicsView->showFileFromPath(localFilePath);
|
|
||||||
shouldResetfileWatcher = !updateFileWatcher(localFilePath);
|
|
||||||
setWindowTitle(m_pm->urlByIndex(index).fileName());
|
|
||||||
} else if (showLoadImageHintWhenEmpty && m_pm->totalCount() <= 0) {
|
|
||||||
m_graphicsView->showText(QCoreApplication::translate("GraphicsScene", "Drag image here"));
|
|
||||||
}
|
|
||||||
|
|
||||||
updateGalleryButtonsVisibility();
|
|
||||||
|
|
||||||
if (shouldResetfileWatcher) updateFileWatcher();
|
|
||||||
}
|
|
||||||
|
|
||||||
QStringList MainWindow::supportedImageFormats()
|
|
||||||
{
|
|
||||||
QStringList formatFilters {
|
|
||||||
#if QT_VERSION < QT_VERSION_CHECK(6, 8, 0)
|
|
||||||
QStringLiteral("*.jfif")
|
|
||||||
#endif // QT_VERSION < QT_VERSION_CHECK(6, 8, 0)
|
|
||||||
};
|
|
||||||
for (const QByteArray &item : QImageReader::supportedImageFormats()) {
|
|
||||||
formatFilters.append(QStringLiteral("*.") % QString::fromLocal8Bit(item));
|
|
||||||
}
|
|
||||||
return formatFilters;
|
|
||||||
}
|
|
||||||
|
|
||||||
void MainWindow::showEvent(QShowEvent *event)
|
void MainWindow::showEvent(QShowEvent *event)
|
||||||
{
|
{
|
||||||
updateWidgetsPosition();
|
updateWidgetsPosition();
|
||||||
@ -310,7 +289,7 @@ void MainWindow::showEvent(QShowEvent *event)
|
|||||||
return FramelessWindow::showEvent(event);
|
return FramelessWindow::showEvent(event);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::enterEvent(QEnterEvent *event)
|
void MainWindow::enterEvent(QT_ENTER_EVENT *event)
|
||||||
{
|
{
|
||||||
m_bottomButtonGroup->setOpacity(1);
|
m_bottomButtonGroup->setOpacity(1);
|
||||||
m_gv->setOpacity(1);
|
m_gv->setOpacity(1);
|
||||||
@ -351,7 +330,11 @@ void MainWindow::mouseMoveEvent(QMouseEvent *event)
|
|||||||
{
|
{
|
||||||
if (event->buttons() & Qt::LeftButton && m_clickedOnWindow && !isMaximized() && !isFullScreen()) {
|
if (event->buttons() & Qt::LeftButton && m_clickedOnWindow && !isMaximized() && !isFullScreen()) {
|
||||||
if (!window()->windowHandle()->startSystemMove()) {
|
if (!window()->windowHandle()->startSystemMove()) {
|
||||||
|
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
||||||
move(event->globalPosition().toPoint() - m_oldMousePos);
|
move(event->globalPosition().toPoint() - m_oldMousePos);
|
||||||
|
#else
|
||||||
|
move(event->globalPos() - m_oldMousePos);
|
||||||
|
#endif // QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
||||||
}
|
}
|
||||||
event->accept();
|
event->accept();
|
||||||
}
|
}
|
||||||
@ -392,10 +375,6 @@ void MainWindow::mouseDoubleClickEvent(QMouseEvent *event)
|
|||||||
toggleMaximize();
|
toggleMaximize();
|
||||||
event->accept();
|
event->accept();
|
||||||
break;
|
break;
|
||||||
case Settings::DoubleClickBehavior::FullScreen:
|
|
||||||
toggleFullscreen();
|
|
||||||
event->accept();
|
|
||||||
break;
|
|
||||||
case Settings::DoubleClickBehavior::Ignore:
|
case Settings::DoubleClickBehavior::Ignore:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -453,11 +432,12 @@ void MainWindow::contextMenuEvent(QContextMenuEvent *event)
|
|||||||
QMenu * menu = new QMenu;
|
QMenu * menu = new QMenu;
|
||||||
QMenu * copyMenu = new QMenu(tr("&Copy"));
|
QMenu * copyMenu = new QMenu(tr("&Copy"));
|
||||||
QUrl currentFileUrl = currentImageFileUrl();
|
QUrl currentFileUrl = currentImageFileUrl();
|
||||||
|
QImage clipboardImage;
|
||||||
|
QUrl clipboardFileUrl;
|
||||||
|
|
||||||
QAction * copyPixmap = m_am->actionCopyPixmap;
|
QAction * copyPixmap = m_am->actionCopyPixmap;
|
||||||
QAction * copyFilePath = m_am->actionCopyFilePath;
|
QAction * copyFilePath = m_am->actionCopyFilePath;
|
||||||
|
|
||||||
copyMenu->setIcon(QIcon::fromTheme(u"edit-copy"_s));
|
|
||||||
copyMenu->addAction(copyPixmap);
|
copyMenu->addAction(copyPixmap);
|
||||||
if (currentFileUrl.isValid()) {
|
if (currentFileUrl.isValid()) {
|
||||||
copyMenu->addAction(copyFilePath);
|
copyMenu->addAction(copyFilePath);
|
||||||
@ -465,8 +445,6 @@ void MainWindow::contextMenuEvent(QContextMenuEvent *event)
|
|||||||
|
|
||||||
QAction * paste = m_am->actionPaste;
|
QAction * paste = m_am->actionPaste;
|
||||||
|
|
||||||
QAction * trash = m_am->actionTrash;
|
|
||||||
|
|
||||||
QAction * stayOnTopMode = m_am->actionToggleStayOnTop;
|
QAction * stayOnTopMode = m_am->actionToggleStayOnTop;
|
||||||
stayOnTopMode->setCheckable(true);
|
stayOnTopMode->setCheckable(true);
|
||||||
stayOnTopMode->setChecked(stayOnTop());
|
stayOnTopMode->setChecked(stayOnTop());
|
||||||
@ -507,14 +485,15 @@ void MainWindow::contextMenuEvent(QContextMenuEvent *event)
|
|||||||
menu->addSeparator();
|
menu->addSeparator();
|
||||||
menu->addAction(stayOnTopMode);
|
menu->addAction(stayOnTopMode);
|
||||||
menu->addAction(protectedMode);
|
menu->addAction(protectedMode);
|
||||||
|
#if 0
|
||||||
menu->addAction(avoidResetTransform);
|
menu->addAction(avoidResetTransform);
|
||||||
|
#endif // 0
|
||||||
menu->addSeparator();
|
menu->addSeparator();
|
||||||
menu->addAction(toggleSettings);
|
menu->addAction(toggleSettings);
|
||||||
menu->addAction(helpAction);
|
menu->addAction(helpAction);
|
||||||
if (currentFileUrl.isValid()) {
|
if (currentFileUrl.isValid()) {
|
||||||
menu->addSeparator();
|
menu->addSeparator();
|
||||||
if (currentFileUrl.isLocalFile()) {
|
if (currentFileUrl.isLocalFile()) {
|
||||||
menu->addAction(trash);
|
|
||||||
menu->addAction(m_am->actionLocateInFileManager);
|
menu->addAction(m_am->actionLocateInFileManager);
|
||||||
}
|
}
|
||||||
menu->addAction(propertiesAction);
|
menu->addAction(propertiesAction);
|
||||||
@ -526,50 +505,6 @@ void MainWindow::contextMenuEvent(QContextMenuEvent *event)
|
|||||||
return FramelessWindow::contextMenuEvent(event);
|
return FramelessWindow::contextMenuEvent(event);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::dragEnterEvent(QDragEnterEvent *event)
|
|
||||||
{
|
|
||||||
if (event->mimeData()->hasUrls() || event->mimeData()->hasImage() || event->mimeData()->hasText()) {
|
|
||||||
event->acceptProposedAction();
|
|
||||||
} else {
|
|
||||||
event->ignore();
|
|
||||||
}
|
|
||||||
|
|
||||||
return FramelessWindow::dragEnterEvent(event);
|
|
||||||
}
|
|
||||||
|
|
||||||
void MainWindow::dragMoveEvent(QDragMoveEvent *event)
|
|
||||||
{
|
|
||||||
Q_UNUSED(event)
|
|
||||||
}
|
|
||||||
|
|
||||||
void MainWindow::dropEvent(QDropEvent *event)
|
|
||||||
{
|
|
||||||
event->acceptProposedAction();
|
|
||||||
|
|
||||||
const QMimeData * mimeData = event->mimeData();
|
|
||||||
|
|
||||||
if (mimeData->hasUrls()) {
|
|
||||||
const QList<QUrl> &urls = mimeData->urls();
|
|
||||||
if (urls.isEmpty()) {
|
|
||||||
m_graphicsView->showText(tr("File url list is empty"));
|
|
||||||
} else {
|
|
||||||
showUrls(urls);
|
|
||||||
}
|
|
||||||
} else if (mimeData->hasImage()) {
|
|
||||||
QImage img = qvariant_cast<QImage>(mimeData->imageData());
|
|
||||||
QPixmap pixmap = QPixmap::fromImage(img);
|
|
||||||
if (pixmap.isNull()) {
|
|
||||||
m_graphicsView->showText(tr("Image data is invalid"));
|
|
||||||
} else {
|
|
||||||
m_graphicsView->showImage(pixmap);
|
|
||||||
}
|
|
||||||
} else if (mimeData->hasText()) {
|
|
||||||
m_graphicsView->showText(mimeData->text());
|
|
||||||
} else {
|
|
||||||
m_graphicsView->showText(tr("Not supported mimedata: %1").arg(mimeData->formats().first()));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void MainWindow::centerWindow()
|
void MainWindow::centerWindow()
|
||||||
{
|
{
|
||||||
this->setGeometry(
|
this->setGeometry(
|
||||||
@ -577,23 +512,19 @@ void MainWindow::centerWindow()
|
|||||||
Qt::LeftToRight,
|
Qt::LeftToRight,
|
||||||
Qt::AlignCenter,
|
Qt::AlignCenter,
|
||||||
this->size(),
|
this->size(),
|
||||||
qApp->screenAt(QCursor::pos())->availableGeometry()
|
qApp->screenAt(QCursor::pos())->geometry()
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::closeWindow()
|
void MainWindow::closeWindow()
|
||||||
{
|
{
|
||||||
if (Settings::instance()->useBuiltInCloseAnimation()) {
|
QRect windowRect(this->geometry());
|
||||||
QRect windowRect(this->geometry());
|
m_floatUpAnimation->setStartValue(windowRect);
|
||||||
m_floatUpAnimation->setStartValue(windowRect);
|
m_floatUpAnimation->setEndValue(windowRect.adjusted(0, -80, 0, 0));
|
||||||
m_floatUpAnimation->setEndValue(windowRect.adjusted(0, -80, 0, 0));
|
m_floatUpAnimation->setStartValue(QRect(this->geometry().x(), this->geometry().y(), this->geometry().width(), this->geometry().height()));
|
||||||
m_floatUpAnimation->setStartValue(QRect(this->geometry().x(), this->geometry().y(), this->geometry().width(), this->geometry().height()));
|
m_floatUpAnimation->setEndValue(QRect(this->geometry().x(), this->geometry().y()-80, this->geometry().width(), this->geometry().height()));
|
||||||
m_floatUpAnimation->setEndValue(QRect(this->geometry().x(), this->geometry().y()-80, this->geometry().width(), this->geometry().height()));
|
m_exitAnimationGroup->start();
|
||||||
m_exitAnimationGroup->start();
|
|
||||||
} else {
|
|
||||||
doCloseWindow();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::updateWidgetsPosition()
|
void MainWindow::updateWidgetsPosition()
|
||||||
@ -611,7 +542,8 @@ void MainWindow::toggleProtectedMode()
|
|||||||
{
|
{
|
||||||
m_protectedMode = !m_protectedMode;
|
m_protectedMode = !m_protectedMode;
|
||||||
m_closeButton->setVisible(!m_protectedMode);
|
m_closeButton->setVisible(!m_protectedMode);
|
||||||
updateGalleryButtonsVisibility();
|
m_prevButton->setVisible(!m_protectedMode);
|
||||||
|
m_nextButton->setVisible(!m_protectedMode);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::toggleStayOnTop()
|
void MainWindow::toggleStayOnTop()
|
||||||
@ -765,34 +697,12 @@ void MainWindow::on_actionPaste_triggered()
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!clipboardImage.isNull()) {
|
if (!clipboardImage.isNull()) {
|
||||||
setWindowTitle(tr("Image From Clipboard"));
|
|
||||||
m_graphicsView->showImage(clipboardImage);
|
m_graphicsView->showImage(clipboardImage);
|
||||||
clearGallery();
|
clearGallery();
|
||||||
} else if (clipboardFileUrl.isValid()) {
|
} else if (clipboardFileUrl.isValid()) {
|
||||||
m_graphicsView->showFileFromPath(clipboardFileUrl.toLocalFile());
|
QString localFile(clipboardFileUrl.toLocalFile());
|
||||||
m_pm->loadPlaylist(clipboardFileUrl);
|
m_graphicsView->showFileFromPath(localFile, true);
|
||||||
}
|
m_pm->setCurrentFile(localFile);
|
||||||
}
|
|
||||||
|
|
||||||
void MainWindow::on_actionTrash_triggered()
|
|
||||||
{
|
|
||||||
QModelIndex index = m_pm->curIndex();
|
|
||||||
if (!m_pm->urlByIndex(index).isLocalFile()) return;
|
|
||||||
|
|
||||||
QFile file(m_pm->localFileByIndex(index));
|
|
||||||
QFileInfo fileInfo(file.fileName());
|
|
||||||
|
|
||||||
QMessageBox::StandardButton result = QMessageBox::question(this, tr("Move to Trash"),
|
|
||||||
tr("Are you sure you want to move \"%1\" to recycle bin?").arg(fileInfo.fileName()));
|
|
||||||
if (result == QMessageBox::Yes) {
|
|
||||||
bool succ = file.moveToTrash();
|
|
||||||
if (!succ) {
|
|
||||||
QMessageBox::warning(this, tr("Failed to move file to trash"),
|
|
||||||
tr("Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation."));
|
|
||||||
} else {
|
|
||||||
m_pm->removeAt(index);
|
|
||||||
galleryCurrent(true, true);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -809,13 +719,6 @@ void MainWindow::on_actionRotateClockwise_triggered()
|
|||||||
m_gv->setVisible(false);
|
m_gv->setVisible(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::on_actionRotateCounterClockwise_triggered()
|
|
||||||
{
|
|
||||||
m_graphicsView->rotateView(false);
|
|
||||||
m_graphicsView->displayScene();
|
|
||||||
m_gv->setVisible(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
void MainWindow::on_actionPrevPicture_triggered()
|
void MainWindow::on_actionPrevPicture_triggered()
|
||||||
{
|
{
|
||||||
galleryPrev();
|
galleryPrev();
|
||||||
@ -826,16 +729,6 @@ void MainWindow::on_actionNextPicture_triggered()
|
|||||||
galleryNext();
|
galleryNext();
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::on_actionTogglePauseAnimation_triggered()
|
|
||||||
{
|
|
||||||
m_graphicsView->scene()->togglePauseAnimation();
|
|
||||||
}
|
|
||||||
|
|
||||||
void MainWindow::on_actionAnimationNextFrame_triggered()
|
|
||||||
{
|
|
||||||
m_graphicsView->scene()->skipAnimationFrame(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
void MainWindow::on_actionToggleStayOnTop_triggered()
|
void MainWindow::on_actionToggleStayOnTop_triggered()
|
||||||
{
|
{
|
||||||
toggleStayOnTop();
|
toggleStayOnTop();
|
||||||
@ -898,9 +791,9 @@ void MainWindow::on_actionLocateInFileManager_triggered()
|
|||||||
QDesktopServices::openUrl(folderUrl);
|
QDesktopServices::openUrl(folderUrl);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
QDBusInterface fm1Iface(u"org.freedesktop.FileManager1"_s,
|
QDBusInterface fm1Iface(QStringLiteral("org.freedesktop.FileManager1"),
|
||||||
u"/org/freedesktop/FileManager1"_s,
|
QStringLiteral("/org/freedesktop/FileManager1"),
|
||||||
u"org.freedesktop.FileManager1"_s);
|
QStringLiteral("org.freedesktop.FileManager1"));
|
||||||
fm1Iface.setTimeout(1000);
|
fm1Iface.setTimeout(1000);
|
||||||
fm1Iface.callWithArgumentList(QDBus::Block, "ShowItems", {
|
fm1Iface.callWithArgumentList(QDBus::Block, "ShowItems", {
|
||||||
QStringList{currentFileUrl.toString()},
|
QStringList{currentFileUrl.toString()},
|
||||||
@ -918,29 +811,3 @@ void MainWindow::on_actionQuitApp_triggered()
|
|||||||
{
|
{
|
||||||
quitAppAction(false);
|
quitAppAction(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::doCloseWindow()
|
|
||||||
{
|
|
||||||
#ifdef Q_OS_MAC
|
|
||||||
this->hide();
|
|
||||||
#else
|
|
||||||
this->close();
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
bool MainWindow::updateFileWatcher(const QString &basePath)
|
|
||||||
{
|
|
||||||
m_fileSystemWatcher->removePaths(m_fileSystemWatcher->files());
|
|
||||||
if (!basePath.isEmpty()) return m_fileSystemWatcher->addPath(basePath);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
void MainWindow::updateGalleryButtonsVisibility()
|
|
||||||
{
|
|
||||||
const int galleryFileCount = m_pm->totalCount();
|
|
||||||
const bool loopGallery = Settings::instance()->loopGallery();
|
|
||||||
m_prevButton->setVisible(!m_protectedMode && galleryFileCount > 1);
|
|
||||||
m_nextButton->setVisible(!m_protectedMode && galleryFileCount > 1);
|
|
||||||
m_prevButton->setEnabled(loopGallery || !m_pm->isFirstIndex());
|
|
||||||
m_nextButton->setEnabled(loopGallery || !m_pm->isLastIndex());
|
|
||||||
}
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// SPDX-FileCopyrightText: 2025 Gary Wang <git@blumia.net>
|
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
@ -11,10 +11,15 @@
|
|||||||
#include <QPropertyAnimation>
|
#include <QPropertyAnimation>
|
||||||
#include <QPushButton>
|
#include <QPushButton>
|
||||||
|
|
||||||
|
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
||||||
|
typedef QEnterEvent QT_ENTER_EVENT;
|
||||||
|
#else
|
||||||
|
typedef QEvent QT_ENTER_EVENT;
|
||||||
|
#endif // QT_VERSION_CHECK(6, 0, 0)
|
||||||
|
|
||||||
QT_BEGIN_NAMESPACE
|
QT_BEGIN_NAMESPACE
|
||||||
class QGraphicsOpacityEffect;
|
class QGraphicsOpacityEffect;
|
||||||
class QGraphicsView;
|
class QGraphicsView;
|
||||||
class QFileSystemWatcher;
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|
||||||
class ActionManager;
|
class ActionManager;
|
||||||
@ -37,15 +42,13 @@ public:
|
|||||||
QUrl currentImageFileUrl() const;
|
QUrl currentImageFileUrl() const;
|
||||||
|
|
||||||
void clearGallery();
|
void clearGallery();
|
||||||
|
void loadGalleryBySingleLocalFile(const QString &path);
|
||||||
void galleryPrev();
|
void galleryPrev();
|
||||||
void galleryNext();
|
void galleryNext();
|
||||||
void galleryCurrent(bool showLoadImageHintWhenEmpty, bool reloadImage);
|
|
||||||
|
|
||||||
static QStringList supportedImageFormats();
|
|
||||||
|
|
||||||
protected slots:
|
protected slots:
|
||||||
void showEvent(QShowEvent *event) override;
|
void showEvent(QShowEvent *event) override;
|
||||||
void enterEvent(QEnterEvent *event) override;
|
void enterEvent(QT_ENTER_EVENT *event) override;
|
||||||
void leaveEvent(QEvent *event) override;
|
void leaveEvent(QEvent *event) override;
|
||||||
void mousePressEvent(QMouseEvent *event) override;
|
void mousePressEvent(QMouseEvent *event) override;
|
||||||
void mouseMoveEvent(QMouseEvent *event) override;
|
void mouseMoveEvent(QMouseEvent *event) override;
|
||||||
@ -54,9 +57,6 @@ protected slots:
|
|||||||
void wheelEvent(QWheelEvent *event) override;
|
void wheelEvent(QWheelEvent *event) override;
|
||||||
void resizeEvent(QResizeEvent *event) override;
|
void resizeEvent(QResizeEvent *event) override;
|
||||||
void contextMenuEvent(QContextMenuEvent *event) override;
|
void contextMenuEvent(QContextMenuEvent *event) override;
|
||||||
void dragEnterEvent(QDragEnterEvent *event) override;
|
|
||||||
void dragMoveEvent(QDragMoveEvent *event) override;
|
|
||||||
void dropEvent(QDropEvent *event) override;
|
|
||||||
|
|
||||||
void centerWindow();
|
void centerWindow();
|
||||||
void closeWindow();
|
void closeWindow();
|
||||||
@ -82,21 +82,16 @@ private slots:
|
|||||||
void on_actionZoomOut_triggered();
|
void on_actionZoomOut_triggered();
|
||||||
void on_actionToggleCheckerboard_triggered();
|
void on_actionToggleCheckerboard_triggered();
|
||||||
void on_actionRotateClockwise_triggered();
|
void on_actionRotateClockwise_triggered();
|
||||||
void on_actionRotateCounterClockwise_triggered();
|
|
||||||
|
|
||||||
void on_actionPrevPicture_triggered();
|
void on_actionPrevPicture_triggered();
|
||||||
void on_actionNextPicture_triggered();
|
void on_actionNextPicture_triggered();
|
||||||
|
|
||||||
void on_actionTogglePauseAnimation_triggered();
|
|
||||||
void on_actionAnimationNextFrame_triggered();
|
|
||||||
|
|
||||||
void on_actionHorizontalFlip_triggered();
|
void on_actionHorizontalFlip_triggered();
|
||||||
void on_actionFitInView_triggered();
|
void on_actionFitInView_triggered();
|
||||||
void on_actionFitByWidth_triggered();
|
void on_actionFitByWidth_triggered();
|
||||||
void on_actionCopyPixmap_triggered();
|
void on_actionCopyPixmap_triggered();
|
||||||
void on_actionCopyFilePath_triggered();
|
void on_actionCopyFilePath_triggered();
|
||||||
void on_actionPaste_triggered();
|
void on_actionPaste_triggered();
|
||||||
void on_actionTrash_triggered();
|
|
||||||
void on_actionToggleStayOnTop_triggered();
|
void on_actionToggleStayOnTop_triggered();
|
||||||
void on_actionToggleProtectMode_triggered();
|
void on_actionToggleProtectMode_triggered();
|
||||||
void on_actionToggleAvoidResetTransform_triggered();
|
void on_actionToggleAvoidResetTransform_triggered();
|
||||||
@ -106,12 +101,6 @@ private slots:
|
|||||||
void on_actionLocateInFileManager_triggered();
|
void on_actionLocateInFileManager_triggered();
|
||||||
void on_actionQuitApp_triggered();
|
void on_actionQuitApp_triggered();
|
||||||
|
|
||||||
void doCloseWindow();
|
|
||||||
|
|
||||||
private:
|
|
||||||
bool updateFileWatcher(const QString & basePath = QString());
|
|
||||||
void updateGalleryButtonsVisibility();
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
ActionManager *m_am;
|
ActionManager *m_am;
|
||||||
PlaylistManager *m_pm;
|
PlaylistManager *m_pm;
|
||||||
@ -120,7 +109,6 @@ private:
|
|||||||
QPropertyAnimation *m_fadeOutAnimation;
|
QPropertyAnimation *m_fadeOutAnimation;
|
||||||
QPropertyAnimation *m_floatUpAnimation;
|
QPropertyAnimation *m_floatUpAnimation;
|
||||||
QParallelAnimationGroup *m_exitAnimationGroup;
|
QParallelAnimationGroup *m_exitAnimationGroup;
|
||||||
QFileSystemWatcher *m_fileSystemWatcher;
|
|
||||||
ToolButton *m_closeButton;
|
ToolButton *m_closeButton;
|
||||||
ToolButton *m_prevButton;
|
ToolButton *m_prevButton;
|
||||||
ToolButton *m_nextButton;
|
ToolButton *m_nextButton;
|
||||||
|
@ -11,8 +11,6 @@
|
|||||||
#include <QFileInfo>
|
#include <QFileInfo>
|
||||||
#include <QImageReader>
|
#include <QImageReader>
|
||||||
|
|
||||||
using namespace Qt::Literals::StringLiterals;
|
|
||||||
|
|
||||||
MetadataModel::MetadataModel(QObject *parent)
|
MetadataModel::MetadataModel(QObject *parent)
|
||||||
: QAbstractItemModel(parent)
|
: QAbstractItemModel(parent)
|
||||||
{
|
{
|
||||||
@ -39,131 +37,131 @@ void MetadataModel::setFile(const QString &imageFilePath)
|
|||||||
const QString & imageDimensionsString = imageSize(imgReader.size());
|
const QString & imageDimensionsString = imageSize(imgReader.size());
|
||||||
const QString & imageRatioString = imageSizeRatio(imgReader.size());
|
const QString & imageRatioString = imageSizeRatio(imgReader.size());
|
||||||
|
|
||||||
appendSection(u"Description"_s, tr("Description", "Section name."));
|
appendSection(QStringLiteral("Description"), tr("Description", "Section name."));
|
||||||
appendSection(u"Origin"_s, tr("Origin", "Section name."));
|
appendSection(QStringLiteral("Origin"), tr("Origin", "Section name."));
|
||||||
appendSection(u"Image"_s, tr("Image", "Section name."));
|
appendSection(QStringLiteral("Image"), tr("Image", "Section name."));
|
||||||
appendSection(u"Camera"_s, tr("Camera", "Section name."));
|
appendSection(QStringLiteral("Camera"), tr("Camera", "Section name."));
|
||||||
appendSection(u"AdvancedPhoto"_s, tr("Advanced photo", "Section name."));
|
appendSection(QStringLiteral("AdvancedPhoto"), tr("Advanced photo", "Section name."));
|
||||||
appendSection(u"GPS"_s, tr("GPS", "Section name."));
|
appendSection(QStringLiteral("GPS"), tr("GPS", "Section name."));
|
||||||
appendSection(u"File"_s, tr("File", "Section name."));
|
appendSection(QStringLiteral("File"), tr("File", "Section name."));
|
||||||
|
|
||||||
if (imgReader.supportsOption(QImageIOHandler::Size)) {
|
if (imgReader.supportsOption(QImageIOHandler::Size)) {
|
||||||
appendProperty(u"Image"_s, u"Image.Dimensions"_s,
|
appendProperty(QStringLiteral("Image"), QStringLiteral("Image.Dimensions"),
|
||||||
tr("Dimensions"), imageDimensionsString);
|
tr("Dimensions"), imageDimensionsString);
|
||||||
appendProperty(u"Image"_s, u"Image.SizeRatio"_s,
|
appendProperty(QStringLiteral("Image"), QStringLiteral("Image.SizeRatio"),
|
||||||
tr("Aspect ratio"), imageRatioString);
|
tr("Aspect ratio"), imageRatioString);
|
||||||
}
|
}
|
||||||
if (imgReader.supportsAnimation() && imgReader.imageCount() > 1) {
|
if (imgReader.supportsAnimation() && imgReader.imageCount() > 1) {
|
||||||
appendProperty(u"Image"_s, u"Image.FrameCount"_s,
|
appendProperty(QStringLiteral("Image"), QStringLiteral("Image.FrameCount"),
|
||||||
tr("Frame count"), QString::number(imgReader.imageCount()));
|
tr("Frame count"), QString::number(imgReader.imageCount()));
|
||||||
}
|
}
|
||||||
|
|
||||||
appendProperty(u"File"_s, u"File.Name"_s,
|
appendProperty(QStringLiteral("File"), QStringLiteral("File.Name"),
|
||||||
tr("Name"), fileInfo.fileName());
|
tr("Name"), fileInfo.fileName());
|
||||||
appendProperty(u"File"_s, u"File.ItemType"_s,
|
appendProperty(QStringLiteral("File"), QStringLiteral("File.ItemType"),
|
||||||
tr("Item type"), itemTypeString);
|
tr("Item type"), itemTypeString);
|
||||||
appendProperty(u"File"_s, u"File.Path"_s,
|
appendProperty(QStringLiteral("File"), QStringLiteral("File.Path"),
|
||||||
tr("Folder path"), QDir::toNativeSeparators(fileInfo.path()));
|
tr("Folder path"), QDir::toNativeSeparators(fileInfo.path()));
|
||||||
appendProperty(u"File"_s, u"File.Size"_s,
|
appendProperty(QStringLiteral("File"), QStringLiteral("File.Size"),
|
||||||
tr("Size"), sizeString);
|
tr("Size"), sizeString);
|
||||||
appendProperty(u"File"_s, u"File.CreatedTime"_s,
|
appendProperty(QStringLiteral("File"), QStringLiteral("File.CreatedTime"),
|
||||||
tr("Date created"), birthTimeString);
|
tr("Date created"), birthTimeString);
|
||||||
appendProperty(u"File"_s, u"File.LastModified"_s,
|
appendProperty(QStringLiteral("File"), QStringLiteral("File.LastModified"),
|
||||||
tr("Date modified"), lastModifiedTimeString);
|
tr("Date modified"), lastModifiedTimeString);
|
||||||
|
|
||||||
Exiv2Wrapper wrapper;
|
Exiv2Wrapper wrapper;
|
||||||
if (wrapper.load(imageFilePath)) {
|
if (wrapper.load(imageFilePath)) {
|
||||||
wrapper.cacheSections();
|
wrapper.cacheSections();
|
||||||
|
|
||||||
appendExivPropertyIfExist(wrapper, u"Description"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("Description"),
|
||||||
u"Xmp.dc.title"_s, tr("Title"), true);
|
QStringLiteral("Xmp.dc.title"), tr("Title"), true);
|
||||||
appendExivPropertyIfExist(wrapper, u"Description"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("Description"),
|
||||||
u"Exif.Image.ImageDescription"_s, tr("Subject"), true);
|
QStringLiteral("Exif.Image.ImageDescription"), tr("Subject"), true);
|
||||||
appendExivPropertyIfExist(wrapper, u"Description"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("Description"),
|
||||||
u"Exif.Image.Rating"_s, tr("Rating"));
|
QStringLiteral("Exif.Image.Rating"), tr("Rating"));
|
||||||
appendExivPropertyIfExist(wrapper, u"Description"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("Description"),
|
||||||
u"Xmp.dc.subject"_s, tr("Tags"));
|
QStringLiteral("Xmp.dc.subject"), tr("Tags"));
|
||||||
appendPropertyIfNotEmpty(u"Description"_s, u"Description.Comments"_s,
|
appendPropertyIfNotEmpty(QStringLiteral("Description"), QStringLiteral("Description.Comments"),
|
||||||
tr("Comments"), wrapper.comment());
|
tr("Comments"), wrapper.comment());
|
||||||
|
|
||||||
appendExivPropertyIfExist(wrapper, u"Origin"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("Origin"),
|
||||||
u"Exif.Image.Artist"_s, tr("Authors"));
|
QStringLiteral("Exif.Image.Artist"), tr("Authors"));
|
||||||
appendExivPropertyIfExist(wrapper, u"Origin"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("Origin"),
|
||||||
u"Exif.Photo.DateTimeOriginal"_s, tr("Date taken"));
|
QStringLiteral("Exif.Photo.DateTimeOriginal"), tr("Date taken"));
|
||||||
// FIXME: We may fetch the same type of metadata from different metadata collection.
|
// FIXME: We may fetch the same type of metadata from different metadata collection.
|
||||||
// Current implementation is not pretty and may need to do a rework...
|
// Current implementation is not pretty and may need to do a rework...
|
||||||
// appendExivPropertyIfExist(wrapper, QStringLiteral("Origin"),
|
// appendExivPropertyIfExist(wrapper, QStringLiteral("Origin"),
|
||||||
// QStringLiteral("Xmp.xmp.CreatorTool"), tr("Program name"));
|
// QStringLiteral("Xmp.xmp.CreatorTool"), tr("Program name"));
|
||||||
appendExivPropertyIfExist(wrapper, u"Origin"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("Origin"),
|
||||||
u"Exif.Image.Software"_s, tr("Program name"));
|
QStringLiteral("Exif.Image.Software"), tr("Program name"));
|
||||||
appendExivPropertyIfExist(wrapper, u"Origin"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("Origin"),
|
||||||
u"Exif.Image.Copyright"_s, tr("Copyright"));
|
QStringLiteral("Exif.Image.Copyright"), tr("Copyright"));
|
||||||
|
|
||||||
appendExivPropertyIfExist(wrapper, u"Image"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("Image"),
|
||||||
u"Exif.Image.XResolution"_s, tr("Horizontal resolution"));
|
QStringLiteral("Exif.Image.XResolution"), tr("Horizontal resolution"));
|
||||||
appendExivPropertyIfExist(wrapper, u"Image"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("Image"),
|
||||||
u"Exif.Image.YResolution"_s, tr("Vertical resolution"));
|
QStringLiteral("Exif.Image.YResolution"), tr("Vertical resolution"));
|
||||||
appendExivPropertyIfExist(wrapper, u"Image"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("Image"),
|
||||||
u"Exif.Image.ResolutionUnit"_s, tr("Resolution unit"));
|
QStringLiteral("Exif.Image.ResolutionUnit"), tr("Resolution unit"));
|
||||||
appendExivPropertyIfExist(wrapper, u"Image"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("Image"),
|
||||||
u"Exif.Photo.ColorSpace"_s, tr("Colour representation"));
|
QStringLiteral("Exif.Photo.ColorSpace"), tr("Colour representation"));
|
||||||
|
|
||||||
appendExivPropertyIfExist(wrapper, u"Camera"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("Camera"),
|
||||||
u"Exif.Image.Make"_s, tr("Camera maker"));
|
QStringLiteral("Exif.Image.Make"), tr("Camera maker"));
|
||||||
appendExivPropertyIfExist(wrapper, u"Camera"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("Camera"),
|
||||||
u"Exif.Image.Model"_s, tr("Camera model"));
|
QStringLiteral("Exif.Image.Model"), tr("Camera model"));
|
||||||
appendExivPropertyIfExist(wrapper, u"Camera"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("Camera"),
|
||||||
u"Exif.Photo.FNumber"_s, tr("F-stop"));
|
QStringLiteral("Exif.Photo.FNumber"), tr("F-stop"));
|
||||||
appendExivPropertyIfExist(wrapper, u"Camera"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("Camera"),
|
||||||
u"Exif.Photo.ExposureTime"_s, tr("Exposure time"));
|
QStringLiteral("Exif.Photo.ExposureTime"), tr("Exposure time"));
|
||||||
appendExivPropertyIfExist(wrapper, u"Camera"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("Camera"),
|
||||||
u"Exif.Photo.ISOSpeedRatings"_s, tr("ISO speed"));
|
QStringLiteral("Exif.Photo.ISOSpeedRatings"), tr("ISO speed"));
|
||||||
appendExivPropertyIfExist(wrapper, u"Camera"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("Camera"),
|
||||||
u"Exif.Photo.ExposureBiasValue"_s, tr("Exposure bias"));
|
QStringLiteral("Exif.Photo.ExposureBiasValue"), tr("Exposure bias"));
|
||||||
appendExivPropertyIfExist(wrapper, u"Camera"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("Camera"),
|
||||||
u"Exif.Photo.FocalLength"_s, tr("Focal length"));
|
QStringLiteral("Exif.Photo.FocalLength"), tr("Focal length"));
|
||||||
appendExivPropertyIfExist(wrapper, u"Camera"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("Camera"),
|
||||||
u"Exif.Photo.MaxApertureValue"_s, tr("Max aperture"));
|
QStringLiteral("Exif.Photo.MaxApertureValue"), tr("Max aperture"));
|
||||||
appendExivPropertyIfExist(wrapper, u"Camera"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("Camera"),
|
||||||
u"Exif.Photo.MeteringMode"_s, tr("Metering mode"));
|
QStringLiteral("Exif.Photo.MeteringMode"), tr("Metering mode"));
|
||||||
appendExivPropertyIfExist(wrapper, u"Camera"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("Camera"),
|
||||||
u"Exif.Photo.SubjectDistance"_s, tr("Subject distance"));
|
QStringLiteral("Exif.Photo.SubjectDistance"), tr("Subject distance"));
|
||||||
appendExivPropertyIfExist(wrapper, u"Camera"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("Camera"),
|
||||||
u"Exif.Photo.Flash"_s, tr("Flash mode"));
|
QStringLiteral("Exif.Photo.Flash"), tr("Flash mode"));
|
||||||
appendExivPropertyIfExist(wrapper, u"Camera"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("Camera"),
|
||||||
u"Exif.Photo.FocalLengthIn35mmFilm"_s, tr("35mm focal length"));
|
QStringLiteral("Exif.Photo.FocalLengthIn35mmFilm"), tr("35mm focal length"));
|
||||||
|
|
||||||
appendExivPropertyIfExist(wrapper, u"AdvancedPhoto"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("AdvancedPhoto"),
|
||||||
u"Exif.Photo.LensModel"_s, tr("Lens model"));
|
QStringLiteral("Exif.Photo.LensModel"), tr("Lens model"));
|
||||||
appendExivPropertyIfExist(wrapper, u"AdvancedPhoto"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("AdvancedPhoto"),
|
||||||
u"Exif.Photo.Contrast"_s, tr("Contrast"));
|
QStringLiteral("Exif.Photo.Contrast"), tr("Contrast"));
|
||||||
appendExivPropertyIfExist(wrapper, u"AdvancedPhoto"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("AdvancedPhoto"),
|
||||||
u"Exif.Photo.BrightnessValue"_s, tr("Brightness"));
|
QStringLiteral("Exif.Photo.BrightnessValue"), tr("Brightness"));
|
||||||
appendExivPropertyIfExist(wrapper, u"AdvancedPhoto"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("AdvancedPhoto"),
|
||||||
u"Exif.Photo.ExposureProgram"_s, tr("Exposure program"));
|
QStringLiteral("Exif.Photo.ExposureProgram"), tr("Exposure program"));
|
||||||
appendExivPropertyIfExist(wrapper, u"AdvancedPhoto"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("AdvancedPhoto"),
|
||||||
u"Exif.Photo.Saturation"_s, tr("Saturation"));
|
QStringLiteral("Exif.Photo.Saturation"), tr("Saturation"));
|
||||||
appendExivPropertyIfExist(wrapper, u"AdvancedPhoto"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("AdvancedPhoto"),
|
||||||
u"Exif.Photo.Sharpness"_s, tr("Sharpness"));
|
QStringLiteral("Exif.Photo.Sharpness"), tr("Sharpness"));
|
||||||
appendExivPropertyIfExist(wrapper, u"AdvancedPhoto"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("AdvancedPhoto"),
|
||||||
u"Exif.Photo.WhiteBalance"_s, tr("White balance"));
|
QStringLiteral("Exif.Photo.WhiteBalance"), tr("White balance"));
|
||||||
appendExivPropertyIfExist(wrapper, u"AdvancedPhoto"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("AdvancedPhoto"),
|
||||||
u"Exif.Photo.DigitalZoomRatio"_s, tr("Digital zoom"));
|
QStringLiteral("Exif.Photo.DigitalZoomRatio"), tr("Digital zoom"));
|
||||||
appendExivPropertyIfExist(wrapper, u"AdvancedPhoto"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("AdvancedPhoto"),
|
||||||
u"Exif.Photo.ExifVersion"_s, tr("EXIF version"));
|
QStringLiteral("Exif.Photo.ExifVersion"), tr("EXIF version"));
|
||||||
|
|
||||||
appendExivPropertyIfExist(wrapper, u"GPS"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("GPS"),
|
||||||
u"Exif.GPSInfo.GPSLatitudeRef"_s, tr("Latitude reference"));
|
QStringLiteral("Exif.GPSInfo.GPSLatitudeRef"), tr("Latitude reference"));
|
||||||
appendExivPropertyIfExist(wrapper, u"GPS"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("GPS"),
|
||||||
u"Exif.GPSInfo.GPSLatitude"_s, tr("Latitude"));
|
QStringLiteral("Exif.GPSInfo.GPSLatitude"), tr("Latitude"));
|
||||||
appendExivPropertyIfExist(wrapper, u"GPS"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("GPS"),
|
||||||
u"Exif.GPSInfo.GPSLongitudeRef"_s, tr("Longitude reference"));
|
QStringLiteral("Exif.GPSInfo.GPSLongitudeRef"), tr("Longitude reference"));
|
||||||
appendExivPropertyIfExist(wrapper, u"GPS"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("GPS"),
|
||||||
u"Exif.GPSInfo.GPSLongitude"_s, tr("Longitude"));
|
QStringLiteral("Exif.GPSInfo.GPSLongitude"), tr("Longitude"));
|
||||||
appendExivPropertyIfExist(wrapper, u"GPS"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("GPS"),
|
||||||
u"Exif.GPSInfo.GPSAltitudeRef"_s, tr("Altitude reference"));
|
QStringLiteral("Exif.GPSInfo.GPSAltitudeRef"), tr("Altitude reference"));
|
||||||
appendExivPropertyIfExist(wrapper, u"GPS"_s,
|
appendExivPropertyIfExist(wrapper, QStringLiteral("GPS"),
|
||||||
u"Exif.GPSInfo.GPSAltitude"_s, tr("Altitude"));
|
QStringLiteral("Exif.GPSInfo.GPSAltitude"), tr("Altitude"));
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// SPDX-FileCopyrightText: 2025 Gary Wang <git@blumia.net>
|
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
@ -9,152 +9,11 @@
|
|||||||
#include <QFileInfo>
|
#include <QFileInfo>
|
||||||
#include <QUrl>
|
#include <QUrl>
|
||||||
|
|
||||||
PlaylistModel::PlaylistModel(QObject *parent)
|
PlaylistManager::PlaylistManager(PlaylistType type, QObject *parent)
|
||||||
: QAbstractListModel(parent)
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
PlaylistModel::~PlaylistModel()
|
|
||||||
= default;
|
|
||||||
|
|
||||||
void PlaylistModel::setPlaylist(const QList<QUrl> &urls)
|
|
||||||
{
|
|
||||||
beginResetModel();
|
|
||||||
m_playlist = urls;
|
|
||||||
endResetModel();
|
|
||||||
}
|
|
||||||
|
|
||||||
QModelIndex PlaylistModel::loadPlaylist(const QList<QUrl> & urls)
|
|
||||||
{
|
|
||||||
if (urls.isEmpty()) return {};
|
|
||||||
if (urls.count() == 1) {
|
|
||||||
return loadPlaylist(urls.constFirst());
|
|
||||||
} else {
|
|
||||||
setPlaylist(urls);
|
|
||||||
return index(0);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
QModelIndex PlaylistModel::loadPlaylist(const QUrl &url)
|
|
||||||
{
|
|
||||||
QFileInfo info(url.toLocalFile());
|
|
||||||
QDir dir(info.path());
|
|
||||||
QString && currentFileName = info.fileName();
|
|
||||||
|
|
||||||
if (dir.path() == m_currentDir) {
|
|
||||||
int idx = indexOf(url);
|
|
||||||
return idx == -1 ? appendToPlaylist(url) : index(idx);
|
|
||||||
}
|
|
||||||
|
|
||||||
QStringList entryList = dir.entryList(
|
|
||||||
m_autoLoadSuffixes,
|
|
||||||
QDir::Files | QDir::NoSymLinks, QDir::NoSort);
|
|
||||||
|
|
||||||
QCollator collator;
|
|
||||||
collator.setNumericMode(true);
|
|
||||||
|
|
||||||
std::sort(entryList.begin(), entryList.end(), collator);
|
|
||||||
|
|
||||||
QList<QUrl> playlist;
|
|
||||||
|
|
||||||
int idx = -1;
|
|
||||||
for (int i = 0; i < entryList.count(); i++) {
|
|
||||||
const QString & fileName = entryList.at(i);
|
|
||||||
const QString & oneEntry = dir.absoluteFilePath(fileName);
|
|
||||||
const QUrl & url = QUrl::fromLocalFile(oneEntry);
|
|
||||||
playlist.append(url);
|
|
||||||
if (fileName == currentFileName) {
|
|
||||||
idx = i;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (idx == -1) {
|
|
||||||
idx = playlist.count();
|
|
||||||
playlist.append(url);
|
|
||||||
}
|
|
||||||
m_currentDir = dir.path();
|
|
||||||
|
|
||||||
setPlaylist(playlist);
|
|
||||||
|
|
||||||
return index(idx);
|
|
||||||
}
|
|
||||||
|
|
||||||
QModelIndex PlaylistModel::appendToPlaylist(const QUrl &url)
|
|
||||||
{
|
|
||||||
const int lastIndex = rowCount();
|
|
||||||
beginInsertRows(QModelIndex(), lastIndex, lastIndex);
|
|
||||||
m_playlist.append(url);
|
|
||||||
endInsertRows();
|
|
||||||
return index(lastIndex);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool PlaylistModel::removeAt(int index)
|
|
||||||
{
|
|
||||||
if (index < 0 || index >= rowCount()) return false;
|
|
||||||
beginRemoveRows(QModelIndex(), index, index);
|
|
||||||
m_playlist.removeAt(index);
|
|
||||||
endRemoveRows();
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
int PlaylistModel::indexOf(const QUrl &url) const
|
|
||||||
{
|
|
||||||
return m_playlist.indexOf(url);
|
|
||||||
}
|
|
||||||
|
|
||||||
QUrl PlaylistModel::urlByIndex(int index) const
|
|
||||||
{
|
|
||||||
return m_playlist.value(index);
|
|
||||||
}
|
|
||||||
|
|
||||||
QStringList PlaylistModel::autoLoadFilterSuffixes() const
|
|
||||||
{
|
|
||||||
return m_autoLoadSuffixes;
|
|
||||||
}
|
|
||||||
|
|
||||||
QHash<int, QByteArray> PlaylistModel::roleNames() const
|
|
||||||
{
|
|
||||||
QHash<int, QByteArray> result = QAbstractListModel::roleNames();
|
|
||||||
result.insert(UrlRole, "url");
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
int PlaylistModel::rowCount(const QModelIndex &parent) const
|
|
||||||
{
|
|
||||||
return m_playlist.count();
|
|
||||||
}
|
|
||||||
|
|
||||||
QVariant PlaylistModel::data(const QModelIndex &index, int role) const
|
|
||||||
{
|
|
||||||
if (!index.isValid()) return {};
|
|
||||||
|
|
||||||
switch (role) {
|
|
||||||
case Qt::DisplayRole:
|
|
||||||
return m_playlist.at(index.row()).fileName();
|
|
||||||
case UrlRole:
|
|
||||||
return m_playlist.at(index.row());
|
|
||||||
}
|
|
||||||
|
|
||||||
return {};
|
|
||||||
}
|
|
||||||
|
|
||||||
PlaylistManager::PlaylistManager(QObject *parent)
|
|
||||||
: QObject(parent)
|
: QObject(parent)
|
||||||
|
, m_type(type)
|
||||||
{
|
{
|
||||||
connect(&m_model, &PlaylistModel::rowsRemoved, this,
|
|
||||||
[this](const QModelIndex &, int, int) {
|
|
||||||
if (m_model.rowCount() <= m_currentIndex) {
|
|
||||||
setProperty("currentIndex", m_currentIndex - 1);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
auto onRowCountChanged = [this](){
|
|
||||||
emit totalCountChanged(m_model.rowCount());
|
|
||||||
};
|
|
||||||
|
|
||||||
connect(&m_model, &PlaylistModel::rowsInserted, this, onRowCountChanged);
|
|
||||||
connect(&m_model, &PlaylistModel::rowsRemoved, this, onRowCountChanged);
|
|
||||||
connect(&m_model, &PlaylistModel::modelReset, this, onRowCountChanged);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
PlaylistManager::~PlaylistManager()
|
PlaylistManager::~PlaylistManager()
|
||||||
@ -162,117 +21,150 @@ PlaylistManager::~PlaylistManager()
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
PlaylistModel *PlaylistManager::model()
|
void PlaylistManager::setPlaylistType(PlaylistManager::PlaylistType type)
|
||||||
{
|
{
|
||||||
return &m_model;
|
m_type = type;
|
||||||
|
}
|
||||||
|
|
||||||
|
PlaylistManager::PlaylistType PlaylistManager::playlistType() const
|
||||||
|
{
|
||||||
|
return m_type;
|
||||||
|
}
|
||||||
|
|
||||||
|
QStringList PlaylistManager::autoLoadFilterSuffix() const
|
||||||
|
{
|
||||||
|
return m_autoLoadSuffix;
|
||||||
|
}
|
||||||
|
|
||||||
|
void PlaylistManager::setAutoLoadFilterSuffix(const QStringList & nameFilters)
|
||||||
|
{
|
||||||
|
m_autoLoadSuffix = nameFilters;
|
||||||
|
}
|
||||||
|
|
||||||
|
void PlaylistManager::clear()
|
||||||
|
{
|
||||||
|
m_currentIndex = -1;
|
||||||
|
m_playlist.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
void PlaylistManager::setPlaylist(const QList<QUrl> &urls)
|
void PlaylistManager::setPlaylist(const QList<QUrl> &urls)
|
||||||
{
|
{
|
||||||
m_model.setPlaylist(urls);
|
m_playlist = urls;
|
||||||
}
|
}
|
||||||
|
|
||||||
QModelIndex PlaylistManager::loadPlaylist(const QList<QUrl> &urls)
|
void PlaylistManager::setCurrentFile(const QString & filePath)
|
||||||
{
|
{
|
||||||
QModelIndex idx = m_model.loadPlaylist(urls);
|
QFileInfo info(filePath);
|
||||||
setProperty("currentIndex", idx.row());
|
QDir dir(info.path());
|
||||||
return idx;
|
QString && currentFileName = info.fileName();
|
||||||
}
|
|
||||||
|
|
||||||
QModelIndex PlaylistManager::loadPlaylist(const QUrl &url)
|
switch (playlistType()) {
|
||||||
{
|
case PL_SAMEFOLDER: {
|
||||||
QModelIndex idx = m_model.loadPlaylist(url);
|
if (dir.path() == m_currentDir) {
|
||||||
setProperty("currentIndex", idx.row());
|
int index = indexOf(filePath);
|
||||||
return idx;
|
m_currentIndex = index == -1 ? appendFile(filePath) : index;
|
||||||
}
|
} else {
|
||||||
|
QStringList entryList = dir.entryList(
|
||||||
|
m_autoLoadSuffix,
|
||||||
|
QDir::Files | QDir::NoSymLinks, QDir::NoSort);
|
||||||
|
|
||||||
QModelIndex PlaylistManager::loadM3U8Playlist(const QUrl &url)
|
QCollator collator;
|
||||||
{
|
collator.setNumericMode(true);
|
||||||
QFile file(url.toLocalFile());
|
|
||||||
if (file.open(QIODevice::ReadOnly | QIODevice::Text)) {
|
std::sort(entryList.begin(), entryList.end(), collator);
|
||||||
QList<QUrl> urls;
|
|
||||||
while (!file.atEnd()) {
|
clear();
|
||||||
QString line = file.readLine();
|
|
||||||
if (line.startsWith('#')) {
|
int index = -1;
|
||||||
continue;
|
for (int i = 0; i < entryList.count(); i++) {
|
||||||
|
const QString & fileName = entryList.at(i);
|
||||||
|
const QString & oneEntry = dir.absoluteFilePath(fileName);
|
||||||
|
const QUrl & url = QUrl::fromLocalFile(oneEntry);
|
||||||
|
m_playlist.append(url);
|
||||||
|
if (fileName == currentFileName) {
|
||||||
|
index = i;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
QFileInfo fileInfo(file);
|
m_currentIndex = index == -1 ? appendFile(filePath) : index;
|
||||||
QUrl item = QUrl::fromUserInput(line, fileInfo.absolutePath());
|
m_currentDir = dir.path();
|
||||||
urls.append(item);
|
|
||||||
}
|
}
|
||||||
return loadPlaylist(urls);
|
break;
|
||||||
} else {
|
|
||||||
return {};
|
|
||||||
}
|
}
|
||||||
}
|
case PL_USERPLAYLIST:{
|
||||||
|
int index = indexOf(filePath);
|
||||||
int PlaylistManager::totalCount() const
|
m_currentIndex = index == -1 ? appendFile(filePath) : index;
|
||||||
{
|
break;
|
||||||
return m_model.rowCount();
|
|
||||||
}
|
|
||||||
|
|
||||||
QModelIndex PlaylistManager::previousIndex() const
|
|
||||||
{
|
|
||||||
int count = totalCount();
|
|
||||||
if (count == 0) return {};
|
|
||||||
|
|
||||||
return m_model.index(isFirstIndex() ? count - 1 : m_currentIndex - 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
QModelIndex PlaylistManager::nextIndex() const
|
|
||||||
{
|
|
||||||
int count = totalCount();
|
|
||||||
if (count == 0) return {};
|
|
||||||
|
|
||||||
return m_model.index(isLastIndex() ? 0 : m_currentIndex + 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
QModelIndex PlaylistManager::curIndex() const
|
|
||||||
{
|
|
||||||
return m_model.index(m_currentIndex);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool PlaylistManager::isFirstIndex() const
|
|
||||||
{
|
|
||||||
return m_currentIndex == 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool PlaylistManager::isLastIndex() const
|
|
||||||
{
|
|
||||||
return m_currentIndex + 1 == totalCount();
|
|
||||||
}
|
|
||||||
|
|
||||||
void PlaylistManager::setCurrentIndex(const QModelIndex &index)
|
|
||||||
{
|
|
||||||
if (index.isValid() && index.row() >= 0 && index.row() < totalCount()) {
|
|
||||||
setProperty("currentIndex", index.row());
|
|
||||||
}
|
}
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
emit currentIndexChanged(m_currentIndex);
|
||||||
|
emit loaded(m_playlist.count());
|
||||||
}
|
}
|
||||||
|
|
||||||
QUrl PlaylistManager::urlByIndex(const QModelIndex &index)
|
void PlaylistManager::setCurrentIndex(int index)
|
||||||
{
|
{
|
||||||
return m_model.urlByIndex(index.row());
|
if (index < 0 || index >= m_playlist.count()) return;
|
||||||
|
m_currentIndex = index;
|
||||||
|
emit currentIndexChanged(m_currentIndex);
|
||||||
}
|
}
|
||||||
|
|
||||||
QString PlaylistManager::localFileByIndex(const QModelIndex &index)
|
int PlaylistManager::appendFile(const QString &filePath)
|
||||||
{
|
{
|
||||||
return urlByIndex(index).toLocalFile();
|
int index = m_playlist.length();
|
||||||
|
m_playlist.append(QUrl::fromLocalFile(filePath));
|
||||||
|
|
||||||
|
return index;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool PlaylistManager::removeAt(const QModelIndex &index)
|
int PlaylistManager::indexOf(const QString &filePath)
|
||||||
{
|
{
|
||||||
return m_model.removeAt(index.row());
|
const QUrl & url = QUrl::fromLocalFile(filePath);
|
||||||
|
return m_playlist.indexOf(url);
|
||||||
}
|
}
|
||||||
|
|
||||||
void PlaylistManager::setAutoLoadFilterSuffixes(const QStringList &nameFilters)
|
int PlaylistManager::count() const
|
||||||
{
|
{
|
||||||
m_model.setProperty("autoLoadFilterSuffixes", nameFilters);
|
return m_playlist.count();
|
||||||
|
}
|
||||||
|
|
||||||
|
std::tuple<int, QString> PlaylistManager::previousFile() const
|
||||||
|
{
|
||||||
|
int count = m_playlist.count();
|
||||||
|
if (count == 0) return std::make_tuple(-1, QString());
|
||||||
|
|
||||||
|
int index = m_currentIndex - 1 < 0 ? count - 1 : m_currentIndex - 1;
|
||||||
|
return std::make_tuple(index, m_playlist.at(index).toLocalFile());
|
||||||
|
}
|
||||||
|
|
||||||
|
std::tuple<int, QString> PlaylistManager::nextFile() const
|
||||||
|
{
|
||||||
|
int count = m_playlist.count();
|
||||||
|
if (count == 0) return std::make_tuple(-1, QString());
|
||||||
|
|
||||||
|
int index = m_currentIndex + 1 == count ? 0 : m_currentIndex + 1;
|
||||||
|
return std::make_tuple(index, m_playlist.at(index).toLocalFile());
|
||||||
|
}
|
||||||
|
|
||||||
|
std::tuple<int, QString> PlaylistManager::currentFile() const
|
||||||
|
{
|
||||||
|
if (m_playlist.count() == 0) return std::make_tuple(-1, QString());
|
||||||
|
|
||||||
|
return std::make_tuple(m_currentIndex, m_playlist.at(m_currentIndex).toLocalFile());
|
||||||
|
}
|
||||||
|
|
||||||
|
std::tuple<int, QUrl> PlaylistManager::currentFileUrl() const
|
||||||
|
{
|
||||||
|
if (m_playlist.count() == 0) return std::make_tuple(-1, QUrl());
|
||||||
|
|
||||||
|
return std::make_tuple(m_currentIndex, m_playlist.at(m_currentIndex));
|
||||||
}
|
}
|
||||||
|
|
||||||
QList<QUrl> PlaylistManager::convertToUrlList(const QStringList &files)
|
QList<QUrl> PlaylistManager::convertToUrlList(const QStringList &files)
|
||||||
{
|
{
|
||||||
QList<QUrl> urlList;
|
QList<QUrl> urlList;
|
||||||
for (const QString & str : std::as_const(files)) {
|
for (const QString & str : qAsConst(files)) {
|
||||||
QUrl url = QUrl::fromLocalFile(str);
|
QUrl url = QUrl::fromLocalFile(str);
|
||||||
if (url.isValid()) {
|
if (url.isValid()) {
|
||||||
urlList.append(url);
|
urlList.append(url);
|
||||||
|
@ -1,88 +1,57 @@
|
|||||||
// SPDX-FileCopyrightText: 2025 Gary Wang <git@blumia.net>
|
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <QUrl>
|
#include <QObject>
|
||||||
#include <QAbstractListModel>
|
|
||||||
|
|
||||||
class PlaylistModel : public QAbstractListModel
|
|
||||||
{
|
|
||||||
Q_OBJECT
|
|
||||||
public:
|
|
||||||
enum PlaylistRole {
|
|
||||||
UrlRole = Qt::UserRole
|
|
||||||
};
|
|
||||||
Q_ENUM(PlaylistRole)
|
|
||||||
Q_PROPERTY(QStringList autoLoadFilterSuffixes MEMBER m_autoLoadSuffixes NOTIFY autoLoadFilterSuffixesChanged)
|
|
||||||
|
|
||||||
explicit PlaylistModel(QObject *parent = nullptr);
|
|
||||||
~PlaylistModel() override;
|
|
||||||
|
|
||||||
void setPlaylist(const QList<QUrl> & urls);
|
|
||||||
QModelIndex loadPlaylist(const QList<QUrl> & urls);
|
|
||||||
QModelIndex loadPlaylist(const QUrl & url);
|
|
||||||
QModelIndex appendToPlaylist(const QUrl & url);
|
|
||||||
bool removeAt(int index);
|
|
||||||
int indexOf(const QUrl & url) const;
|
|
||||||
QUrl urlByIndex(int index) const;
|
|
||||||
QStringList autoLoadFilterSuffixes() const;
|
|
||||||
|
|
||||||
QHash<int, QByteArray> roleNames() const override;
|
|
||||||
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
|
|
||||||
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
|
|
||||||
|
|
||||||
signals:
|
|
||||||
void autoLoadFilterSuffixesChanged(QStringList suffixes);
|
|
||||||
|
|
||||||
private:
|
|
||||||
// model data
|
|
||||||
QList<QUrl> m_playlist;
|
|
||||||
// properties
|
|
||||||
QStringList m_autoLoadSuffixes = {};
|
|
||||||
// internal
|
|
||||||
QString m_currentDir;
|
|
||||||
};
|
|
||||||
|
|
||||||
class PlaylistManager : public QObject
|
class PlaylistManager : public QObject
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
Q_PROPERTY(int currentIndex MEMBER m_currentIndex NOTIFY currentIndexChanged)
|
Q_PROPERTY(int currentIndex MEMBER m_currentIndex NOTIFY currentIndexChanged)
|
||||||
Q_PROPERTY(QStringList autoLoadFilterSuffixes WRITE setAutoLoadFilterSuffixes)
|
|
||||||
Q_PROPERTY(PlaylistModel * model READ model CONSTANT)
|
|
||||||
|
|
||||||
explicit PlaylistManager(QObject *parent = nullptr);
|
enum PlaylistType {
|
||||||
|
PL_USERPLAYLIST, // Regular playlist, managed by user.
|
||||||
|
PL_SAMEFOLDER // PlaylistManager managed playlist, loaded from files from same folder.
|
||||||
|
};
|
||||||
|
|
||||||
|
explicit PlaylistManager(PlaylistType type = PL_USERPLAYLIST, QObject *parent = nullptr);
|
||||||
~PlaylistManager();
|
~PlaylistManager();
|
||||||
|
|
||||||
PlaylistModel * model();
|
void setPlaylistType(PlaylistType type);
|
||||||
|
PlaylistType playlistType() const;
|
||||||
|
|
||||||
void setPlaylist(const QList<QUrl> & url);
|
QStringList autoLoadFilterSuffix() const;
|
||||||
Q_INVOKABLE QModelIndex loadPlaylist(const QList<QUrl> & urls);
|
void setAutoLoadFilterSuffix(const QStringList &nameFilters);
|
||||||
Q_INVOKABLE QModelIndex loadPlaylist(const QUrl & url);
|
|
||||||
Q_INVOKABLE QModelIndex loadM3U8Playlist(const QUrl & url);
|
|
||||||
|
|
||||||
int totalCount() const;
|
void clear();
|
||||||
QModelIndex previousIndex() const;
|
|
||||||
QModelIndex nextIndex() const;
|
|
||||||
QModelIndex curIndex() const;
|
|
||||||
bool isFirstIndex() const;
|
|
||||||
bool isLastIndex() const;
|
|
||||||
void setCurrentIndex(const QModelIndex & index);
|
|
||||||
QUrl urlByIndex(const QModelIndex & index);
|
|
||||||
QString localFileByIndex(const QModelIndex & index);
|
|
||||||
bool removeAt(const QModelIndex & index);
|
|
||||||
|
|
||||||
void setAutoLoadFilterSuffixes(const QStringList &nameFilters);
|
void setPlaylist(const QList<QUrl> & urls);
|
||||||
|
void setCurrentFile(const QString & filePath);
|
||||||
|
void setCurrentIndex(int index);
|
||||||
|
int appendFile(const QString & filePath);
|
||||||
|
int indexOf(const QString & filePath);
|
||||||
|
|
||||||
|
int count() const;
|
||||||
|
|
||||||
|
std::tuple<int, QString> previousFile() const;
|
||||||
|
std::tuple<int, QString> nextFile() const;
|
||||||
|
std::tuple<int, QString> currentFile() const;
|
||||||
|
std::tuple<int, QUrl> currentFileUrl() const;
|
||||||
|
|
||||||
static QList<QUrl> convertToUrlList(const QStringList & files);
|
static QList<QUrl> convertToUrlList(const QStringList & files);
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
|
void loaded(int length);
|
||||||
void currentIndexChanged(int index);
|
void currentIndexChanged(int index);
|
||||||
void totalCountChanged(int count);
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
QList<QUrl> m_playlist;
|
||||||
|
PlaylistType m_type;
|
||||||
|
QString m_currentDir;
|
||||||
int m_currentIndex = -1;
|
int m_currentIndex = -1;
|
||||||
PlaylistModel m_model;
|
QStringList m_autoLoadSuffix = {};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -8,9 +8,6 @@
|
|||||||
#include <QStandardPaths>
|
#include <QStandardPaths>
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
#include <QDir>
|
#include <QDir>
|
||||||
#include <QAction>
|
|
||||||
#include <QWidget>
|
|
||||||
#include <QKeySequence>
|
|
||||||
#include <QMetaEnum>
|
#include <QMetaEnum>
|
||||||
|
|
||||||
namespace QEnumHelper
|
namespace QEnumHelper
|
||||||
@ -45,26 +42,11 @@ Settings *Settings::instance()
|
|||||||
return m_settings_instance;
|
return m_settings_instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Settings::stayOnTop() const
|
bool Settings::stayOnTop()
|
||||||
{
|
{
|
||||||
return m_qsettings->value("stay_on_top", true).toBool();
|
return m_qsettings->value("stay_on_top", true).toBool();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Settings::useBuiltInCloseAnimation() const
|
|
||||||
{
|
|
||||||
return m_qsettings->value("use_built_in_close_animation", true).toBool();
|
|
||||||
}
|
|
||||||
|
|
||||||
bool Settings::useLightCheckerboard() const
|
|
||||||
{
|
|
||||||
return m_qsettings->value("use_light_checkerboard", false).toBool();
|
|
||||||
}
|
|
||||||
|
|
||||||
bool Settings::loopGallery() const
|
|
||||||
{
|
|
||||||
return m_qsettings->value("loop_gallery", true).toBool();
|
|
||||||
}
|
|
||||||
|
|
||||||
Settings::DoubleClickBehavior Settings::doubleClickBehavior() const
|
Settings::DoubleClickBehavior Settings::doubleClickBehavior() const
|
||||||
{
|
{
|
||||||
QString result = m_qsettings->value("double_click_behavior", "Close").toString();
|
QString result = m_qsettings->value("double_click_behavior", "Close").toString();
|
||||||
@ -99,24 +81,6 @@ void Settings::setStayOnTop(bool on)
|
|||||||
m_qsettings->sync();
|
m_qsettings->sync();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Settings::setUseBuiltInCloseAnimation(bool on)
|
|
||||||
{
|
|
||||||
m_qsettings->setValue("use_built_in_close_animation", on);
|
|
||||||
m_qsettings->sync();
|
|
||||||
}
|
|
||||||
|
|
||||||
void Settings::setUseLightCheckerboard(bool light)
|
|
||||||
{
|
|
||||||
m_qsettings->setValue("use_light_checkerboard", light);
|
|
||||||
m_qsettings->sync();
|
|
||||||
}
|
|
||||||
|
|
||||||
void Settings::setLoopGallery(bool on)
|
|
||||||
{
|
|
||||||
m_qsettings->setValue("loop_gallery", on);
|
|
||||||
m_qsettings->sync();
|
|
||||||
}
|
|
||||||
|
|
||||||
void Settings::setDoubleClickBehavior(DoubleClickBehavior dcb)
|
void Settings::setDoubleClickBehavior(DoubleClickBehavior dcb)
|
||||||
{
|
{
|
||||||
m_qsettings->setValue("double_click_behavior", QEnumHelper::toString(dcb));
|
m_qsettings->setValue("double_click_behavior", QEnumHelper::toString(dcb));
|
||||||
@ -141,47 +105,6 @@ void Settings::setHiDpiScaleFactorBehavior(Qt::HighDpiScaleFactorRoundingPolicy
|
|||||||
m_qsettings->sync();
|
m_qsettings->sync();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Settings::applyUserShortcuts(QWidget *widget)
|
|
||||||
{
|
|
||||||
m_qsettings->beginGroup("shortcuts");
|
|
||||||
const QStringList shortcutNames = m_qsettings->allKeys();
|
|
||||||
for (const QString & name : shortcutNames) {
|
|
||||||
QList<QKeySequence> shortcuts = m_qsettings->value(name).value<QList<QKeySequence>>();
|
|
||||||
setShortcutsForAction(widget, name, shortcuts, false);
|
|
||||||
}
|
|
||||||
m_qsettings->endGroup();
|
|
||||||
}
|
|
||||||
|
|
||||||
bool Settings::setShortcutsForAction(QWidget *widget, const QString &objectName,
|
|
||||||
QList<QKeySequence> shortcuts, bool writeConfig)
|
|
||||||
{
|
|
||||||
QAction * targetAction = nullptr;
|
|
||||||
for (QAction * action : widget->actions()) {
|
|
||||||
if (action->objectName() == objectName) {
|
|
||||||
targetAction = action;
|
|
||||||
} else {
|
|
||||||
for (const QKeySequence & shortcut : std::as_const(shortcuts)) {
|
|
||||||
if (action->shortcuts().contains(shortcut)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (targetAction) {
|
|
||||||
targetAction->setShortcuts(shortcuts);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (targetAction && writeConfig) {
|
|
||||||
m_qsettings->beginGroup("shortcuts");
|
|
||||||
m_qsettings->setValue(objectName, QVariant::fromValue(shortcuts));
|
|
||||||
m_qsettings->endGroup();
|
|
||||||
m_qsettings->sync();
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
#if defined(FLAG_PORTABLE_MODE_SUPPORT) && defined(Q_OS_WIN)
|
#if defined(FLAG_PORTABLE_MODE_SUPPORT) && defined(Q_OS_WIN)
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
// QCoreApplication::applicationDirPath() parses the "applicationDirPath" from arg0, which...
|
// QCoreApplication::applicationDirPath() parses the "applicationDirPath" from arg0, which...
|
||||||
@ -215,12 +138,10 @@ Settings::Settings()
|
|||||||
#endif // defined(FLAG_PORTABLE_MODE_SUPPORT) && defined(Q_OS_WIN)
|
#endif // defined(FLAG_PORTABLE_MODE_SUPPORT) && defined(Q_OS_WIN)
|
||||||
|
|
||||||
if (configPath.isEmpty()) {
|
if (configPath.isEmpty()) {
|
||||||
// Should be %LOCALAPPDATA%\<APPNAME> under Windows, ~/.config/<APPNAME> under Linux.
|
// %LOCALAPPDATA%\<APPNAME> under Windows, ~/.config/<APPNAME> under Linux.
|
||||||
configPath = QStandardPaths::writableLocation(QStandardPaths::AppConfigLocation);
|
configPath = QStandardPaths::writableLocation(QStandardPaths::AppConfigLocation);
|
||||||
}
|
}
|
||||||
|
|
||||||
m_qsettings = new QSettings(QDir(configPath).absoluteFilePath("config.ini"), QSettings::IniFormat, this);
|
m_qsettings = new QSettings(QDir(configPath).absoluteFilePath("config.ini"), QSettings::IniFormat, this);
|
||||||
|
|
||||||
qRegisterMetaType<QList<QKeySequence>>();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -15,7 +15,6 @@ public:
|
|||||||
Ignore,
|
Ignore,
|
||||||
Close,
|
Close,
|
||||||
Maximize,
|
Maximize,
|
||||||
FullScreen,
|
|
||||||
};
|
};
|
||||||
Q_ENUM(DoubleClickBehavior)
|
Q_ENUM(DoubleClickBehavior)
|
||||||
|
|
||||||
@ -28,34 +27,23 @@ public:
|
|||||||
enum WindowSizeBehavior {
|
enum WindowSizeBehavior {
|
||||||
Auto,
|
Auto,
|
||||||
Maximized,
|
Maximized,
|
||||||
Windowed,
|
|
||||||
};
|
};
|
||||||
Q_ENUM(WindowSizeBehavior)
|
Q_ENUM(WindowSizeBehavior)
|
||||||
|
|
||||||
static Settings *instance();
|
static Settings *instance();
|
||||||
|
|
||||||
bool stayOnTop() const;
|
bool stayOnTop();
|
||||||
bool useBuiltInCloseAnimation() const;
|
|
||||||
bool useLightCheckerboard() const;
|
|
||||||
bool loopGallery() const;
|
|
||||||
DoubleClickBehavior doubleClickBehavior() const;
|
DoubleClickBehavior doubleClickBehavior() const;
|
||||||
MouseWheelBehavior mouseWheelBehavior() const;
|
MouseWheelBehavior mouseWheelBehavior() const;
|
||||||
WindowSizeBehavior initWindowSizeBehavior() const;
|
WindowSizeBehavior initWindowSizeBehavior() const;
|
||||||
Qt::HighDpiScaleFactorRoundingPolicy hiDpiScaleFactorBehavior() const;
|
Qt::HighDpiScaleFactorRoundingPolicy hiDpiScaleFactorBehavior() const;
|
||||||
|
|
||||||
void setStayOnTop(bool on);
|
void setStayOnTop(bool on);
|
||||||
void setUseBuiltInCloseAnimation(bool on);
|
|
||||||
void setUseLightCheckerboard(bool light);
|
|
||||||
void setLoopGallery(bool on);
|
|
||||||
void setDoubleClickBehavior(DoubleClickBehavior dcb);
|
void setDoubleClickBehavior(DoubleClickBehavior dcb);
|
||||||
void setMouseWheelBehavior(MouseWheelBehavior mwb);
|
void setMouseWheelBehavior(MouseWheelBehavior mwb);
|
||||||
void setInitWindowSizeBehavior(WindowSizeBehavior wsb);
|
void setInitWindowSizeBehavior(WindowSizeBehavior wsb);
|
||||||
void setHiDpiScaleFactorBehavior(Qt::HighDpiScaleFactorRoundingPolicy hidpi);
|
void setHiDpiScaleFactorBehavior(Qt::HighDpiScaleFactorRoundingPolicy hidpi);
|
||||||
|
|
||||||
void applyUserShortcuts(QWidget * widget);
|
|
||||||
bool setShortcutsForAction(QWidget * widget, const QString & objectName,
|
|
||||||
QList<QKeySequence> shortcuts, bool writeConfig = true);
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Settings();
|
Settings();
|
||||||
|
|
||||||
@ -67,3 +55,4 @@ signals:
|
|||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -5,24 +5,15 @@
|
|||||||
#include "settingsdialog.h"
|
#include "settingsdialog.h"
|
||||||
|
|
||||||
#include "settings.h"
|
#include "settings.h"
|
||||||
#include "shortcutedit.h"
|
|
||||||
|
|
||||||
#include <QAction>
|
|
||||||
#include <QCheckBox>
|
#include <QCheckBox>
|
||||||
#include <QComboBox>
|
#include <QComboBox>
|
||||||
#include <QFormLayout>
|
#include <QFormLayout>
|
||||||
#include <QKeySequenceEdit>
|
|
||||||
#include <QScrollArea>
|
|
||||||
#include <QSplitter>
|
|
||||||
#include <QStringListModel>
|
#include <QStringListModel>
|
||||||
#include <QMessageBox>
|
|
||||||
|
|
||||||
SettingsDialog::SettingsDialog(QWidget *parent)
|
SettingsDialog::SettingsDialog(QWidget *parent)
|
||||||
: QDialog(parent)
|
: QDialog(parent)
|
||||||
, m_stayOnTop(new QCheckBox)
|
, m_stayOnTop(new QCheckBox)
|
||||||
, m_useBuiltInCloseAnimation(new QCheckBox)
|
|
||||||
, m_useLightCheckerboard(new QCheckBox)
|
|
||||||
, m_loopGallery(new QCheckBox)
|
|
||||||
, m_doubleClickBehavior(new QComboBox)
|
, m_doubleClickBehavior(new QComboBox)
|
||||||
, m_mouseWheelBehavior(new QComboBox)
|
, m_mouseWheelBehavior(new QComboBox)
|
||||||
, m_initWindowSizeBehavior(new QComboBox)
|
, m_initWindowSizeBehavior(new QComboBox)
|
||||||
@ -30,55 +21,12 @@ SettingsDialog::SettingsDialog(QWidget *parent)
|
|||||||
{
|
{
|
||||||
this->setWindowTitle(tr("Settings"));
|
this->setWindowTitle(tr("Settings"));
|
||||||
|
|
||||||
QHBoxLayout * mainLayout = new QHBoxLayout(this);
|
QFormLayout * settingsForm = new QFormLayout(this);
|
||||||
QTabWidget * settingsTabs = new QTabWidget(this);
|
|
||||||
mainLayout->addWidget(settingsTabs);
|
|
||||||
|
|
||||||
QWidget * settingsFormHolder = new QWidget;
|
|
||||||
QFormLayout * settingsForm = new QFormLayout(settingsFormHolder);
|
|
||||||
settingsTabs->addTab(settingsFormHolder, tr("Options"));
|
|
||||||
|
|
||||||
QSplitter * shortcutEditorSplitter = new QSplitter;
|
|
||||||
shortcutEditorSplitter->setOrientation(Qt::Vertical);
|
|
||||||
shortcutEditorSplitter->setChildrenCollapsible(false);
|
|
||||||
QScrollArea * shortcutScrollArea = new QScrollArea;
|
|
||||||
shortcutEditorSplitter->addWidget(shortcutScrollArea);
|
|
||||||
shortcutScrollArea->setWidgetResizable(true);
|
|
||||||
shortcutScrollArea->setMinimumHeight(200);
|
|
||||||
QWidget * shortcutsFormHolder = new QWidget;
|
|
||||||
QFormLayout * shortcutsForm = new QFormLayout(shortcutsFormHolder);
|
|
||||||
shortcutScrollArea->setWidget(shortcutsFormHolder);
|
|
||||||
settingsTabs->addTab(shortcutEditorSplitter, tr("Shortcuts"));
|
|
||||||
|
|
||||||
for (const QAction * action : parent->actions()) {
|
|
||||||
ShortcutEdit * shortcutEdit = new ShortcutEdit;
|
|
||||||
shortcutEdit->setObjectName(QLatin1String("shortcut_") + action->objectName());
|
|
||||||
shortcutEdit->setShortcuts(action->shortcuts());
|
|
||||||
shortcutsForm->addRow(action->text(), shortcutEdit);
|
|
||||||
connect(shortcutEdit, &ShortcutEdit::editButtonClicked, this, [=](){
|
|
||||||
if (shortcutEditorSplitter->count() == 1) shortcutEditorSplitter->addWidget(new QWidget);
|
|
||||||
ShortcutEditor * shortcutEditor = new ShortcutEditor(shortcutEdit);
|
|
||||||
shortcutEditor->setDescription(tr("Editing shortcuts for action \"%1\":").arg(action->text()));
|
|
||||||
QWidget * oldEditor = shortcutEditorSplitter->replaceWidget(1, shortcutEditor);
|
|
||||||
shortcutEditorSplitter->setSizes({shortcutEditorSplitter->height(), 1});
|
|
||||||
oldEditor->deleteLater();
|
|
||||||
});
|
|
||||||
connect(shortcutEdit, &ShortcutEdit::applyShortcutsRequested, this, [=](QList<QKeySequence> newShortcuts){
|
|
||||||
bool succ = Settings::instance()->setShortcutsForAction(parent, shortcutEdit->objectName().mid(9),
|
|
||||||
newShortcuts);
|
|
||||||
if (!succ) {
|
|
||||||
QMessageBox::warning(this, tr("Failed to set shortcuts"),
|
|
||||||
tr("Please check if shortcuts are duplicated with existing shortcuts."));
|
|
||||||
}
|
|
||||||
shortcutEdit->setShortcuts(action->shortcuts());
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
static QList< QPair<Settings::DoubleClickBehavior, QString> > _dc_options {
|
static QList< QPair<Settings::DoubleClickBehavior, QString> > _dc_options {
|
||||||
{ Settings::DoubleClickBehavior::Ignore, tr("Do nothing") },
|
{ Settings::DoubleClickBehavior::Ignore, tr("Do nothing") },
|
||||||
{ Settings::DoubleClickBehavior::Close, tr("Close the window") },
|
{ Settings::DoubleClickBehavior::Close, tr("Close the window") },
|
||||||
{ Settings::DoubleClickBehavior::Maximize, tr("Toggle maximize") },
|
{ Settings::DoubleClickBehavior::Maximize, tr("Toggle maximize") }
|
||||||
{ Settings::DoubleClickBehavior::FullScreen, tr("Toggle fullscreen") }
|
|
||||||
};
|
};
|
||||||
|
|
||||||
static QList< QPair<Settings::MouseWheelBehavior, QString> > _mw_options {
|
static QList< QPair<Settings::MouseWheelBehavior, QString> > _mw_options {
|
||||||
@ -88,8 +36,7 @@ SettingsDialog::SettingsDialog(QWidget *parent)
|
|||||||
|
|
||||||
static QList< QPair<Settings::WindowSizeBehavior, QString> > _iws_options {
|
static QList< QPair<Settings::WindowSizeBehavior, QString> > _iws_options {
|
||||||
{ Settings::WindowSizeBehavior::Auto, tr("Auto size") },
|
{ Settings::WindowSizeBehavior::Auto, tr("Auto size") },
|
||||||
{ Settings::WindowSizeBehavior::Maximized, tr("Maximized") },
|
{ Settings::WindowSizeBehavior::Maximized, tr("Maximized") }
|
||||||
{ Settings::WindowSizeBehavior::Windowed, tr("Windowed") }
|
|
||||||
};
|
};
|
||||||
|
|
||||||
static QList< QPair<Qt::HighDpiScaleFactorRoundingPolicy, QString> > _hidpi_options {
|
static QList< QPair<Qt::HighDpiScaleFactorRoundingPolicy, QString> > _hidpi_options {
|
||||||
@ -120,18 +67,12 @@ SettingsDialog::SettingsDialog(QWidget *parent)
|
|||||||
}
|
}
|
||||||
|
|
||||||
settingsForm->addRow(tr("Stay on top when start-up"), m_stayOnTop);
|
settingsForm->addRow(tr("Stay on top when start-up"), m_stayOnTop);
|
||||||
settingsForm->addRow(tr("Use built-in close window animation"), m_useBuiltInCloseAnimation);
|
|
||||||
settingsForm->addRow(tr("Use light-color checkerboard"), m_useLightCheckerboard);
|
|
||||||
settingsForm->addRow(tr("Loop the loaded gallery"), m_loopGallery);
|
|
||||||
settingsForm->addRow(tr("Double-click behavior"), m_doubleClickBehavior);
|
settingsForm->addRow(tr("Double-click behavior"), m_doubleClickBehavior);
|
||||||
settingsForm->addRow(tr("Mouse wheel behavior"), m_mouseWheelBehavior);
|
settingsForm->addRow(tr("Mouse wheel behavior"), m_mouseWheelBehavior);
|
||||||
settingsForm->addRow(tr("Default window size"), m_initWindowSizeBehavior);
|
settingsForm->addRow(tr("Default window size"), m_initWindowSizeBehavior);
|
||||||
settingsForm->addRow(tr("HiDPI scale factor rounding policy"), m_hiDpiRoundingPolicyBehavior);
|
settingsForm->addRow(tr("HiDPI scale factor rounding policy"), m_hiDpiRoundingPolicyBehavior);
|
||||||
|
|
||||||
m_stayOnTop->setChecked(Settings::instance()->stayOnTop());
|
m_stayOnTop->setChecked(Settings::instance()->stayOnTop());
|
||||||
m_useBuiltInCloseAnimation->setChecked(Settings::instance()->useBuiltInCloseAnimation());
|
|
||||||
m_useLightCheckerboard->setChecked(Settings::instance()->useLightCheckerboard());
|
|
||||||
m_loopGallery->setChecked(Settings::instance()->loopGallery());
|
|
||||||
m_doubleClickBehavior->setModel(new QStringListModel(dcbDropDown));
|
m_doubleClickBehavior->setModel(new QStringListModel(dcbDropDown));
|
||||||
Settings::DoubleClickBehavior dcb = Settings::instance()->doubleClickBehavior();
|
Settings::DoubleClickBehavior dcb = Settings::instance()->doubleClickBehavior();
|
||||||
m_doubleClickBehavior->setCurrentIndex(static_cast<int>(dcb));
|
m_doubleClickBehavior->setCurrentIndex(static_cast<int>(dcb));
|
||||||
@ -150,30 +91,10 @@ SettingsDialog::SettingsDialog(QWidget *parent)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#if QT_VERSION >= QT_VERSION_CHECK(6, 7, 0)
|
connect(m_stayOnTop, &QCheckBox::stateChanged, this, [ = ](int state){
|
||||||
# define QCHECKBOX_CHECKSTATECHANGED QCheckBox::checkStateChanged
|
|
||||||
# define QT_CHECKSTATE Qt::CheckState
|
|
||||||
#else
|
|
||||||
# define QCHECKBOX_CHECKSTATECHANGED QCheckBox::stateChanged
|
|
||||||
# define QT_CHECKSTATE int
|
|
||||||
#endif // QT_VERSION >= QT_VERSION_CHECK(6, 7, 0)
|
|
||||||
|
|
||||||
connect(m_stayOnTop, &QCHECKBOX_CHECKSTATECHANGED, this, [ = ](QT_CHECKSTATE state){
|
|
||||||
Settings::instance()->setStayOnTop(state == Qt::Checked);
|
Settings::instance()->setStayOnTop(state == Qt::Checked);
|
||||||
});
|
});
|
||||||
|
|
||||||
connect(m_useBuiltInCloseAnimation, &QCHECKBOX_CHECKSTATECHANGED, this, [ = ](QT_CHECKSTATE state){
|
|
||||||
Settings::instance()->setUseBuiltInCloseAnimation(state == Qt::Checked);
|
|
||||||
});
|
|
||||||
|
|
||||||
connect(m_useLightCheckerboard, &QCHECKBOX_CHECKSTATECHANGED, this, [ = ](QT_CHECKSTATE state){
|
|
||||||
Settings::instance()->setUseLightCheckerboard(state == Qt::Checked);
|
|
||||||
});
|
|
||||||
|
|
||||||
connect(m_loopGallery, &QCHECKBOX_CHECKSTATECHANGED, this, [ = ](QT_CHECKSTATE state){
|
|
||||||
Settings::instance()->setLoopGallery(state == Qt::Checked);
|
|
||||||
});
|
|
||||||
|
|
||||||
connect(m_doubleClickBehavior, QOverload<int>::of(&QComboBox::currentIndexChanged), this, [ = ](int index){
|
connect(m_doubleClickBehavior, QOverload<int>::of(&QComboBox::currentIndexChanged), this, [ = ](int index){
|
||||||
Settings::instance()->setDoubleClickBehavior(_dc_options.at(index).first);
|
Settings::instance()->setDoubleClickBehavior(_dc_options.at(index).first);
|
||||||
});
|
});
|
||||||
|
@ -23,9 +23,6 @@ public slots:
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
QCheckBox * m_stayOnTop = nullptr;
|
QCheckBox * m_stayOnTop = nullptr;
|
||||||
QCheckBox * m_useBuiltInCloseAnimation = nullptr;
|
|
||||||
QCheckBox * m_useLightCheckerboard = nullptr;
|
|
||||||
QCheckBox * m_loopGallery = nullptr;
|
|
||||||
QComboBox * m_doubleClickBehavior = nullptr;
|
QComboBox * m_doubleClickBehavior = nullptr;
|
||||||
QComboBox * m_mouseWheelBehavior = nullptr;
|
QComboBox * m_mouseWheelBehavior = nullptr;
|
||||||
QComboBox * m_initWindowSizeBehavior = nullptr;
|
QComboBox * m_initWindowSizeBehavior = nullptr;
|
||||||
|
@ -1,126 +0,0 @@
|
|||||||
// SPDX-FileCopyrightText: 2024 Gary Wang <opensource@blumia.net>
|
|
||||||
//
|
|
||||||
// SPDX-License-Identifier: MIT
|
|
||||||
|
|
||||||
#include "shortcutedit.h"
|
|
||||||
|
|
||||||
#include <QLabel>
|
|
||||||
#include <QToolButton>
|
|
||||||
#include <QHBoxLayout>
|
|
||||||
#include <QFormLayout>
|
|
||||||
#include <QDialogButtonBox>
|
|
||||||
#include <QKeySequenceEdit>
|
|
||||||
|
|
||||||
ShortcutEditor::ShortcutEditor(ShortcutEdit * shortcutEdit, QWidget * parent)
|
|
||||||
: QWidget(parent)
|
|
||||||
, m_descriptionLabel(new QLabel)
|
|
||||||
, m_shortcutEdit(shortcutEdit)
|
|
||||||
, m_shortcutLayout(new QFormLayout)
|
|
||||||
{
|
|
||||||
Q_CHECK_PTR(m_shortcutEdit);
|
|
||||||
|
|
||||||
QDialogButtonBox * buttons = new QDialogButtonBox(QDialogButtonBox::Apply | QDialogButtonBox::Discard);
|
|
||||||
|
|
||||||
QVBoxLayout * layout = new QVBoxLayout(this);
|
|
||||||
layout->addWidget(m_descriptionLabel);
|
|
||||||
layout->addLayout(m_shortcutLayout);
|
|
||||||
layout->addWidget(buttons);
|
|
||||||
|
|
||||||
connect(buttons, &QDialogButtonBox::clicked, this, [=](QAbstractButton *button){
|
|
||||||
if ((QPushButton *)button == buttons->button(QDialogButtonBox::Apply)) {
|
|
||||||
applyShortcuts();
|
|
||||||
} else {
|
|
||||||
reloadShortcuts();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
connect(shortcutEdit, &ShortcutEdit::shortcutsChanged, this, &ShortcutEditor::reloadShortcuts);
|
|
||||||
|
|
||||||
setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Minimum);
|
|
||||||
|
|
||||||
reloadShortcuts();
|
|
||||||
}
|
|
||||||
|
|
||||||
void ShortcutEditor::setDescription(const QString &desc)
|
|
||||||
{
|
|
||||||
m_descriptionLabel->setText(desc);
|
|
||||||
}
|
|
||||||
|
|
||||||
void ShortcutEditor::reloadShortcuts()
|
|
||||||
{
|
|
||||||
if (!m_keySequenceEdits.isEmpty()) {
|
|
||||||
for (QKeySequenceEdit * keyseqEdit : m_keySequenceEdits) {
|
|
||||||
m_shortcutLayout->removeRow(keyseqEdit);
|
|
||||||
}
|
|
||||||
m_keySequenceEdits.clear();
|
|
||||||
}
|
|
||||||
|
|
||||||
QList<QKeySequence> shortcuts = m_shortcutEdit->shortcuts();
|
|
||||||
shortcuts.append(QKeySequence());
|
|
||||||
for (const QKeySequence & shortcut : shortcuts) {
|
|
||||||
QKeySequenceEdit * keyseqEdit = new QKeySequenceEdit(this);
|
|
||||||
keyseqEdit->setClearButtonEnabled(true);
|
|
||||||
#if QT_VERSION >= QT_VERSION_CHECK(6, 5, 0)
|
|
||||||
keyseqEdit->setMaximumSequenceLength(1);
|
|
||||||
#endif // QT_VERSION >= QT_VERSION_CHECK(6, 5, 0)
|
|
||||||
keyseqEdit->setKeySequence(shortcut);
|
|
||||||
m_keySequenceEdits.append(keyseqEdit);
|
|
||||||
}
|
|
||||||
|
|
||||||
for (int i = 0; i < m_keySequenceEdits.count(); i++) {
|
|
||||||
m_shortcutLayout->addRow(tr("Shortcut #%1").arg(i + 1), m_keySequenceEdits.at(i));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void ShortcutEditor::applyShortcuts()
|
|
||||||
{
|
|
||||||
QList<QKeySequence> shortcuts;
|
|
||||||
for (const QKeySequenceEdit * keyseqEdit : m_keySequenceEdits) {
|
|
||||||
if (!keyseqEdit->keySequence().isEmpty() && !shortcuts.contains(keyseqEdit->keySequence())) {
|
|
||||||
shortcuts.append(keyseqEdit->keySequence());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
emit m_shortcutEdit->applyShortcutsRequested(shortcuts);
|
|
||||||
}
|
|
||||||
|
|
||||||
// ----------------------------------------
|
|
||||||
|
|
||||||
ShortcutEdit::ShortcutEdit(QWidget *parent)
|
|
||||||
: QWidget(parent)
|
|
||||||
, m_shortcutsLabel(new QLabel(this))
|
|
||||||
, m_setShortcutButton(new QToolButton(this))
|
|
||||||
{
|
|
||||||
m_setShortcutButton->setText("...");
|
|
||||||
|
|
||||||
QHBoxLayout * layout = new QHBoxLayout(this);
|
|
||||||
layout->setContentsMargins(0, 0, 0, 0);
|
|
||||||
layout->addWidget(m_shortcutsLabel, 1);
|
|
||||||
layout->addWidget(m_setShortcutButton);
|
|
||||||
|
|
||||||
connect(this, &ShortcutEdit::shortcutsChanged, this, [=](){
|
|
||||||
QStringList shortcutTexts;
|
|
||||||
for (const QKeySequence & shortcut : std::as_const(m_shortcuts)) {
|
|
||||||
shortcutTexts.append(shortcut.toString(QKeySequence::NativeText));
|
|
||||||
}
|
|
||||||
m_shortcutsLabel->setText(shortcutTexts.isEmpty() ? tr("No shortcuts") : shortcutTexts.join(", "));
|
|
||||||
m_shortcutsLabel->setDisabled(shortcutTexts.isEmpty());
|
|
||||||
});
|
|
||||||
|
|
||||||
connect(m_setShortcutButton, &QToolButton::clicked, this, &ShortcutEdit::editButtonClicked);
|
|
||||||
|
|
||||||
adjustSize();
|
|
||||||
}
|
|
||||||
|
|
||||||
ShortcutEdit::~ShortcutEdit()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
QList<QKeySequence> ShortcutEdit::shortcuts() const
|
|
||||||
{
|
|
||||||
return m_shortcuts;
|
|
||||||
}
|
|
||||||
|
|
||||||
void ShortcutEdit::setShortcuts(const QList<QKeySequence> &shortcuts)
|
|
||||||
{
|
|
||||||
m_shortcuts = shortcuts;
|
|
||||||
emit shortcutsChanged();
|
|
||||||
}
|
|
@ -1,55 +0,0 @@
|
|||||||
// SPDX-FileCopyrightText: 2024 Gary Wang <opensource@blumia.net>
|
|
||||||
//
|
|
||||||
// SPDX-License-Identifier: MIT
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
#include <QWidget>
|
|
||||||
#include <QList>
|
|
||||||
#include <QKeySequence>
|
|
||||||
|
|
||||||
class QLabel;
|
|
||||||
class QFormLayout;
|
|
||||||
class QToolButton;
|
|
||||||
class QKeySequenceEdit;
|
|
||||||
class ShortcutEdit;
|
|
||||||
class ShortcutEditor : public QWidget
|
|
||||||
{
|
|
||||||
Q_OBJECT
|
|
||||||
public:
|
|
||||||
explicit ShortcutEditor(ShortcutEdit * shortcutEdit, QWidget * parent = nullptr);
|
|
||||||
~ShortcutEditor() = default;
|
|
||||||
|
|
||||||
void setDescription(const QString & desc);
|
|
||||||
|
|
||||||
void reloadShortcuts();
|
|
||||||
void applyShortcuts();
|
|
||||||
|
|
||||||
private:
|
|
||||||
QLabel * m_descriptionLabel;
|
|
||||||
ShortcutEdit * m_shortcutEdit;
|
|
||||||
QFormLayout * m_shortcutLayout;
|
|
||||||
QList<QKeySequenceEdit *> m_keySequenceEdits;
|
|
||||||
};
|
|
||||||
|
|
||||||
class ShortcutEdit : public QWidget
|
|
||||||
{
|
|
||||||
Q_OBJECT
|
|
||||||
Q_PROPERTY(QList<QKeySequence> shortcuts MEMBER m_shortcuts WRITE setShortcuts NOTIFY shortcutsChanged)
|
|
||||||
public:
|
|
||||||
explicit ShortcutEdit(QWidget * parent = nullptr);
|
|
||||||
~ShortcutEdit();
|
|
||||||
|
|
||||||
QList<QKeySequence> shortcuts() const;
|
|
||||||
void setShortcuts(const QList<QKeySequence> &shortcuts);
|
|
||||||
|
|
||||||
signals:
|
|
||||||
void shortcutsChanged();
|
|
||||||
void editButtonClicked();
|
|
||||||
void applyShortcutsRequested(QList<QKeySequence> newShortcuts);
|
|
||||||
|
|
||||||
private:
|
|
||||||
QList<QKeySequence> m_shortcuts;
|
|
||||||
QLabel * m_shortcutsLabel;
|
|
||||||
QToolButton * m_setShortcutButton;
|
|
||||||
};
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,886 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!DOCTYPE TS>
|
|
||||||
<TS version="2.1" language="ta">
|
|
||||||
<context>
|
|
||||||
<name>AboutDialog</name>
|
|
||||||
<message>
|
|
||||||
<location filename="../aboutdialog.cpp" line="29"/>
|
|
||||||
<source>About</source>
|
|
||||||
<translation>பற்றி</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../aboutdialog.cpp" line="32"/>
|
|
||||||
<source>Launch application with image file path as argument to load the file.</source>
|
|
||||||
<translation>கோப்பை ஏற்ற வாதமாக பட கோப்பு பாதையுடன் பயன்பாட்டைத் தொடங்கவும்.</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../aboutdialog.cpp" line="33"/>
|
|
||||||
<source>Drag and drop image file onto the window is also supported.</source>
|
|
||||||
<translation>படக் கோப்பை சாளரத்தில் இழுத்து விடுங்கள்.</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../aboutdialog.cpp" line="34"/>
|
|
||||||
<source>None of the operations in this application will alter the pictures on disk.</source>
|
|
||||||
<translation>இந்த பயன்பாட்டில் உள்ள எந்த செயல்பாடுகளும் வட்டில் உள்ள படங்களை மாற்றாது.</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../aboutdialog.cpp" line="35"/>
|
|
||||||
<source>Context menu option explanation:</source>
|
|
||||||
<translation>சூழல் பட்டியல் விருப்பம் விளக்கம்:</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../aboutdialog.cpp" line="42"/>
|
|
||||||
<source>Make window stay on top of all other windows.</source>
|
|
||||||
<translation>மற்ற எல்லா சன்னல்களுக்கும் மேலாக சாளரத்தை வைக்கவும்.</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../aboutdialog.cpp" line="45"/>
|
|
||||||
<source>Avoid close window accidentally. (eg. by double clicking the window)</source>
|
|
||||||
<translation>தற்செயலாக நெருக்கமான சாளரத்தைத் தவிர்க்கவும். (எ.கா. சாளரத்தை இருமுறை சொடுக்கு செய்வதன் மூலம்)</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../aboutdialog.cpp" line="48"/>
|
|
||||||
<source>Avoid resetting the zoom/rotation/flip state that was applied to the image view when switching between images.</source>
|
|
||||||
<translation>படங்களுக்கு இடையில் மாறும்போது படக் காட்சிக்கு பயன்படுத்தப்பட்ட சூம்/சுழற்சி/ஃபிளிப் நிலையை மீட்டமைப்பதைத் தவிர்க்கவும்.</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../aboutdialog.cpp" line="55"/>
|
|
||||||
<source>Version: %1</source>
|
|
||||||
<translation>பதிப்பு: %1</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../aboutdialog.cpp" line="66"/>
|
|
||||||
<source>Logo designed by %1</source>
|
|
||||||
<translation>லோகோ %1 ஆல் வடிவமைக்கப்பட்டுள்ளது</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../aboutdialog.cpp" line="68"/>
|
|
||||||
<source>Built with Qt %1 (%2)</source>
|
|
||||||
<translation>கியுடி %1 ( %2) உடன் கட்டப்பட்டுள்ளது</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../aboutdialog.cpp" line="69"/>
|
|
||||||
<source>Source code</source>
|
|
||||||
<translation>மூலக் குறியீடு</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../aboutdialog.cpp" line="79"/>
|
|
||||||
<source>Contributors</source>
|
|
||||||
<translation>பங்களிப்பாளர்கள்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../aboutdialog.cpp" line="81"/>
|
|
||||||
<source>List of contributors on GitHub</source>
|
|
||||||
<translation>கிதுபில் பங்களிப்பாளர்களின் பட்டியல்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../aboutdialog.cpp" line="82"/>
|
|
||||||
<source>Thanks to all people who contributed to this project.</source>
|
|
||||||
<translation>இந்த திட்டத்திற்கு பங்களித்த அனைத்து மக்களுக்கும் நன்றி.</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../aboutdialog.cpp" line="86"/>
|
|
||||||
<source>Translators</source>
|
|
||||||
<translation>மொழிபெயர்ப்பாளர்கள்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../aboutdialog.cpp" line="87"/>
|
|
||||||
<source>I would like to thank the following people who volunteered to translate this application.</source>
|
|
||||||
<translation>இந்த விண்ணப்பத்தை மொழிபெயர்க்க முன்வந்த பின்வரும் நபர்களுக்கு நன்றி தெரிவிக்க விரும்புகிறேன்.</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../aboutdialog.cpp" line="131"/>
|
|
||||||
<source>%1 is built on the following free software libraries:</source>
|
|
||||||
<comment>Free as in freedom</comment>
|
|
||||||
<translation>%1 பின்வரும் இலவச மென்பொருள் நூலகங்களில் கட்டப்பட்டுள்ளது:</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../aboutdialog.cpp" line="155"/>
|
|
||||||
<source>&Special Thanks</source>
|
|
||||||
<translation>& சிறப்பு நன்றி</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../aboutdialog.cpp" line="157"/>
|
|
||||||
<source>&Third-party Libraries</source>
|
|
||||||
<translation>மூன்றாம் தரப்பு நூலகங்கள்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../aboutdialog.cpp" line="93"/>
|
|
||||||
<source>Your Rights</source>
|
|
||||||
<translation>உங்கள் உரிமைகள்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../aboutdialog.cpp" line="63"/>
|
|
||||||
<source>Copyright (c) %1 %2</source>
|
|
||||||
<comment>%1 is year, %2 is the name of copyright holder(s)</comment>
|
|
||||||
<translation>பதிப்புரிமை (சி) %1 %2</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../aboutdialog.cpp" line="95"/>
|
|
||||||
<source>%1 is released under the MIT License.</source>
|
|
||||||
<translation>%1 எம்ஐடி உரிமத்தின் கீழ் வெளியிடப்படுகிறது.</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../aboutdialog.cpp" line="96"/>
|
|
||||||
<source>This license grants people a number of freedoms:</source>
|
|
||||||
<translation>இந்த உரிமம் மக்களுக்கு பல சுதந்திரங்களை வழங்குகிறது:</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../aboutdialog.cpp" line="97"/>
|
|
||||||
<source>You are free to use %1, for any purpose</source>
|
|
||||||
<translation>எந்தவொரு நோக்கத்திற்காகவும் நீங்கள் %1 ஐப் பயன்படுத்த இலவசம்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../aboutdialog.cpp" line="98"/>
|
|
||||||
<source>You are free to distribute %1</source>
|
|
||||||
<translation>%1 ஐ விநியோகிக்க நீங்கள் இலவசம்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../aboutdialog.cpp" line="99"/>
|
|
||||||
<source>You can study how %1 works and change it</source>
|
|
||||||
<translation>%1 எவ்வாறு செயல்படுகிறது என்பதைப் படித்து அதை மாற்றலாம்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../aboutdialog.cpp" line="100"/>
|
|
||||||
<source>You can distribute changed versions of %1</source>
|
|
||||||
<translation>மாற்றப்பட்ட பதிப்புகளை %1 இன் விநியோகிக்கலாம்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../aboutdialog.cpp" line="102"/>
|
|
||||||
<source>The MIT license guarantees you this freedom. Nobody is ever permitted to take it away.</source>
|
|
||||||
<translation>எம்ஐடி உரிமம் இந்த சுதந்திரத்தை உங்களுக்கு பொறுப்பு செய்கிறது. அதை எடுத்துச் செல்ல யாரும் அனுமதிக்கப்படுவதில்லை.</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../aboutdialog.cpp" line="130"/>
|
|
||||||
<source>Third-party Libraries used by %1</source>
|
|
||||||
<translation>%1 ஆல் பயன்படுத்தப்படும் மூன்றாம் தரப்பு நூலகங்கள்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../aboutdialog.cpp" line="153"/>
|
|
||||||
<source>&Help</source>
|
|
||||||
<translation>உதவி (&h)</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../aboutdialog.cpp" line="154"/>
|
|
||||||
<source>&About</source>
|
|
||||||
<translation>&பற்றி</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../aboutdialog.cpp" line="156"/>
|
|
||||||
<source>&License</source>
|
|
||||||
<translation>& உரிமம்</translation>
|
|
||||||
</message>
|
|
||||||
</context>
|
|
||||||
<context>
|
|
||||||
<name>GraphicsScene</name>
|
|
||||||
<message>
|
|
||||||
<location filename="../mainwindow.cpp" line="276"/>
|
|
||||||
<location filename="../graphicsscene.cpp" line="100"/>
|
|
||||||
<source>Drag image here</source>
|
|
||||||
<translation>படத்தை இங்கே இழுக்கவும்</translation>
|
|
||||||
</message>
|
|
||||||
</context>
|
|
||||||
<context>
|
|
||||||
<name>GraphicsView</name>
|
|
||||||
<message>
|
|
||||||
<location filename="../graphicsview.cpp" line="50"/>
|
|
||||||
<source>File is not a valid image</source>
|
|
||||||
<translation>கோப்பு சரியான படம் அல்ல</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../graphicsview.cpp" line="54"/>
|
|
||||||
<location filename="../graphicsview.cpp" line="58"/>
|
|
||||||
<source>Image data is invalid or currently unsupported</source>
|
|
||||||
<translation>படத் தரவு தவறானது அல்லது தற்போது ஆதரிக்கப்படாதது</translation>
|
|
||||||
</message>
|
|
||||||
</context>
|
|
||||||
<context>
|
|
||||||
<name>MainWindow</name>
|
|
||||||
<message>
|
|
||||||
<location filename="../mainwindow.cpp" line="181"/>
|
|
||||||
<location filename="../mainwindow.cpp" line="545"/>
|
|
||||||
<source>File url list is empty</source>
|
|
||||||
<translation>கோப்பு முகவரி பட்டியல் காலியாக உள்ளது</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../mainwindow.cpp" line="445"/>
|
|
||||||
<source>&Copy</source>
|
|
||||||
<translation>நகலெடு (&c)</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../mainwindow.cpp" line="553"/>
|
|
||||||
<source>Image data is invalid</source>
|
|
||||||
<translation>படத் தரவு தவறானது</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../mainwindow.cpp" line="560"/>
|
|
||||||
<source>Not supported mimedata: %1</source>
|
|
||||||
<translation>மைமெடாட்டாவை ஆதரிக்கவில்லை: %1</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../mainwindow.cpp" line="759"/>
|
|
||||||
<source>Image From Clipboard</source>
|
|
||||||
<translation>கிளிப்போர்டிலிருந்து படம்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../mainwindow.cpp" line="777"/>
|
|
||||||
<source>Are you sure you want to move "%1" to recycle bin?</source>
|
|
||||||
<translation>பின் மறுசுழற்சி செய்ய "%1" ஐ நகர்த்த விரும்புகிறீர்களா?</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../mainwindow.cpp" line="781"/>
|
|
||||||
<source>Failed to move file to trash</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../mainwindow.cpp" line="782"/>
|
|
||||||
<source>Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation.</source>
|
|
||||||
<translation>குப்பைக்கு நகர்வது தோல்வியுற்றது, இது கோப்பு இசைவு சிக்கல், கோப்பு முறைமை வரம்பு அல்லது இயங்குதள வரம்பு ஆகியவற்றால் ஏற்படலாம்.</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../actionmanager.cpp" line="114"/>
|
|
||||||
<source>Copy P&ixmap</source>
|
|
||||||
<translation>பி & ஐஎக்ச்மேப்பை நகலெடுக்கவும்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../actionmanager.cpp" line="115"/>
|
|
||||||
<source>Copy &File Path</source>
|
|
||||||
<translation>கோப்பு பாதையை நகலெடுக்கவும்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../actionmanager.cpp" line="133"/>
|
|
||||||
<source>Properties</source>
|
|
||||||
<translation>பண்புகள்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../actionmanager.cpp" line="118"/>
|
|
||||||
<location filename="../aboutdialog.cpp" line="41"/>
|
|
||||||
<source>Stay on top</source>
|
|
||||||
<translation>மேலே இருங்கள்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../actionmanager.cpp" line="119"/>
|
|
||||||
<location filename="../aboutdialog.cpp" line="44"/>
|
|
||||||
<source>Protected mode</source>
|
|
||||||
<translation>பாதுகாக்கப்பட்ட பயன்முறை</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../actionmanager.cpp" line="120"/>
|
|
||||||
<location filename="../aboutdialog.cpp" line="47"/>
|
|
||||||
<source>Keep transformation</source>
|
|
||||||
<comment>The 'transformation' means the flip/rotation status that currently applied to the image view</comment>
|
|
||||||
<translation>மாற்றத்தைத் தொடருங்கள்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../actionmanager.cpp" line="99"/>
|
|
||||||
<source>Zoom in</source>
|
|
||||||
<translation>பெரிதாக்கு</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../actionmanager.cpp" line="100"/>
|
|
||||||
<source>Zoom out</source>
|
|
||||||
<translation>சிறிதாக்கு</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../actionmanager.cpp" line="108"/>
|
|
||||||
<source>Pause/Resume Animation</source>
|
|
||||||
<translation>இடைநிறுத்தம்/அனிமேசனை மீண்டும் தொடங்குங்கள்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../actionmanager.cpp" line="109"/>
|
|
||||||
<source>Animation Go to Next Frame</source>
|
|
||||||
<translation>அனிமேசன் அடுத்த சட்டகத்திற்குச் செல்லுங்கள்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../actionmanager.cpp" line="111"/>
|
|
||||||
<source>Flip &Horizontally</source>
|
|
||||||
<translation>கிடைமட்டமாக புரட்டவும்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../actionmanager.cpp" line="112"/>
|
|
||||||
<source>Fit to view</source>
|
|
||||||
<translation>பார்க்க பொருத்தமானது</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../actionmanager.cpp" line="113"/>
|
|
||||||
<source>Fit to width</source>
|
|
||||||
<translation>அகலத்திற்கு ஏற்றது</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../actionmanager.cpp" line="116"/>
|
|
||||||
<source>&Paste</source>
|
|
||||||
<translation>ஒட்டு (&p)</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../actionmanager.cpp" line="101"/>
|
|
||||||
<source>Toggle Checkerboard</source>
|
|
||||||
<translation>செக்கர்போர்டை மாற்றவும்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../actionmanager.cpp" line="95"/>
|
|
||||||
<source>&Open...</source>
|
|
||||||
<translation>& திறந்த ...</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../actionmanager.cpp" line="97"/>
|
|
||||||
<source>Actual size</source>
|
|
||||||
<translation>உண்மையான அளவு</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../actionmanager.cpp" line="98"/>
|
|
||||||
<source>Toggle maximize</source>
|
|
||||||
<translation>அதிகபட்சத்தை மாற்றவும்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../actionmanager.cpp" line="102"/>
|
|
||||||
<source>Rotate right</source>
|
|
||||||
<translation>வலதுபுறம் சுழற்றுங்கள்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../actionmanager.cpp" line="103"/>
|
|
||||||
<source>Rotate left</source>
|
|
||||||
<translation>இடதுபுறம் சுழலும்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../actionmanager.cpp" line="105"/>
|
|
||||||
<source>Previous image</source>
|
|
||||||
<translation>முந்தைய படம்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../actionmanager.cpp" line="106"/>
|
|
||||||
<source>Next image</source>
|
|
||||||
<translation>அடுத்த படம்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../mainwindow.cpp" line="776"/>
|
|
||||||
<location filename="../actionmanager.cpp" line="117"/>
|
|
||||||
<source>Move to Trash</source>
|
|
||||||
<translation>குப்பைக்கு நகர்த்தவும்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../actionmanager.cpp" line="121"/>
|
|
||||||
<source>Configure...</source>
|
|
||||||
<translation>உள்ளமைக்கவும் ...</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../actionmanager.cpp" line="122"/>
|
|
||||||
<source>Help</source>
|
|
||||||
<translation>உதவி</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../actionmanager.cpp" line="125"/>
|
|
||||||
<source>Show in File Explorer</source>
|
|
||||||
<comment>File Explorer is the name of explorer.exe under Windows</comment>
|
|
||||||
<translation>கோப்பு எக்ச்ப்ளோரரில் காண்பி</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../actionmanager.cpp" line="131"/>
|
|
||||||
<source>Show in directory</source>
|
|
||||||
<translation>கோப்பகத்தில் காட்டு</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../actionmanager.cpp" line="134"/>
|
|
||||||
<source>Quit</source>
|
|
||||||
<translation>வெளியேறு</translation>
|
|
||||||
</message>
|
|
||||||
</context>
|
|
||||||
<context>
|
|
||||||
<name>MetadataDialog</name>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatadialog.cpp" line="84"/>
|
|
||||||
<source>Image Metadata</source>
|
|
||||||
<translation>பட மேனிலை தரவு</translation>
|
|
||||||
</message>
|
|
||||||
</context>
|
|
||||||
<context>
|
|
||||||
<name>MetadataModel</name>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="43"/>
|
|
||||||
<source>Origin</source>
|
|
||||||
<comment>Section name.</comment>
|
|
||||||
<translation>தோற்றம்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="44"/>
|
|
||||||
<source>Image</source>
|
|
||||||
<comment>Section name.</comment>
|
|
||||||
<translation>படம்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="48"/>
|
|
||||||
<source>File</source>
|
|
||||||
<comment>Section name.</comment>
|
|
||||||
<translation>கோப்பு</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="45"/>
|
|
||||||
<source>Camera</source>
|
|
||||||
<comment>Section name.</comment>
|
|
||||||
<translation>கேமரா</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="35"/>
|
|
||||||
<source>%1 File</source>
|
|
||||||
<translation>%1 கோப்பு</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="42"/>
|
|
||||||
<source>Description</source>
|
|
||||||
<comment>Section name.</comment>
|
|
||||||
<translation>விவரம்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="46"/>
|
|
||||||
<source>Advanced photo</source>
|
|
||||||
<comment>Section name.</comment>
|
|
||||||
<translation>மேம்பட்ட புகைப்படம்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="47"/>
|
|
||||||
<source>GPS</source>
|
|
||||||
<comment>Section name.</comment>
|
|
||||||
<translation>உலக இடம் காட்டும் அமைப்பு</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="52"/>
|
|
||||||
<source>Dimensions</source>
|
|
||||||
<translation>பரிமாணங்கள்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="54"/>
|
|
||||||
<source>Aspect ratio</source>
|
|
||||||
<translation>அம்ச விகிதம்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="58"/>
|
|
||||||
<source>Frame count</source>
|
|
||||||
<translation>சட்ட எண்ணிக்கை</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="62"/>
|
|
||||||
<source>Name</source>
|
|
||||||
<translation>பெயர்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="64"/>
|
|
||||||
<source>Item type</source>
|
|
||||||
<translation>உருப்படி வகை</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="66"/>
|
|
||||||
<source>Folder path</source>
|
|
||||||
<translation>கோப்புறை பாதை</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="68"/>
|
|
||||||
<source>Size</source>
|
|
||||||
<translation>அளவு</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="70"/>
|
|
||||||
<source>Date created</source>
|
|
||||||
<translation>தேதி உருவாக்கப்பட்டது</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="72"/>
|
|
||||||
<source>Date modified</source>
|
|
||||||
<translation>தேதி மாற்றியமைக்கப்பட்டது</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="79"/>
|
|
||||||
<source>Title</source>
|
|
||||||
<translation>தலைப்பு</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="81"/>
|
|
||||||
<source>Subject</source>
|
|
||||||
<translation>பொருள்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="83"/>
|
|
||||||
<source>Rating</source>
|
|
||||||
<translation>செயல்வரம்பு</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="85"/>
|
|
||||||
<source>Tags</source>
|
|
||||||
<translation>குறிச்சொற்கள்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="87"/>
|
|
||||||
<source>Comments</source>
|
|
||||||
<translation>கருத்துகள்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="90"/>
|
|
||||||
<source>Authors</source>
|
|
||||||
<translation>ஆசிரியர்கள்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="92"/>
|
|
||||||
<source>Date taken</source>
|
|
||||||
<translation>எடுக்கப்பட்ட தேதி</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="98"/>
|
|
||||||
<source>Program name</source>
|
|
||||||
<translation>நிரல் பெயர்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="100"/>
|
|
||||||
<source>Copyright</source>
|
|
||||||
<translation>பதிப்புரிமை</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="103"/>
|
|
||||||
<source>Horizontal resolution</source>
|
|
||||||
<translation>கிடைமட்ட தீர்மானம்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="105"/>
|
|
||||||
<source>Vertical resolution</source>
|
|
||||||
<translation>செங்குத்து தீர்மானம்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="107"/>
|
|
||||||
<source>Resolution unit</source>
|
|
||||||
<translation>தெளிவுத்திறன் அலகு</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="109"/>
|
|
||||||
<source>Colour representation</source>
|
|
||||||
<translation>வண்ண பிரதிநிதித்துவம்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="112"/>
|
|
||||||
<source>Camera maker</source>
|
|
||||||
<translation>கேமரா தயாரிப்பாளர்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="114"/>
|
|
||||||
<source>Camera model</source>
|
|
||||||
<translation>கேமரா மாதிரி</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="116"/>
|
|
||||||
<source>F-stop</source>
|
|
||||||
<translation>எஃப்-ச்டாப்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="118"/>
|
|
||||||
<source>Exposure time</source>
|
|
||||||
<translation>நேரிடுதல் காலம்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="120"/>
|
|
||||||
<source>ISO speed</source>
|
|
||||||
<translation>ஐஎச்ஓ விரைவு</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="122"/>
|
|
||||||
<source>Exposure bias</source>
|
|
||||||
<translation>வெளிப்பாடு சார்பு</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="124"/>
|
|
||||||
<source>Focal length</source>
|
|
||||||
<translation>குவிநீளம், குவியத் தொலைவு</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="126"/>
|
|
||||||
<source>Max aperture</source>
|
|
||||||
<translation>அதிகபட்ச துளை</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="128"/>
|
|
||||||
<source>Metering mode</source>
|
|
||||||
<translation>அளவீட்டு முறை</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="130"/>
|
|
||||||
<source>Subject distance</source>
|
|
||||||
<translation>பொருள் தூரம்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="132"/>
|
|
||||||
<source>Flash mode</source>
|
|
||||||
<translation>ஃபிளாச் பயன்முறை</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="134"/>
|
|
||||||
<source>35mm focal length</source>
|
|
||||||
<translation>35 மிமீ குவிய நீளம்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="137"/>
|
|
||||||
<source>Lens model</source>
|
|
||||||
<translation>லென்ச் மாதிரி</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="139"/>
|
|
||||||
<source>Contrast</source>
|
|
||||||
<translation>மாறுபாடு</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="141"/>
|
|
||||||
<source>Brightness</source>
|
|
||||||
<translation>ஒளி</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="143"/>
|
|
||||||
<source>Exposure program</source>
|
|
||||||
<translation>வெளிப்பாடு திட்டம்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="145"/>
|
|
||||||
<source>Saturation</source>
|
|
||||||
<translation>தெவிட்டல்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="147"/>
|
|
||||||
<source>Sharpness</source>
|
|
||||||
<translation>கூர்மையானது</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="149"/>
|
|
||||||
<source>White balance</source>
|
|
||||||
<translation>வெள்ளை இருப்பு</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="151"/>
|
|
||||||
<source>Digital zoom</source>
|
|
||||||
<translation>டிசிட்டல் சூம்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="153"/>
|
|
||||||
<source>EXIF version</source>
|
|
||||||
<translation>Exif பதிப்பு</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="156"/>
|
|
||||||
<source>Latitude reference</source>
|
|
||||||
<translation>அட்சரேகை குறிப்பு</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="158"/>
|
|
||||||
<source>Latitude</source>
|
|
||||||
<translation>அகலாங்கு</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="160"/>
|
|
||||||
<source>Longitude reference</source>
|
|
||||||
<translation>தீர்க்கரேகை குறிப்பு</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="162"/>
|
|
||||||
<source>Longitude</source>
|
|
||||||
<translation>நெட்டாங்கு</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="164"/>
|
|
||||||
<source>Altitude reference</source>
|
|
||||||
<translation>உயர குறிப்பு</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="166"/>
|
|
||||||
<source>Altitude</source>
|
|
||||||
<translation>குத்துயரம்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="176"/>
|
|
||||||
<source>%1 x %2</source>
|
|
||||||
<translation>%1 ஃச் %2</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="194"/>
|
|
||||||
<source>%1 : %2</source>
|
|
||||||
<translation>%1: %2</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="319"/>
|
|
||||||
<source>Property</source>
|
|
||||||
<translation>சொத்து</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../metadatamodel.cpp" line="319"/>
|
|
||||||
<source>Value</source>
|
|
||||||
<translation>மதிப்பு</translation>
|
|
||||||
</message>
|
|
||||||
</context>
|
|
||||||
<context>
|
|
||||||
<name>SettingsDialog</name>
|
|
||||||
<message>
|
|
||||||
<location filename="../settingsdialog.cpp" line="31"/>
|
|
||||||
<source>Settings</source>
|
|
||||||
<translation>அமைப்புகள்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../settingsdialog.cpp" line="39"/>
|
|
||||||
<source>Options</source>
|
|
||||||
<translation>விருப்பங்கள்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../settingsdialog.cpp" line="51"/>
|
|
||||||
<source>Shortcuts</source>
|
|
||||||
<translation>குறுக்குவழிகள்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../settingsdialog.cpp" line="61"/>
|
|
||||||
<source>Editing shortcuts for action "%1":</source>
|
|
||||||
<translation>செயலுக்கான குறுக்குவழிகளைத் திருத்துதல் "%1":</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../settingsdialog.cpp" line="70"/>
|
|
||||||
<source>Failed to set shortcuts</source>
|
|
||||||
<translation>குறுக்குவழிகளை அமைப்பதில் தோல்வி</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../settingsdialog.cpp" line="71"/>
|
|
||||||
<source>Please check if shortcuts are duplicated with existing shortcuts.</source>
|
|
||||||
<translation>தற்போதுள்ள குறுக்குவழிகளுடன் குறுக்குவழிகள் நகல் செய்யப்பட்டுள்ளதா என்று சரிபார்க்கவும்.</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../settingsdialog.cpp" line="78"/>
|
|
||||||
<source>Do nothing</source>
|
|
||||||
<translation>எதுவும் செய்ய வேண்டாம்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../settingsdialog.cpp" line="79"/>
|
|
||||||
<source>Close the window</source>
|
|
||||||
<translation>சாளரத்தை மூடு</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../settingsdialog.cpp" line="80"/>
|
|
||||||
<source>Toggle maximize</source>
|
|
||||||
<translation>அதிகபட்சத்தை மாற்றவும்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../settingsdialog.cpp" line="81"/>
|
|
||||||
<source>Toggle fullscreen</source>
|
|
||||||
<translation>மாற்று முழுத்திரை</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../settingsdialog.cpp" line="85"/>
|
|
||||||
<source>Zoom in and out</source>
|
|
||||||
<translation>உள்ளேயும் வெளியேயும் பெரிதாக்கவும்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../settingsdialog.cpp" line="86"/>
|
|
||||||
<source>View next or previous item</source>
|
|
||||||
<translation>அடுத்த அல்லது முந்தைய உருப்படியைக் காண்க</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../settingsdialog.cpp" line="90"/>
|
|
||||||
<source>Auto size</source>
|
|
||||||
<translation>வாகன அளவு</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../settingsdialog.cpp" line="91"/>
|
|
||||||
<source>Maximized</source>
|
|
||||||
<translation>அதிகபட்சம்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../settingsdialog.cpp" line="92"/>
|
|
||||||
<source>Windowed</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../settingsdialog.cpp" line="96"/>
|
|
||||||
<source>Round (Integer scaling)</source>
|
|
||||||
<comment>This option means round up for .5 and above</comment>
|
|
||||||
<translation>சுற்று (முழு எண் அளவிடுதல்)</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../settingsdialog.cpp" line="97"/>
|
|
||||||
<source>Ceil (Integer scaling)</source>
|
|
||||||
<comment>This option means always round up</comment>
|
|
||||||
<translation>சீல் (முழு எண் அளவிடுதல்)</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../settingsdialog.cpp" line="98"/>
|
|
||||||
<source>Floor (Integer scaling)</source>
|
|
||||||
<comment>This option means always round down</comment>
|
|
||||||
<translation>மாடி (முழு எண் அளவிடுதல்)</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../settingsdialog.cpp" line="99"/>
|
|
||||||
<source>Follow system (Fractional scaling)</source>
|
|
||||||
<comment>This option means don't round</comment>
|
|
||||||
<translation>கணினியைப் பின்பற்றவும் (பகுதியளவு அளவிடுதல்)</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../settingsdialog.cpp" line="122"/>
|
|
||||||
<source>Stay on top when start-up</source>
|
|
||||||
<translation>தொடக்கத்தில் இருக்கும்போது மேலே இருங்கள்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../settingsdialog.cpp" line="123"/>
|
|
||||||
<source>Use built-in close window animation</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../settingsdialog.cpp" line="124"/>
|
|
||||||
<source>Use light-color checkerboard</source>
|
|
||||||
<translation>ஒளி-வண்ண செக்கர்போர்டைப் பயன்படுத்தவும்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../settingsdialog.cpp" line="125"/>
|
|
||||||
<source>Loop the loaded gallery</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../settingsdialog.cpp" line="126"/>
|
|
||||||
<source>Double-click behavior</source>
|
|
||||||
<translation>நடத்தை இருமுறை சொடுக்கு செய்யவும்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../settingsdialog.cpp" line="127"/>
|
|
||||||
<source>Mouse wheel behavior</source>
|
|
||||||
<translation>சுட்டி சக்கர நடத்தை</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../settingsdialog.cpp" line="128"/>
|
|
||||||
<source>Default window size</source>
|
|
||||||
<translation>இயல்புநிலை சாளர அளவு</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../settingsdialog.cpp" line="129"/>
|
|
||||||
<source>HiDPI scale factor rounding policy</source>
|
|
||||||
<translation>HIDPI அளவிலான காரணி ரவுண்டிங் கொள்கை</translation>
|
|
||||||
</message>
|
|
||||||
</context>
|
|
||||||
<context>
|
|
||||||
<name>ShortcutEdit</name>
|
|
||||||
<message>
|
|
||||||
<location filename="../shortcutedit.cpp" line="109"/>
|
|
||||||
<source>No shortcuts</source>
|
|
||||||
<translation>குறுக்குவழிகள் இல்லை</translation>
|
|
||||||
</message>
|
|
||||||
</context>
|
|
||||||
<context>
|
|
||||||
<name>ShortcutEditor</name>
|
|
||||||
<message>
|
|
||||||
<location filename="../shortcutedit.cpp" line="75"/>
|
|
||||||
<source>Shortcut #%1</source>
|
|
||||||
<translation>குறுக்குவழி #%1</translation>
|
|
||||||
</message>
|
|
||||||
</context>
|
|
||||||
<context>
|
|
||||||
<name>main</name>
|
|
||||||
<message>
|
|
||||||
<location filename="../main.cpp" line="42"/>
|
|
||||||
<source>Pineapple Pictures</source>
|
|
||||||
<translation>அன்னாசி படங்கள்</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../main.cpp" line="45"/>
|
|
||||||
<source>List supported image format suffixes, and quit program.</source>
|
|
||||||
<translation>ஆதரிக்கப்பட்ட பட வடிவமைப்பு பின்னொட்டுகளை பட்டியலிடுங்கள், மற்றும் நிரல் வெளியேறுதல்.</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../main.cpp" line="49"/>
|
|
||||||
<source>File list.</source>
|
|
||||||
<translation>கோப்பு பட்டியல்.</translation>
|
|
||||||
</message>
|
|
||||||
</context>
|
|
||||||
</TS>
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
90
appveyor.yml
90
appveyor.yml
@ -8,14 +8,22 @@ environment:
|
|||||||
LIBEXIV2: C:\projects\exiv2
|
LIBEXIV2: C:\projects\exiv2
|
||||||
PPKG: C:\projects\ppkg
|
PPKG: C:\projects\ppkg
|
||||||
matrix:
|
matrix:
|
||||||
- job_name: mingw_64_qt6_8
|
- job_name: mingw_64_qt6_5
|
||||||
QTDIR: C:\Qt\6.8\mingw_64
|
QTDIR: C:\Qt\6.5\mingw_64
|
||||||
MINGW64: C:\Qt\Tools\mingw1310_64
|
MINGW64: C:\Qt\Tools\mingw1120_64
|
||||||
KF_BRANCH: master
|
KF_BRANCH: master
|
||||||
EXIV2_VERSION: "0.28.5"
|
EXIV2_VERSION: "0.28.0"
|
||||||
EXIV2_CMAKE_OPTIONS: "-DEXIV2_ENABLE_BROTLI=OFF -DEXIV2_ENABLE_INIH=OFF -DEXIV2_BUILD_EXIV2_COMMAND=OFF"
|
EXIV2_CMAKE_OPTIONS: "-DEXIV2_ENABLE_BROTLI=OFF -DEXIV2_ENABLE_INIH=OFF -DEXIV2_BUILD_EXIV2_COMMAND=OFF"
|
||||||
PPIC_CMAKE_OPTIONS: "-DPREFER_QT_5=OFF"
|
PPIC_CMAKE_OPTIONS: "-DPREFER_QT_5=OFF"
|
||||||
WINDEPLOYQT_ARGS: "--verbose=2 --no-quick-import --no-translations --no-opengl-sw --no-system-d3d-compiler --skip-plugin-types tls,networkinformation"
|
WINDEPLOYQT_ARGS: "--verbose=2 --no-quick-import --no-translations --no-opengl-sw --no-system-d3d-compiler"
|
||||||
|
- job_name: mingw81_64_qt5_15_2
|
||||||
|
QTDIR: C:\Qt\5.15.2\mingw81_64
|
||||||
|
MINGW64: C:\Qt\Tools\mingw810_64
|
||||||
|
KF_BRANCH: kf5
|
||||||
|
EXIV2_VERSION: "0.27.7"
|
||||||
|
EXIV2_CMAKE_OPTIONS: "-DEXIV2_BUILD_SAMPLES=OFF -DEXIV2_ENABLE_WIN_UNICODE=ON -DEXIV2_BUILD_EXIV2_COMMAND=OFF"
|
||||||
|
PPIC_CMAKE_OPTIONS: ""
|
||||||
|
WINDEPLOYQT_ARGS: "--verbose=2 --no-quick-import --no-translations --no-opengl-sw --no-angle --no-system-d3d-compiler"
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- mkdir %CMAKE_INSTALL_PREFIX%
|
- mkdir %CMAKE_INSTALL_PREFIX%
|
||||||
@ -33,21 +41,36 @@ install:
|
|||||||
build_script:
|
build_script:
|
||||||
# prepare
|
# prepare
|
||||||
- mkdir 3rdparty
|
- mkdir 3rdparty
|
||||||
- choco install ninja
|
- cinst ninja
|
||||||
- cd %PPKG%
|
- cd %PPKG%
|
||||||
- curl -fsSL -o ppkg.exe https://github.com/BLumia/pineapple-package-manager/releases/latest/download/ppkg.exe
|
- curl -fsSL -o ppkg.exe https://github.com/BLumia/pineapple-package-manager/releases/latest/download/ppkg.exe
|
||||||
- cd %APPVEYOR_BUILD_FOLDER%
|
- cd %APPVEYOR_BUILD_FOLDER%
|
||||||
# download and install zlib for KArchive
|
# download and install zlib for KArchive
|
||||||
- cd %LIBZ%
|
- cd %LIBZ%
|
||||||
- curl -fsSL -o zlib131.zip https://zlib.net/zlib131.zip
|
- curl -fsSL -o zlib13.zip https://zlib.net/zlib13.zip
|
||||||
- 7z x zlib131.zip -y
|
- 7z x zlib13.zip -y
|
||||||
- cd zlib-1.3.1
|
- cd zlib-1.3
|
||||||
- mkdir build
|
- mkdir build
|
||||||
- cd build
|
- cd build
|
||||||
- cmake .. -G "Ninja" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=%CMAKE_INSTALL_PREFIX%
|
- cmake .. -G "Ninja" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=%CMAKE_INSTALL_PREFIX%
|
||||||
- cmake --build . --config Release
|
- cmake --build . --config Release
|
||||||
- cmake --build . --config Release --target install/strip
|
- cmake --build . --config Release --target install/strip
|
||||||
- cd %APPVEYOR_BUILD_FOLDER%
|
- cd %APPVEYOR_BUILD_FOLDER%
|
||||||
|
# QtApng for APNG
|
||||||
|
- cd 3rdparty
|
||||||
|
- mkdir QtApng
|
||||||
|
- cd QtApng
|
||||||
|
- curl -fsSL -o ppkg-QtApng.zip https://sourceforge.net/projects/pineapple-package-manager/files/packages/mingw-w64-x86_64-windows/QtApng-qt5.15.2-gea53d73-1.zip
|
||||||
|
- ppkg ppkg-QtApng.zip
|
||||||
|
- 7z x ppkg-QtApng.zip LICENSE -y
|
||||||
|
# - git clone --branch detect-format-from-content --depth 1 https://github.com/BLumia/QtApng.git
|
||||||
|
# - cd QtApng
|
||||||
|
# - mkdir build
|
||||||
|
# - cd build
|
||||||
|
# - qmake "CONFIG+=libpng_static" ../
|
||||||
|
# - mingw32-make
|
||||||
|
# - mingw32-make install
|
||||||
|
- cd %APPVEYOR_BUILD_FOLDER%
|
||||||
# install ECM so we can build KImageFormats
|
# install ECM so we can build KImageFormats
|
||||||
- cd 3rdparty
|
- cd 3rdparty
|
||||||
- git clone -b %KF_BRANCH% -q https://invent.kde.org/frameworks/extra-cmake-modules.git
|
- git clone -b %KF_BRANCH% -q https://invent.kde.org/frameworks/extra-cmake-modules.git
|
||||||
@ -57,9 +80,24 @@ build_script:
|
|||||||
- cmake --build .
|
- cmake --build .
|
||||||
- cmake --build . --target install
|
- cmake --build . --target install
|
||||||
- cd %APPVEYOR_BUILD_FOLDER%
|
- cd %APPVEYOR_BUILD_FOLDER%
|
||||||
|
# install openexr for EXR format plugin from KImageFormats
|
||||||
|
- cd 3rdparty
|
||||||
|
- mkdir openexr
|
||||||
|
- cd openexr
|
||||||
|
# - git clone -b v3.1.3 --depth 1 https://github.com/AcademySoftwareFoundation/openexr.git
|
||||||
|
# - cd openexr
|
||||||
|
# - mkdir build
|
||||||
|
# - cd build
|
||||||
|
# - cmake .. -G "Ninja" -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS=-D__STDC_FORMAT_MACROS=1 -DOPENEXR_INSTALL_EXAMPLES=OFF -DCMAKE_INSTALL_PREFIX=%CMAKE_INSTALL_PREFIX%
|
||||||
|
# - cmake --build . --config Release
|
||||||
|
# - cmake --build . --config Release --target install/strip
|
||||||
|
- curl -fsSL -o ppkg-openexr.zip https://sourceforge.net/projects/pineapple-package-manager/files/packages/mingw-w64-x86_64-windows/openexr-3.1.3-1.zip
|
||||||
|
- ppkg ppkg-openexr.zip
|
||||||
|
- 7z x ppkg-openexr.zip LICENSE.md -y
|
||||||
|
- cd %APPVEYOR_BUILD_FOLDER%
|
||||||
# install AOM for libavif AV1 decoding support...
|
# install AOM for libavif AV1 decoding support...
|
||||||
- cd 3rdparty
|
- cd 3rdparty
|
||||||
#- git clone -b v3.9.1 --depth 1 https://aomedia.googlesource.com/aom
|
#- git clone -b v3.6.0 --depth 1 https://aomedia.googlesource.com/aom
|
||||||
#- cd aom
|
#- cd aom
|
||||||
#- mkdir build.aom
|
#- mkdir build.aom
|
||||||
#- cd build.aom
|
#- cd build.aom
|
||||||
@ -68,18 +106,18 @@ build_script:
|
|||||||
#- cmake --build . --config Release --target install/strip
|
#- cmake --build . --config Release --target install/strip
|
||||||
- mkdir aom
|
- mkdir aom
|
||||||
- cd aom
|
- cd aom
|
||||||
- curl -fsSL -o ppkg-aom.zip https://sourceforge.net/projects/pineapple-package-manager/files/packages/mingw-w64-x86_64-windows/aom-3.9.1-2.zip
|
- curl -fsSL -o ppkg-aom.zip https://sourceforge.net/projects/pineapple-package-manager/files/packages/mingw-w64-x86_64-windows/aom-3.6.0-1.zip
|
||||||
- ppkg ppkg-aom.zip
|
- ppkg ppkg-aom.zip
|
||||||
- 7z x ppkg-aom.zip LICENSE -y
|
- 7z x ppkg-aom.zip LICENSE -y
|
||||||
- cd %APPVEYOR_BUILD_FOLDER%
|
- cd %APPVEYOR_BUILD_FOLDER%
|
||||||
# install libavif for avif format support of KImageFormats
|
# install libavif for avif format support of KImageFormats
|
||||||
- cd %LIBAVIF%
|
- cd %LIBAVIF%
|
||||||
- curl -fsSL -o libavif-v1_1_1.zip https://github.com/AOMediaCodec/libavif/archive/v1.1.1.zip
|
- curl -fsSL -o libavif-v0_11_1.zip https://github.com/AOMediaCodec/libavif/archive/v0.11.1.zip
|
||||||
- 7z x libavif-v1_1_1.zip -y
|
- 7z x libavif-v0_11_1.zip -y
|
||||||
- cd libavif-1.1.1
|
- cd libavif-0.11.1
|
||||||
- mkdir build
|
- mkdir build
|
||||||
- cd build
|
- cd build
|
||||||
- cmake .. -G "Ninja" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=%CMAKE_INSTALL_PREFIX% -DAVIF_CODEC_AOM=ON -DAVIF_LOCAL_LIBYUV=ON
|
- cmake .. -G "Ninja" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=%CMAKE_INSTALL_PREFIX% -DAVIF_CODEC_AOM=ON
|
||||||
- cmake --build . --config Release
|
- cmake --build . --config Release
|
||||||
- cmake --build . --config Release --target install/strip
|
- cmake --build . --config Release --target install/strip
|
||||||
- cd %APPVEYOR_BUILD_FOLDER%
|
- cd %APPVEYOR_BUILD_FOLDER%
|
||||||
@ -90,15 +128,15 @@ build_script:
|
|||||||
- cd karchive
|
- cd karchive
|
||||||
- mkdir build
|
- mkdir build
|
||||||
- cd build
|
- cd build
|
||||||
- cmake .. -G "Ninja" -DWITH_LIBZSTD=OFF -DWITH_BZIP2=OFF -DWITH_LIBLZMA=OFF -DWITH_OPENSSL=OFF -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=%CMAKE_INSTALL_PREFIX%
|
- cmake .. -G "Ninja" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=%CMAKE_INSTALL_PREFIX%
|
||||||
- cmake --build . --config Release
|
- cmake --build . --config Release
|
||||||
- cmake --build . --config Release --target install/strip
|
- cmake --build . --config Release --target install/strip
|
||||||
- cd %APPVEYOR_BUILD_FOLDER%
|
- cd %APPVEYOR_BUILD_FOLDER%
|
||||||
# build libexpat for libexiv2
|
# build libexpat for libexiv2
|
||||||
- cd %LIBEXPAT%
|
- cd %LIBEXPAT%
|
||||||
- curl -fsSL -o R_2_6_2.zip https://github.com/libexpat/libexpat/archive/R_2_6_2.zip
|
- curl -fsSL -o R_2_5_0.zip https://github.com/libexpat/libexpat/archive/R_2_5_0.zip
|
||||||
- 7z x R_2_6_2.zip -y
|
- 7z x R_2_5_0.zip -y
|
||||||
- cd libexpat-R_2_6_2/expat/
|
- cd libexpat-R_2_5_0/expat/
|
||||||
- cmake -G "Ninja" . -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=%CMAKE_INSTALL_PREFIX% -DEXPAT_BUILD_EXAMPLES=OFF -DEXPAT_BUILD_TESTS=OFF -DEXPAT_BUILD_TOOLS=OFF
|
- cmake -G "Ninja" . -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=%CMAKE_INSTALL_PREFIX% -DEXPAT_BUILD_EXAMPLES=OFF -DEXPAT_BUILD_TESTS=OFF -DEXPAT_BUILD_TOOLS=OFF
|
||||||
- cmake --build . --target install/strip
|
- cmake --build . --target install/strip
|
||||||
- cd %APPVEYOR_BUILD_FOLDER%
|
- cd %APPVEYOR_BUILD_FOLDER%
|
||||||
@ -117,14 +155,14 @@ build_script:
|
|||||||
- cd kimageformats
|
- cd kimageformats
|
||||||
- mkdir build
|
- mkdir build
|
||||||
- cd build
|
- cd build
|
||||||
- cmake .. -G "Ninja" -DBUILD_TESTING=OFF -DCMAKE_BUILD_TYPE=Release -DKDE_INSTALL_QTPLUGINDIR=%QTDIR%\plugins
|
- cmake .. -G "Ninja" -DCMAKE_BUILD_TYPE=Release -DKDE_INSTALL_QTPLUGINDIR=%QTDIR%\plugins
|
||||||
- cmake --build . --config Release
|
- cmake --build . --config Release
|
||||||
- cmake --build . --config Release --target install/strip
|
- cmake --build . --config Release --target install/strip
|
||||||
- cd %APPVEYOR_BUILD_FOLDER%
|
- cd %APPVEYOR_BUILD_FOLDER%
|
||||||
# finally...
|
# finally...
|
||||||
- mkdir build
|
- mkdir build
|
||||||
- cd build
|
- cd build
|
||||||
- cmake .. -G "Ninja" %PPIC_CMAKE_OPTIONS% -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=%CMAKE_INSTALL_PREFIX% -DCMAKE_INSTALL_PREFIX='%cd%'
|
- cmake .. -G "Unix Makefiles" %PPIC_CMAKE_OPTIONS% -DCMAKE_BUILD_TYPE=Release -DCMAKE_MAKE_PROGRAM=mingw32-make -DCMAKE_INSTALL_PREFIX='%cd%'
|
||||||
- cmake --build . --config Release
|
- cmake --build . --config Release
|
||||||
- cmake --build . --config Release --target install/strip
|
- cmake --build . --config Release --target install/strip
|
||||||
# fixme: I don't know how to NOT make the binary installed to the ./bin/ folder...
|
# fixme: I don't know how to NOT make the binary installed to the ./bin/ folder...
|
||||||
@ -135,16 +173,22 @@ build_script:
|
|||||||
- copy %CMAKE_INSTALL_PREFIX%\bin\libexiv2.dll
|
- copy %CMAKE_INSTALL_PREFIX%\bin\libexiv2.dll
|
||||||
- copy %CMAKE_INSTALL_PREFIX%\bin\libavif.dll
|
- copy %CMAKE_INSTALL_PREFIX%\bin\libavif.dll
|
||||||
- copy %CMAKE_INSTALL_PREFIX%\bin\libzlib.dll
|
- copy %CMAKE_INSTALL_PREFIX%\bin\libzlib.dll
|
||||||
|
- copy %CMAKE_INSTALL_PREFIX%\bin\libIex-3_1.dll
|
||||||
|
- copy %CMAKE_INSTALL_PREFIX%\bin\libImath-3_1.dll
|
||||||
|
- copy %CMAKE_INSTALL_PREFIX%\bin\libIlmThread-3_1.dll
|
||||||
|
- copy %CMAKE_INSTALL_PREFIX%\bin\libOpenEXR-3_1.dll
|
||||||
- copy %CMAKE_INSTALL_PREFIX%\bin\libKF?Archive.dll
|
- copy %CMAKE_INSTALL_PREFIX%\bin\libKF?Archive.dll
|
||||||
- windeployqt %WINDEPLOYQT_ARGS% .\ppic.exe
|
- windeployqt %WINDEPLOYQT_ARGS% .\ppic.exe
|
||||||
# copy 3rdparty licenses for the libs we vendored for windows...
|
# copy 3rdparty licenses for the libs we vendored for windows...
|
||||||
- mkdir licenses
|
- mkdir licenses
|
||||||
- cd licenses
|
- cd licenses
|
||||||
- copy %APPVEYOR_BUILD_FOLDER%\3rdparty\aom\LICENSE License.aom.txt
|
- copy %APPVEYOR_BUILD_FOLDER%\3rdparty\aom\LICENSE License.aom.txt
|
||||||
|
- copy %APPVEYOR_BUILD_FOLDER%\3rdparty\openexr\LICENSE.md License.openexr.txt
|
||||||
- copy %APPVEYOR_BUILD_FOLDER%\3rdparty\karchive\LICENSES\LGPL-2.0-or-later.txt License.KArchive.txt
|
- copy %APPVEYOR_BUILD_FOLDER%\3rdparty\karchive\LICENSES\LGPL-2.0-or-later.txt License.KArchive.txt
|
||||||
- copy %APPVEYOR_BUILD_FOLDER%\3rdparty\kimageformats\LICENSES\LGPL-2.1-or-later.txt License.kimageformats.txt
|
- copy %APPVEYOR_BUILD_FOLDER%\3rdparty\kimageformats\LICENSES\LGPL-2.1-or-later.txt License.kimageformats.txt
|
||||||
- copy %LIBEXPAT%\libexpat-R_2_6_2\expat\COPYING License.expat.txt
|
- copy %APPVEYOR_BUILD_FOLDER%\3rdparty\QtApng\LICENSE License.QtApng.txt
|
||||||
- copy %LIBAVIF%\libavif-1.1.1\LICENSE License.libavif.txt
|
- copy %LIBEXPAT%\libexpat-R_2_5_0\expat\COPYING License.expat.txt
|
||||||
|
- copy %LIBAVIF%\libavif-0.11.1\LICENSE License.libavif.txt
|
||||||
- copy %LIBEXIV2%\exiv2-%EXIV2_VERSION%\COPYING License.exiv2.txt
|
- copy %LIBEXIV2%\exiv2-%EXIV2_VERSION%\COPYING License.exiv2.txt
|
||||||
# TODO: Qt, zlib
|
# TODO: Qt, zlib
|
||||||
- cd ..
|
- cd ..
|
||||||
|
Binary file not shown.
@ -6,7 +6,7 @@ BEGIN
|
|||||||
BLOCK "040904E4"
|
BLOCK "040904E4"
|
||||||
BEGIN
|
BEGIN
|
||||||
VALUE "FileDescription", "Pineapple Pictures - Image Viewer"
|
VALUE "FileDescription", "Pineapple Pictures - Image Viewer"
|
||||||
VALUE "LegalCopyright", "MIT/Expat License - Copyright (C) 2024 Gary Wang"
|
VALUE "LegalCopyright", "MIT/Expat License - Copyright (C) 2020 Gary Wang"
|
||||||
VALUE "ProductName", "Pineapple Pictures"
|
VALUE "ProductName", "Pineapple Pictures"
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
@ -14,4 +14,4 @@ BEGIN
|
|||||||
BEGIN
|
BEGIN
|
||||||
VALUE "Translation", 0x409, 1200
|
VALUE "Translation", 0x409, 1200
|
||||||
END
|
END
|
||||||
END
|
END
|
@ -4,16 +4,15 @@
|
|||||||
<li><u>Dutch</u>: Heimen Stoffels</li>
|
<li><u>Dutch</u>: Heimen Stoffels</li>
|
||||||
<li><u>French</u>: J. Lavoie, K. Herbert, Maxime Leroy</li>
|
<li><u>French</u>: J. Lavoie, K. Herbert, Maxime Leroy</li>
|
||||||
<li><u>German</u>: K. Herbert, J. Lavoie, sal0max</li>
|
<li><u>German</u>: K. Herbert, J. Lavoie, sal0max</li>
|
||||||
<li><u>Indonesian</u>: liimee, Reza Almanda</li>
|
<li><u>Indonesian</u>: liimee</li>
|
||||||
<li><u>Italian</u>: albanobattistella</li>
|
<li><u>Italian</u>: albanobattistella</li>
|
||||||
<li><u>Japanese</u>: Black Cat, mmahhi, Percy Hong</li>
|
<li><u>Japanese</u>: Black Cat, Percy Hong</li>
|
||||||
<li><u>Korean</u>: VenusGirl</li>
|
<li><u>Korean</u>: VenusGirl</li>
|
||||||
<li><u>Norwegian Bokmål</u>: Allan Nordhøy, ovl-1</li>
|
<li><u>Norwegian Bokmål</u>: Allan Nordhøy, ovl-1</li>
|
||||||
<li><u>Punjabi (Pakistan)</u>: bgo-eiu</li>
|
<li><u>Punjabi (Pakistan)</u>: bgo-eiu</li>
|
||||||
<li><u>Russian</u>: Sergey Shornikov, Artem, Andrey</li>
|
<li><u>Russian</u>: Sergey Shornikov, Artem, Andrey</li>
|
||||||
<li><u>Sinhala</u>: HelaBasa</li>
|
<li><u>Sinhala</u>: HelaBasa</li>
|
||||||
<li><u>Spanish</u>: Toni Estévez, Génesis Toxical, William(ѕ)ⁿ, gallegonovato</li>
|
<li><u>Spanish</u>: Toni Estévez, Génesis Toxical, William(ѕ)ⁿ, gallegonovato</li>
|
||||||
<li><u>Tamil</u>: தமிழ்நேரம் (TamilNeram)</li>
|
|
||||||
<li><u>Turkish</u>: E-Akcaer, Oğuz Ersen, Sabri Ünal</li>
|
<li><u>Turkish</u>: E-Akcaer, Oğuz Ersen, Sabri Ünal</li>
|
||||||
<li><u>Ukrainian</u>: Dan, volkov, Сергій</li>
|
<li><u>Ukrainian</u>: Dan</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
96
cmake/FindLibExiv2.cmake
Normal file
96
cmake/FindLibExiv2.cmake
Normal file
@ -0,0 +1,96 @@
|
|||||||
|
#.rst:
|
||||||
|
# FindLibExiv2
|
||||||
|
# ------------
|
||||||
|
#
|
||||||
|
# Try to find the Exiv2 library.
|
||||||
|
#
|
||||||
|
# This will define the following variables:
|
||||||
|
#
|
||||||
|
# ``LibExiv2_FOUND``
|
||||||
|
# True if (the requested version of) Exiv2 is available
|
||||||
|
#
|
||||||
|
# ``LibExiv2_VERSION``
|
||||||
|
# The version of Exiv2
|
||||||
|
#
|
||||||
|
# ``LibExiv2_INCLUDE_DIRS``
|
||||||
|
# The include dirs of Exiv2 for use with target_include_directories()
|
||||||
|
#
|
||||||
|
# ``LibExiv2_LIBRARIES``
|
||||||
|
# The Exiv2 library for use with target_link_libraries().
|
||||||
|
# This can be passed to target_link_libraries() instead of
|
||||||
|
# the ``LibExiv2::LibExiv2`` target
|
||||||
|
#
|
||||||
|
# If ``LibExiv2_FOUND`` is TRUE, it will also define the following imported
|
||||||
|
# target:
|
||||||
|
#
|
||||||
|
# ``LibExiv2::LibExiv2``
|
||||||
|
# The Exiv2 library
|
||||||
|
#
|
||||||
|
# In general we recommend using the imported target, as it is easier to use.
|
||||||
|
# Bear in mind, however, that if the target is in the link interface of an
|
||||||
|
# exported library, it must be made available by the package config file.
|
||||||
|
#
|
||||||
|
# Since 5.53.0.
|
||||||
|
#
|
||||||
|
#=============================================================================
|
||||||
|
# SPDX-FileCopyrightText: 2018 Christophe Giboudeaux <christophe@krop.fr>
|
||||||
|
# SPDX-FileCopyrightText: 2010 Alexander Neundorf <neundorf@kde.org>
|
||||||
|
# SPDX-FileCopyrightText: 2008 Gilles Caulier <caulier.gilles@gmail.com>
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: BSD-3-Clause
|
||||||
|
#=============================================================================
|
||||||
|
|
||||||
|
find_package(PkgConfig QUIET)
|
||||||
|
pkg_check_modules(PC_EXIV2 QUIET exiv2)
|
||||||
|
|
||||||
|
find_path(LibExiv2_INCLUDE_DIRS NAMES exiv2/exif.hpp
|
||||||
|
HINTS ${PC_EXIV2_INCLUDEDIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
find_library(LibExiv2_LIBRARIES NAMES exiv2 libexiv2
|
||||||
|
HINTS ${PC_EXIV2_LIBRARY_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
set(LibExiv2_VERSION ${PC_EXIV2_VERSION})
|
||||||
|
|
||||||
|
if(NOT LibExiv2_VERSION AND DEFINED LibExiv2_INCLUDE_DIRS)
|
||||||
|
# With exiv >= 0.27, the version #defines are in exv_conf.h instead of version.hpp
|
||||||
|
foreach(_exiv2_version_file "version.hpp" "exv_conf.h")
|
||||||
|
if(EXISTS "${LibExiv2_INCLUDE_DIRS}/exiv2/${_exiv2_version_file}")
|
||||||
|
file(READ "${LibExiv2_INCLUDE_DIRS}/exiv2/${_exiv2_version_file}" _exiv_version_file_content)
|
||||||
|
string(REGEX MATCH "#define EXIV2_MAJOR_VERSION[ ]+\\([0-9]+\\)" EXIV2_MAJOR_VERSION_MATCH ${_exiv_version_file_content})
|
||||||
|
string(REGEX MATCH "#define EXIV2_MINOR_VERSION[ ]+\\([0-9]+\\)" EXIV2_MINOR_VERSION_MATCH ${_exiv_version_file_content})
|
||||||
|
string(REGEX MATCH "#define EXIV2_PATCH_VERSION[ ]+\\([0-9]+\\)" EXIV2_PATCH_VERSION_MATCH ${_exiv_version_file_content})
|
||||||
|
if(EXIV2_MAJOR_VERSION_MATCH)
|
||||||
|
string(REGEX REPLACE ".*_MAJOR_VERSION[ ]+\\((.*)\\)" "\\1" EXIV2_MAJOR_VERSION ${EXIV2_MAJOR_VERSION_MATCH})
|
||||||
|
string(REGEX REPLACE ".*_MINOR_VERSION[ ]+\\((.*)\\)" "\\1" EXIV2_MINOR_VERSION ${EXIV2_MINOR_VERSION_MATCH})
|
||||||
|
string(REGEX REPLACE ".*_PATCH_VERSION[ ]+\\((.*)\\)" "\\1" EXIV2_PATCH_VERSION ${EXIV2_PATCH_VERSION_MATCH})
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
endforeach()
|
||||||
|
|
||||||
|
set(LibExiv2_VERSION "${EXIV2_MAJOR_VERSION}.${EXIV2_MINOR_VERSION}.${EXIV2_PATCH_VERSION}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
include(FindPackageHandleStandardArgs)
|
||||||
|
find_package_handle_standard_args(LibExiv2
|
||||||
|
FOUND_VAR LibExiv2_FOUND
|
||||||
|
REQUIRED_VARS LibExiv2_LIBRARIES LibExiv2_INCLUDE_DIRS
|
||||||
|
VERSION_VAR LibExiv2_VERSION
|
||||||
|
)
|
||||||
|
|
||||||
|
mark_as_advanced(LibExiv2_INCLUDE_DIRS LibExiv2_LIBRARIES)
|
||||||
|
|
||||||
|
if(LibExiv2_FOUND AND NOT TARGET LibExiv2::LibExiv2)
|
||||||
|
add_library(LibExiv2::LibExiv2 UNKNOWN IMPORTED)
|
||||||
|
set_target_properties(LibExiv2::LibExiv2 PROPERTIES
|
||||||
|
IMPORTED_LOCATION "${LibExiv2_LIBRARIES}"
|
||||||
|
INTERFACE_INCLUDE_DIRECTORIES "${LibExiv2_INCLUDE_DIRS}"
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
include(FeatureSummary)
|
||||||
|
set_package_properties(LibExiv2 PROPERTIES
|
||||||
|
URL "https://www.exiv2.org"
|
||||||
|
DESCRIPTION "Image metadata support"
|
||||||
|
)
|
136
dist/MacOSXBundleInfo.plist.in
vendored
136
dist/MacOSXBundleInfo.plist.in
vendored
@ -1,136 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
||||||
<plist version="1.0">
|
|
||||||
<dict>
|
|
||||||
<key>CFBundleDevelopmentRegion</key>
|
|
||||||
<string>English</string>
|
|
||||||
<key>CFBundleExecutable</key>
|
|
||||||
<string>${MACOSX_BUNDLE_EXECUTABLE_NAME}</string>
|
|
||||||
<key>CFBundleGetInfoString</key>
|
|
||||||
<string>${MACOSX_BUNDLE_INFO_STRING}</string>
|
|
||||||
<key>CFBundleIconFile</key>
|
|
||||||
<string>${MACOSX_BUNDLE_ICON_FILE}</string>
|
|
||||||
<key>CFBundleIdentifier</key>
|
|
||||||
<string>${MACOSX_BUNDLE_GUI_IDENTIFIER}</string>
|
|
||||||
<key>CFBundleInfoDictionaryVersion</key>
|
|
||||||
<string>6.0</string>
|
|
||||||
<key>CFBundleLongVersionString</key>
|
|
||||||
<string>${MACOSX_BUNDLE_LONG_VERSION_STRING}</string>
|
|
||||||
<key>CFBundleName</key>
|
|
||||||
<string>${MACOSX_BUNDLE_BUNDLE_NAME}</string>
|
|
||||||
<key>CFBundlePackageType</key>
|
|
||||||
<string>APPL</string>
|
|
||||||
<key>CFBundleShortVersionString</key>
|
|
||||||
<string>${MACOSX_BUNDLE_SHORT_VERSION_STRING}</string>
|
|
||||||
<key>CFBundleSignature</key>
|
|
||||||
<string>????</string>
|
|
||||||
<key>CFBundleVersion</key>
|
|
||||||
<string>${MACOSX_BUNDLE_BUNDLE_VERSION}</string>
|
|
||||||
<key>CSResourcesFileMapped</key>
|
|
||||||
<true/>
|
|
||||||
<key>NSHumanReadableCopyright</key>
|
|
||||||
<string>${MACOSX_BUNDLE_COPYRIGHT}</string>
|
|
||||||
<!-- FIXME: this list can't be automatically generated by Qt's CMake API, don't know why. -->
|
|
||||||
<key>CFBundleLocalizations</key>
|
|
||||||
<array>
|
|
||||||
<string>en</string>
|
|
||||||
<string>ca</string>
|
|
||||||
<string>de</string>
|
|
||||||
<string>es</string>
|
|
||||||
<string>fr</string>
|
|
||||||
<string>id</string>
|
|
||||||
<string>it</string>
|
|
||||||
<string>ja</string>
|
|
||||||
<string>ko</string>
|
|
||||||
<string>nb_NO</string>
|
|
||||||
<string>nl</string>
|
|
||||||
<string>pa_PK</string>
|
|
||||||
<string>ru</string>
|
|
||||||
<string>si</string>
|
|
||||||
<string>ta</string>
|
|
||||||
<string>tr</string>
|
|
||||||
<string>uk</string>
|
|
||||||
<string>zh_CN</string>
|
|
||||||
</array>
|
|
||||||
<key>CFBundleDocumentTypes</key>
|
|
||||||
<array>
|
|
||||||
<!-- JPEG -->
|
|
||||||
<dict>
|
|
||||||
<key>CFBundleTypeName</key>
|
|
||||||
<string>JPEG Image</string>
|
|
||||||
<key>CFBundleTypeExtensions</key>
|
|
||||||
<array>
|
|
||||||
<string>jpg</string>
|
|
||||||
<string>jpeg</string>
|
|
||||||
<string>jfif</string>
|
|
||||||
</array>
|
|
||||||
<key>CFBundleTypeMIMETypes</key>
|
|
||||||
<array>
|
|
||||||
<string>image/jpeg</string>
|
|
||||||
</array>
|
|
||||||
<key>CFBundleTypeRole</key>
|
|
||||||
<string>Viewer</string>
|
|
||||||
</dict>
|
|
||||||
<!-- PNG -->
|
|
||||||
<dict>
|
|
||||||
<key>CFBundleTypeName</key>
|
|
||||||
<string>PNG Image</string>
|
|
||||||
<key>CFBundleTypeExtensions</key>
|
|
||||||
<array>
|
|
||||||
<string>png</string>
|
|
||||||
</array>
|
|
||||||
<key>CFBundleTypeMIMETypes</key>
|
|
||||||
<array>
|
|
||||||
<string>image/png</string>
|
|
||||||
</array>
|
|
||||||
<key>CFBundleTypeRole</key>
|
|
||||||
<string>Viewer</string>
|
|
||||||
</dict>
|
|
||||||
<!-- WebP -->
|
|
||||||
<dict>
|
|
||||||
<key>CFBundleTypeName</key>
|
|
||||||
<string>WebP Image</string>
|
|
||||||
<key>CFBundleTypeExtensions</key>
|
|
||||||
<array>
|
|
||||||
<string>webp</string>
|
|
||||||
</array>
|
|
||||||
<key>CFBundleTypeMIMETypes</key>
|
|
||||||
<array>
|
|
||||||
<string>image/webp</string>
|
|
||||||
</array>
|
|
||||||
<key>CFBundleTypeRole</key>
|
|
||||||
<string>Viewer</string>
|
|
||||||
</dict>
|
|
||||||
<!-- GIF -->
|
|
||||||
<dict>
|
|
||||||
<key>CFBundleTypeName</key>
|
|
||||||
<string>GIF Image</string>
|
|
||||||
<key>CFBundleTypeExtensions</key>
|
|
||||||
<array>
|
|
||||||
<string>gif</string>
|
|
||||||
</array>
|
|
||||||
<key>CFBundleTypeMIMETypes</key>
|
|
||||||
<array>
|
|
||||||
<string>image/gif</string>
|
|
||||||
</array>
|
|
||||||
<key>CFBundleTypeRole</key>
|
|
||||||
<string>Viewer</string>
|
|
||||||
</dict>
|
|
||||||
<!-- SVG -->
|
|
||||||
<dict>
|
|
||||||
<key>CFBundleTypeName</key>
|
|
||||||
<string>SVG Image</string>
|
|
||||||
<key>CFBundleTypeExtensions</key>
|
|
||||||
<array>
|
|
||||||
<string>svg</string>
|
|
||||||
</array>
|
|
||||||
<key>CFBundleTypeMIMETypes</key>
|
|
||||||
<array>
|
|
||||||
<string>image/svg+xml</string>
|
|
||||||
</array>
|
|
||||||
<key>CFBundleTypeRole</key>
|
|
||||||
<string>Viewer</string>
|
|
||||||
</dict>
|
|
||||||
</array>
|
|
||||||
</dict>
|
|
||||||
</plist>
|
|
@ -1,248 +1,59 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<component type="desktop-application">
|
<component type="desktop-application">
|
||||||
<id>net.blumia.pineapple-pictures</id>
|
<id>net.blumia.pineapple-pictures</id>
|
||||||
<name>Pineapple Pictures</name>
|
<launchable type="desktop-id">net.blumia.pineapple-pictures.desktop</launchable>
|
||||||
<name xml:lang="es">Pineapple Pictures</name>
|
|
||||||
<name xml:lang="ja">Pineapple Pictures</name>
|
|
||||||
<name xml:lang="nl">Pineapple Afbeeldingen</name>
|
|
||||||
<name xml:lang="ru">Pineapple Pictures</name>
|
|
||||||
<name xml:lang="ta">அன்னாசி படங்கள்</name>
|
|
||||||
<name xml:lang="uk">Pineapple Pictures</name>
|
|
||||||
<name xml:lang="zh-CN">菠萝看图</name>
|
|
||||||
<summary>Image Viewer</summary>
|
|
||||||
<summary xml:lang="es">Visor de imágenes</summary>
|
|
||||||
<summary xml:lang="ja">画像ビューアー</summary>
|
|
||||||
<summary xml:lang="nl">Afbeeldingsweergave</summary>
|
|
||||||
<summary xml:lang="ru">Просмотр изображений</summary>
|
|
||||||
<summary xml:lang="ta">பட பார்வையாளர்</summary>
|
|
||||||
<summary xml:lang="uk">Переглядач зображень</summary>
|
|
||||||
<summary xml:lang="zh-CN">图像查看器</summary>
|
|
||||||
<metadata_license>CC0-1.0</metadata_license>
|
<metadata_license>CC0-1.0</metadata_license>
|
||||||
<project_license>MIT</project_license>
|
<project_license>MIT</project_license>
|
||||||
|
<name>Pineapple Pictures</name>
|
||||||
|
<name xml:lang="nl">Pineapple Afbeeldingen</name>
|
||||||
|
<name xml:lang="ru">Pineapple Pictures</name>
|
||||||
|
<name xml:lang="zh-CN">菠萝看图</name>
|
||||||
|
<summary>Image Viewer</summary>
|
||||||
|
<summary xml:lang="nl">Afbeeldingsweergave</summary>
|
||||||
|
<summary xml:lang="ru">Просмотр изображений</summary>
|
||||||
|
<summary xml:lang="zh-CN">图像查看器</summary>
|
||||||
<description>
|
<description>
|
||||||
<p>Pineapple Pictures is a lightweight and easy-to-use image viewer that comes with a handy navigation thumbnail when zoom-in, and doesn't contain any image management support.</p>
|
<p>Pineapple Pictures is a lightweight and easy-to-use image viewer that comes with a handy navigation thumbnail when zoom-in, and doesn't contain any image management support.</p>
|
||||||
<p xml:lang="es">Pineapple Pictures es un visor de imágenes ligero y fácil de usar que viene con una práctica miniatura de navegación al hacer zoom, y no contiene ningún soporte de gestión de imágenes.</p>
|
|
||||||
<p xml:lang="ja">Pineapple Picturesは、ズームイン時に便利なナビゲーションサムネイルを備えた軽量で使いやすい画像ビューアです。画像管理のサポートは含まれていません。</p>
|
|
||||||
<p xml:lang="nl">Pineapple Afbeeldingen is een licht en eenvoudig te gebruiken afbeeldingsweergaveprogramma met miniatuurnavigatie na inzoomen. Het programma heeft echter geen fotobeheermogelijkheid.</p>
|
<p xml:lang="nl">Pineapple Afbeeldingen is een licht en eenvoudig te gebruiken afbeeldingsweergaveprogramma met miniatuurnavigatie na inzoomen. Het programma heeft echter geen fotobeheermogelijkheid.</p>
|
||||||
<p xml:lang="ru">Pineapple Pictures - это легкий и простой в использовании просмотрщик изображений, оснащенный удобной навигацией по миниатюрам при увеличении масштаба и не содержащий никакой поддержки управления изображениями.</p>
|
<p xml:lang="ru">Pineapple Pictures - это легкий и простой в использовании просмотрщик изображений, оснащенный удобной навигацией по миниатюрам при увеличении масштаба и не содержащий никакой поддержки управления изображениями.</p>
|
||||||
<p xml:lang="ta">அன்னாசி படங்கள் ஒரு இலகுரக மற்றும் பயன்படுத்த எளிதான பட பார்வையாளராகும், இது பெரிதாக்கும்போது ஒரு எளிமையான வழிசெலுத்தல் சிறுபடத்துடன் வருகிறது, மேலும் எந்த பட மேலாண்மை ஆதரவையும் கொண்டிருக்கவில்லை.</p>
|
|
||||||
<p xml:lang="uk">Pineapple Pictures – це легкий і простий у використанні переглядач зображень, який постачається зі зручною навігаційною мініатюрою при збільшенні масштабу і не містить жодної підтримки керування зображеннями.</p>
|
|
||||||
<p xml:lang="zh-CN">菠萝看图是一个轻量级易用的图像查看器,在图片放大时提供了方便的鸟瞰导航功能,且不包含任何图片管理功能。</p>
|
<p xml:lang="zh-CN">菠萝看图是一个轻量级易用的图像查看器,在图片放大时提供了方便的鸟瞰导航功能,且不包含任何图片管理功能。</p>
|
||||||
</description>
|
</description>
|
||||||
<developer id="net.blumia">
|
|
||||||
<name>Gary (BLumia) Wang et al.</name>
|
|
||||||
<name xml:lang="ja">Gary (BLumia) Wang など</name>
|
|
||||||
<name xml:lang="nl">Gary (BLumia) Wang e.a.</name>
|
|
||||||
<name xml:lang="ru">Gary (BLumia) Wang et al.</name>
|
|
||||||
<name xml:lang="uk">Gary (BLumia) Wang.</name>
|
|
||||||
<name xml:lang="zh-CN">Gary (BLumia) Wang 等人</name>
|
|
||||||
</developer>
|
|
||||||
<launchable type="desktop-id">net.blumia.pineapple-pictures.desktop</launchable>
|
|
||||||
<url type="homepage">https://github.com/BLumia/pineapple-pictures</url>
|
|
||||||
<url type="bugtracker">https://github.com/BLumia/pineapple-pictures/issues</url>
|
|
||||||
<url type="translate">https://hosted.weblate.org/projects/pineapple-pictures/</url>
|
|
||||||
<provides>
|
|
||||||
<binary>ppic</binary>
|
|
||||||
</provides>
|
|
||||||
<screenshots>
|
<screenshots>
|
||||||
<screenshot type="default">
|
<screenshot type="default">
|
||||||
<caption>Main window when an image file is loaded</caption>
|
<caption>Main window when an image file is loaded</caption>
|
||||||
<caption xml:lang="es">Ventana principal cuando se carga un archivo de imagen</caption>
|
|
||||||
<caption xml:lang="ja">画像ファイル読み込み時のメインウィンドウ</caption>
|
|
||||||
<caption xml:lang="nl">Hoofdvenster na het laden van een afbeelding</caption>
|
<caption xml:lang="nl">Hoofdvenster na het laden van een afbeelding</caption>
|
||||||
<caption xml:lang="ru">Основное окно после загрузки файла изображения</caption>
|
<caption xml:lang="ru">Основное окно после загрузки файла изображения</caption>
|
||||||
<caption xml:lang="ta">ஒரு படக் கோப்பு ஏற்றப்படும் போது முதன்மையான சாளரம்</caption>
|
|
||||||
<caption xml:lang="uk">Головне вікно після завантаження файлу зображення</caption>
|
|
||||||
<caption xml:lang="zh-CN">加载图片后的主窗口</caption>
|
<caption xml:lang="zh-CN">加载图片后的主窗口</caption>
|
||||||
<image type="source" width="1503" height="640">https://pineapple-pictures.sourceforge.io/ppic-gui-static.png</image>
|
<image type="source" width="1503" height="640">https://pineapple-pictures.sourceforge.io/ppic-gui-static.png</image>
|
||||||
</screenshot>
|
</screenshot>
|
||||||
<screenshot>
|
<screenshot>
|
||||||
<caption>Zooming in a raster image</caption>
|
<caption>Zooming in a raster image</caption>
|
||||||
<caption xml:lang="es">Ampliar una imagen rasterizada</caption>
|
|
||||||
<caption xml:lang="ja">ラスター画像の拡大</caption>
|
|
||||||
<caption xml:lang="nl">Inzoomen op een roosterafbeelding</caption>
|
<caption xml:lang="nl">Inzoomen op een roosterafbeelding</caption>
|
||||||
<caption xml:lang="ru">Масштабирование растрового изображения</caption>
|
<caption xml:lang="ru">Масштабирование растрового изображения</caption>
|
||||||
<caption xml:lang="ta">ராச்டர் படத்தில் பெரிதாக்குதல்</caption>
|
|
||||||
<caption xml:lang="uk">Масштабування растрового зображення</caption>
|
|
||||||
<caption xml:lang="zh-CN">放大浏览位图</caption>
|
<caption xml:lang="zh-CN">放大浏览位图</caption>
|
||||||
<image type="source" width="771" height="553">https://pineapple-pictures.sourceforge.io/ppic-zoom-raster.png</image>
|
<image type="source" width="771" height="553">https://pineapple-pictures.sourceforge.io/ppic-zoom-raster.png</image>
|
||||||
</screenshot>
|
</screenshot>
|
||||||
<screenshot>
|
<screenshot>
|
||||||
<caption>Zooming in a vector image</caption>
|
<caption>Zooming in a vector image</caption>
|
||||||
<caption xml:lang="es">Ampliar una imagen vectorial</caption>
|
|
||||||
<caption xml:lang="ja">ベクター画像の拡大</caption>
|
|
||||||
<caption xml:lang="nl">Inzoomen op een vectorafbeelding</caption>
|
<caption xml:lang="nl">Inzoomen op een vectorafbeelding</caption>
|
||||||
<caption xml:lang="ru">Масштабирование векторного изображения</caption>
|
<caption xml:lang="ru">Масштабирование векторного изображения</caption>
|
||||||
<caption xml:lang="ta">ஒரு திசையன் படத்தில் பெரிதாக்குதல்</caption>
|
|
||||||
<caption xml:lang="uk">Масштабування векторного зображення</caption>
|
|
||||||
<caption xml:lang="zh-CN">放大浏览矢量图</caption>
|
<caption xml:lang="zh-CN">放大浏览矢量图</caption>
|
||||||
<image type="source" width="771" height="553">https://pineapple-pictures.sourceforge.io/ppic-zoom-svg.png</image>
|
<image type="source" width="771" height="553">https://pineapple-pictures.sourceforge.io/ppic-zoom-svg.png</image>
|
||||||
</screenshot>
|
</screenshot>
|
||||||
</screenshots>
|
</screenshots>
|
||||||
<releases>
|
<url type="homepage">https://github.com/BLumia/pineapple-pictures</url>
|
||||||
<release type="stable" version="1.0.0" date="2025-05-03T00:00:00Z">
|
<url type="bugtracker">https://github.com/BLumia/pineapple-pictures/issues</url>
|
||||||
<description>
|
<url type="translate">https://hosted.weblate.org/projects/pineapple-pictures/</url>
|
||||||
<p>This release adds the following features:</p>
|
<developer_name>Gary (BLumia) Wang et al.</developer_name>
|
||||||
<ul>
|
<developer_name xml:lang="nl">Gary (BLumia) Wang e.a.</developer_name>
|
||||||
<li>Support enforces windowed mode on start-up</li>
|
<developer_name xml:lang="ru">Gary (BLumia) Wang et al.</developer_name>
|
||||||
<li>Reload image automatically when current image gets updated</li>
|
<developer_name xml:lang="zh-CN">Gary (BLumia) Wang 等人</developer_name>
|
||||||
</ul>
|
<provides>
|
||||||
<p>This release fixes the following bugs:</p>
|
<binary>ppic</binary>
|
||||||
<ul>
|
</provides>
|
||||||
<li>Display correct text language on macOS</li>
|
|
||||||
</ul>
|
|
||||||
<p>This release includes the following changes:</p>
|
|
||||||
<ul>
|
|
||||||
<li>Use native text for shortcut editor's label</li>
|
|
||||||
<li>Display native commandline message when possible</li>
|
|
||||||
<li>Merge Qt translations into app applications as well</li>
|
|
||||||
</ul>
|
|
||||||
<p>With contributions from:</p>
|
|
||||||
<p>Heimen Stoffels, albanobattistella, mmahhi</p>
|
|
||||||
</description>
|
|
||||||
</release>
|
|
||||||
<release type="stable" version="0.9.2" date="2025-03-05T00:00:00Z">
|
|
||||||
<description>
|
|
||||||
<p>This release fixes the following bug:</p>
|
|
||||||
<ul>
|
|
||||||
<li>Refer to the right exiv2 CMake module so it can be found on Linux</li>
|
|
||||||
</ul>
|
|
||||||
<p>This release includes the following changes:</p>
|
|
||||||
<ul>
|
|
||||||
<li>Convert DEP5 to REUSE.toml for better REUSE compliance</li>
|
|
||||||
<li>Update translations</li>
|
|
||||||
</ul>
|
|
||||||
<p>With contributions from:</p>
|
|
||||||
<p>Pino Toscano, TamilNeram</p>
|
|
||||||
</description>
|
|
||||||
</release>
|
|
||||||
<release type="stable" version="0.9.1" date="2025-01-25T00:00:00Z">
|
|
||||||
<description>
|
|
||||||
<p>This release adds the following features:</p>
|
|
||||||
<ul>
|
|
||||||
<li>Option to double-click to fullscreen</li>
|
|
||||||
<li>Build-time option to embed translation resources</li>
|
|
||||||
</ul>
|
|
||||||
<p>This release fixes the following bugs:</p>
|
|
||||||
<ul>
|
|
||||||
<li>Fix window size not adjusted when open file on macOS</li>
|
|
||||||
<li>Should center window according to available screen geometry</li>
|
|
||||||
</ul>
|
|
||||||
<p>This release includes the following changes:</p>
|
|
||||||
<ul>
|
|
||||||
<li>Change close window bahavior on macOS</li>
|
|
||||||
<li>Update translations</li>
|
|
||||||
</ul>
|
|
||||||
<p>With contributions from:</p>
|
|
||||||
<p>albanobattistella, Sabri Ünal</p>
|
|
||||||
</description>
|
|
||||||
</release>
|
|
||||||
<release type="stable" version="0.9.0" date="2024-12-08T00:00:00Z">
|
|
||||||
<description>
|
|
||||||
<p>This release adds the following features:</p>
|
|
||||||
<ul>
|
|
||||||
<li>Support custom shortcuts for existing actions</li>
|
|
||||||
<li>Actions for frame-by-frame animated image playback support</li>
|
|
||||||
</ul>
|
|
||||||
<p>This release includes the following changes:</p>
|
|
||||||
<ul>
|
|
||||||
<li>Initial macOS bundle support</li>
|
|
||||||
<li>bump minimum required CMake version to 3.16</li>
|
|
||||||
<li>Update translations</li>
|
|
||||||
</ul>
|
|
||||||
<p>With contributions from:</p>
|
|
||||||
<p>albanobattistella, VenusGirl, gallegonovato, Sabri Ünal</p>
|
|
||||||
</description>
|
|
||||||
</release>
|
|
||||||
<release type="stable" version="0.8.2.1" date="2024-10-27T00:00:00Z">
|
|
||||||
<description>
|
|
||||||
<p>This release fixes the following bug:</p>
|
|
||||||
<ul>
|
|
||||||
<li>Cannot load translations caused by a change in 0.8.2</li>
|
|
||||||
</ul>
|
|
||||||
</description>
|
|
||||||
</release>
|
|
||||||
<release type="stable" version="0.8.2" date="2024-10-26T00:00:00Z">
|
|
||||||
<description>
|
|
||||||
<p>This release adds the following feature:</p>
|
|
||||||
<ul>
|
|
||||||
<li>New option to allow use light-color checkerboard by default</li>
|
|
||||||
</ul>
|
|
||||||
<p>With contributions from:</p>
|
|
||||||
<p>albanobattistella, mmahhi, gallegonovato</p>
|
|
||||||
</description>
|
|
||||||
</release>
|
|
||||||
<release type="stable" version="0.8.1" date="2024-08-25T00:00:00Z">
|
|
||||||
<description>
|
|
||||||
<p>This release adds the following feature:</p>
|
|
||||||
<ul>
|
|
||||||
<li>New command line option to list all supported formats</li>
|
|
||||||
</ul>
|
|
||||||
<p>With contributions from:</p>
|
|
||||||
<p>albanobattistella, mmahhi, ovl-1, gallegonovato, Oğuz Ersen</p>
|
|
||||||
</description>
|
|
||||||
</release>
|
|
||||||
<release type="stable" version="0.8.0" date="2024-06-29T00:00:00Z">
|
|
||||||
<description>
|
|
||||||
<p>This release adds the following feature:</p>
|
|
||||||
<ul>
|
|
||||||
<li>Support move image file to trash</li>
|
|
||||||
</ul>
|
|
||||||
<p>With contributions from:</p>
|
|
||||||
<p>albanobattistella, mmahhi, gallegonovato, Oğuz Ersen</p>
|
|
||||||
</description>
|
|
||||||
</release>
|
|
||||||
<release type="stable" version="0.7.4" date="2024-04-04T00:00:00Z">
|
|
||||||
<description>
|
|
||||||
<p>This release adds the following feature:</p>
|
|
||||||
<ul>
|
|
||||||
<li>Add some icons for corresponding menu actions</li>
|
|
||||||
</ul>
|
|
||||||
<p>With contributions from:</p>
|
|
||||||
<p>Reza Almanda, mmahhi, Oğuz Ersen, volkov, Сергій</p>
|
|
||||||
</description>
|
|
||||||
</release>
|
|
||||||
<release type="stable" version="0.7.3" date="2023-10-24T00:00:00Z">
|
|
||||||
<description>
|
|
||||||
<p>This release adds the following feature:</p>
|
|
||||||
<ul>
|
|
||||||
<li>Add "Keep transformation" to menu</li>
|
|
||||||
</ul>
|
|
||||||
<p>With contributions from:</p>
|
|
||||||
<p>mmahhi, VenusGirl, albanobattistella, gallegonovato, Heimen Stoffels</p>
|
|
||||||
</description>
|
|
||||||
</release>
|
|
||||||
<release type="stable" version="0.7.2" date="2023-08-27T00:00:00Z">
|
|
||||||
<description>
|
|
||||||
<p>This release adds the following feature:</p>
|
|
||||||
<ul>
|
|
||||||
<li>Add an option in setting dialog to tweak the High-DPI scaling rounding policy (might only works in Qt 6 build)</li>
|
|
||||||
</ul>
|
|
||||||
<p>This release fixes the following bugs:</p>
|
|
||||||
<ul>
|
|
||||||
<li>Remove image size limit for Qt 6 build</li>
|
|
||||||
<li>Fix application icon install location under Linux</li>
|
|
||||||
</ul>
|
|
||||||
<p>With contributions from:</p>
|
|
||||||
<p>Heimen Stoffels, Andrey, Dan, gallegonovato, albanobattistella, Sabri Ünal</p>
|
|
||||||
</description>
|
|
||||||
</release>
|
|
||||||
<release type="stable" version="0.7.1" date="2023-07-08T00:00:00Z">
|
|
||||||
<description>
|
|
||||||
<p>This release adds the following features:</p>
|
|
||||||
<ul>
|
|
||||||
<li>TIF and TIFF format files in the same folder will now be automatically added to the gallery</li>
|
|
||||||
<li>Built-in window resizing now also supports Linux desktop. (macOS might also works as well)</li>
|
|
||||||
</ul>
|
|
||||||
<p>This release fixes the following bugs:</p>
|
|
||||||
<ul>
|
|
||||||
<li>Settings dialog will automatedly use a suitable size instead of a hard-coded one</li>
|
|
||||||
<li>Fix default configuration file location under Linux. (was `~/.config/config.ini`, now it's `~/.config/Pineapple Pictures/config.ini`)</li>
|
|
||||||
</ul>
|
|
||||||
<p>With contributions from:</p>
|
|
||||||
<p>yyc12345</p>
|
|
||||||
</description>
|
|
||||||
</release>
|
|
||||||
</releases>
|
|
||||||
<content_rating type="oars-1.1"/>
|
<content_rating type="oars-1.1"/>
|
||||||
|
<releases>
|
||||||
|
<release version="0.7.2" date="2023-08-27"/>
|
||||||
|
<release version="0.7.1" date="2023-07-08"/>
|
||||||
|
</releases>
|
||||||
</component>
|
</component>
|
||||||
|
@ -1,55 +0,0 @@
|
|||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
|
||||||
"POT-Creation-Date: 2023-08-22 18:49中国标准时间\n"
|
|
||||||
"PO-Revision-Date: 2024-04-19 17:07+0000\n"
|
|
||||||
"Last-Translator: gallegonovato <fran-carro@hotmail.es>\n"
|
|
||||||
"Language-Team: Spanish <https://hosted.weblate.org/projects/pineapple-"
|
|
||||||
"pictures/appstream-metadata/es/>\n"
|
|
||||||
"Language: es\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
||||||
"X-Generator: Weblate 5.5-dev\n"
|
|
||||||
|
|
||||||
#. (itstool) path: component/name
|
|
||||||
#: net.blumia.pineapple-pictures.metainfo.xml:7
|
|
||||||
msgid "Pineapple Pictures"
|
|
||||||
msgstr "Pineapple Pictures"
|
|
||||||
|
|
||||||
#. (itstool) path: component/summary
|
|
||||||
#: net.blumia.pineapple-pictures.metainfo.xml:9
|
|
||||||
msgid "Image Viewer"
|
|
||||||
msgstr "Visor de imágenes"
|
|
||||||
|
|
||||||
#. (itstool) path: description/p
|
|
||||||
#: net.blumia.pineapple-pictures.metainfo.xml:12
|
|
||||||
msgid ""
|
|
||||||
"Pineapple Pictures is a lightweight and easy-to-use image viewer that comes "
|
|
||||||
"with a handy navigation thumbnail when zoom-in, and doesn't contain any "
|
|
||||||
"image management support."
|
|
||||||
msgstr ""
|
|
||||||
"Pineapple Pictures es un visor de imágenes ligero y fácil de usar que viene "
|
|
||||||
"con una práctica miniatura de navegación al hacer zoom, y no contiene ningún "
|
|
||||||
"soporte de gestión de imágenes."
|
|
||||||
|
|
||||||
#. (itstool) path: screenshot/caption
|
|
||||||
#: net.blumia.pineapple-pictures.metainfo.xml:17
|
|
||||||
msgid "Main window when an image file is loaded"
|
|
||||||
msgstr "Ventana principal cuando se carga un archivo de imagen"
|
|
||||||
|
|
||||||
#. (itstool) path: screenshot/caption
|
|
||||||
#: net.blumia.pineapple-pictures.metainfo.xml:22
|
|
||||||
msgid "Zooming in a raster image"
|
|
||||||
msgstr "Ampliar una imagen rasterizada"
|
|
||||||
|
|
||||||
#. (itstool) path: screenshot/caption
|
|
||||||
#: net.blumia.pineapple-pictures.metainfo.xml:27
|
|
||||||
msgid "Zooming in a vector image"
|
|
||||||
msgstr "Ampliar una imagen vectorial"
|
|
||||||
|
|
||||||
#. (itstool) path: component/developer_name
|
|
||||||
#: net.blumia.pineapple-pictures.metainfo.xml:34
|
|
||||||
msgid "Gary (BLumia) Wang et al."
|
|
||||||
msgstr "Gary (BLumia) Wang et al."
|
|
@ -1,54 +0,0 @@
|
|||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
|
||||||
"POT-Creation-Date: 2023-08-22 18:49中国标准时间\n"
|
|
||||||
"PO-Revision-Date: 2023-11-14 17:05+0000\n"
|
|
||||||
"Last-Translator: mmahhi <masa10suda@gmail.com>\n"
|
|
||||||
"Language-Team: Japanese <https://hosted.weblate.org/projects/pineapple-"
|
|
||||||
"pictures/appstream-metadata/ja/>\n"
|
|
||||||
"Language: ja\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
"X-Generator: Weblate 5.2-dev\n"
|
|
||||||
|
|
||||||
#. (itstool) path: component/name
|
|
||||||
#: net.blumia.pineapple-pictures.metainfo.xml:7
|
|
||||||
msgid "Pineapple Pictures"
|
|
||||||
msgstr "Pineapple Pictures"
|
|
||||||
|
|
||||||
#. (itstool) path: component/summary
|
|
||||||
#: net.blumia.pineapple-pictures.metainfo.xml:9
|
|
||||||
msgid "Image Viewer"
|
|
||||||
msgstr "画像ビューアー"
|
|
||||||
|
|
||||||
#. (itstool) path: description/p
|
|
||||||
#: net.blumia.pineapple-pictures.metainfo.xml:12
|
|
||||||
msgid ""
|
|
||||||
"Pineapple Pictures is a lightweight and easy-to-use image viewer that comes "
|
|
||||||
"with a handy navigation thumbnail when zoom-in, and doesn't contain any "
|
|
||||||
"image management support."
|
|
||||||
msgstr ""
|
|
||||||
"Pineapple Picturesは、ズームイン時に便利なナビゲーションサムネイルを備えた軽"
|
|
||||||
"量で使いやすい画像ビューアです。画像管理のサポートは含まれていません。"
|
|
||||||
|
|
||||||
#. (itstool) path: screenshot/caption
|
|
||||||
#: net.blumia.pineapple-pictures.metainfo.xml:17
|
|
||||||
msgid "Main window when an image file is loaded"
|
|
||||||
msgstr "画像ファイル読み込み時のメインウィンドウ"
|
|
||||||
|
|
||||||
#. (itstool) path: screenshot/caption
|
|
||||||
#: net.blumia.pineapple-pictures.metainfo.xml:22
|
|
||||||
msgid "Zooming in a raster image"
|
|
||||||
msgstr "ラスター画像の拡大"
|
|
||||||
|
|
||||||
#. (itstool) path: screenshot/caption
|
|
||||||
#: net.blumia.pineapple-pictures.metainfo.xml:27
|
|
||||||
msgid "Zooming in a vector image"
|
|
||||||
msgstr "ベクター画像の拡大"
|
|
||||||
|
|
||||||
#. (itstool) path: component/developer_name
|
|
||||||
#: net.blumia.pineapple-pictures.metainfo.xml:34
|
|
||||||
msgid "Gary (BLumia) Wang et al."
|
|
||||||
msgstr "Gary (BLumia) Wang など"
|
|
@ -1,52 +0,0 @@
|
|||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
|
||||||
"POT-Creation-Date: 2023-08-22 18:49中国标准时间\n"
|
|
||||||
"PO-Revision-Date: 2025-01-28 09:01+0000\n"
|
|
||||||
"Last-Translator: தமிழ்நேரம் <anishprabu.t@gmail.com>\n"
|
|
||||||
"Language-Team: Tamil <https://hosted.weblate.org/projects/pineapple-pictures/"
|
|
||||||
"appstream-metadata/ta/>\n"
|
|
||||||
"Language: ta\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
||||||
"X-Generator: Weblate 5.10-dev\n"
|
|
||||||
|
|
||||||
#. (itstool) path: component/name
|
|
||||||
#: net.blumia.pineapple-pictures.metainfo.xml:7
|
|
||||||
msgid "Pineapple Pictures"
|
|
||||||
msgstr "அன்னாசி படங்கள்"
|
|
||||||
|
|
||||||
#. (itstool) path: component/summary
|
|
||||||
#: net.blumia.pineapple-pictures.metainfo.xml:9
|
|
||||||
msgid "Image Viewer"
|
|
||||||
msgstr "பட பார்வையாளர்"
|
|
||||||
|
|
||||||
#. (itstool) path: description/p
|
|
||||||
#: net.blumia.pineapple-pictures.metainfo.xml:12
|
|
||||||
msgid "Pineapple Pictures is a lightweight and easy-to-use image viewer that comes with a handy navigation thumbnail when zoom-in, and doesn't contain any image management support."
|
|
||||||
msgstr ""
|
|
||||||
"அன்னாசி படங்கள் ஒரு இலகுரக மற்றும் பயன்படுத்த எளிதான பட பார்வையாளராகும், இது "
|
|
||||||
"பெரிதாக்கும்போது ஒரு எளிமையான வழிசெலுத்தல் சிறுபடத்துடன் வருகிறது, மேலும் எந்த பட "
|
|
||||||
"மேலாண்மை ஆதரவையும் கொண்டிருக்கவில்லை."
|
|
||||||
|
|
||||||
#. (itstool) path: screenshot/caption
|
|
||||||
#: net.blumia.pineapple-pictures.metainfo.xml:17
|
|
||||||
msgid "Main window when an image file is loaded"
|
|
||||||
msgstr "ஒரு படக் கோப்பு ஏற்றப்படும் போது முதன்மையான சாளரம்"
|
|
||||||
|
|
||||||
#. (itstool) path: screenshot/caption
|
|
||||||
#: net.blumia.pineapple-pictures.metainfo.xml:22
|
|
||||||
msgid "Zooming in a raster image"
|
|
||||||
msgstr "ராச்டர் படத்தில் பெரிதாக்குதல்"
|
|
||||||
|
|
||||||
#. (itstool) path: screenshot/caption
|
|
||||||
#: net.blumia.pineapple-pictures.metainfo.xml:27
|
|
||||||
msgid "Zooming in a vector image"
|
|
||||||
msgstr "ஒரு திசையன் படத்தில் பெரிதாக்குதல்"
|
|
||||||
|
|
||||||
#. (itstool) path: component/developer_name
|
|
||||||
#: net.blumia.pineapple-pictures.metainfo.xml:34
|
|
||||||
msgid "Gary (BLumia) Wang et al."
|
|
||||||
msgstr "கேரி (ப்ளூமியா) வாங் மற்றும் பலர்."
|
|
@ -1,56 +0,0 @@
|
|||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
|
||||||
"POT-Creation-Date: 2023-08-22 18:49中国标准时间\n"
|
|
||||||
"PO-Revision-Date: 2024-01-01 16:10+0000\n"
|
|
||||||
"Last-Translator: Сергій <sergiy.goncharuk.1@gmail.com>\n"
|
|
||||||
"Language-Team: Ukrainian <https://hosted.weblate.org/projects/"
|
|
||||||
"pineapple-pictures/appstream-metadata/uk/>\n"
|
|
||||||
"Language: uk\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
|
||||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
|
||||||
"X-Generator: Weblate 5.4-dev\n"
|
|
||||||
|
|
||||||
#. (itstool) path: component/name
|
|
||||||
#: net.blumia.pineapple-pictures.metainfo.xml:7
|
|
||||||
msgid "Pineapple Pictures"
|
|
||||||
msgstr "Pineapple Pictures"
|
|
||||||
|
|
||||||
#. (itstool) path: component/summary
|
|
||||||
#: net.blumia.pineapple-pictures.metainfo.xml:9
|
|
||||||
msgid "Image Viewer"
|
|
||||||
msgstr "Переглядач зображень"
|
|
||||||
|
|
||||||
#. (itstool) path: description/p
|
|
||||||
#: net.blumia.pineapple-pictures.metainfo.xml:12
|
|
||||||
msgid ""
|
|
||||||
"Pineapple Pictures is a lightweight and easy-to-use image viewer that comes "
|
|
||||||
"with a handy navigation thumbnail when zoom-in, and doesn't contain any "
|
|
||||||
"image management support."
|
|
||||||
msgstr ""
|
|
||||||
"Pineapple Pictures – це легкий і простий у використанні переглядач "
|
|
||||||
"зображень, який постачається зі зручною навігаційною мініатюрою при "
|
|
||||||
"збільшенні масштабу і не містить жодної підтримки керування зображеннями."
|
|
||||||
|
|
||||||
#. (itstool) path: screenshot/caption
|
|
||||||
#: net.blumia.pineapple-pictures.metainfo.xml:17
|
|
||||||
msgid "Main window when an image file is loaded"
|
|
||||||
msgstr "Головне вікно після завантаження файлу зображення"
|
|
||||||
|
|
||||||
#. (itstool) path: screenshot/caption
|
|
||||||
#: net.blumia.pineapple-pictures.metainfo.xml:22
|
|
||||||
msgid "Zooming in a raster image"
|
|
||||||
msgstr "Масштабування растрового зображення"
|
|
||||||
|
|
||||||
#. (itstool) path: screenshot/caption
|
|
||||||
#: net.blumia.pineapple-pictures.metainfo.xml:27
|
|
||||||
msgid "Zooming in a vector image"
|
|
||||||
msgstr "Масштабування векторного зображення"
|
|
||||||
|
|
||||||
#. (itstool) path: component/developer_name
|
|
||||||
#: net.blumia.pineapple-pictures.metainfo.xml:34
|
|
||||||
msgid "Gary (BLumia) Wang et al."
|
|
||||||
msgstr "Gary (BLumia) Wang."
|
|
@ -1,16 +1,12 @@
|
|||||||
# SPDX-FileCopyrightText: 2025 Gary Wang <git@blumia.net>
|
# SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
||||||
#
|
#
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
QT += core widgets gui svg svgwidgets
|
QT += core widgets gui svg
|
||||||
|
greaterThan(QT_MAJOR_VERSION, 5): QT += svgwidgets
|
||||||
|
|
||||||
TARGET = ppic
|
TARGET = ppic
|
||||||
TEMPLATE = app
|
TEMPLATE = app
|
||||||
DEFINES += PPIC_VERSION_STRING=\\\"x.y.z\\\"
|
|
||||||
|
|
||||||
win32 {
|
|
||||||
DEFINES += FLAG_PORTABLE_MODE_SUPPORT=1
|
|
||||||
}
|
|
||||||
|
|
||||||
# The following define makes your compiler emit warnings if you use
|
# The following define makes your compiler emit warnings if you use
|
||||||
# any feature of Qt which has been marked as deprecated (the exact warnings
|
# any feature of Qt which has been marked as deprecated (the exact warnings
|
||||||
@ -23,7 +19,7 @@ DEFINES += QT_DEPRECATED_WARNINGS
|
|||||||
# You can also select to disable deprecated APIs only up to a certain version of Qt.
|
# You can also select to disable deprecated APIs only up to a certain version of Qt.
|
||||||
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
||||||
|
|
||||||
CONFIG += c++17 lrelease embed_translations
|
CONFIG += c++11 lrelease embed_translations
|
||||||
|
|
||||||
SOURCES += \
|
SOURCES += \
|
||||||
app/aboutdialog.cpp \
|
app/aboutdialog.cpp \
|
||||||
@ -42,9 +38,7 @@ SOURCES += \
|
|||||||
app/metadatadialog.cpp \
|
app/metadatadialog.cpp \
|
||||||
app/exiv2wrapper.cpp \
|
app/exiv2wrapper.cpp \
|
||||||
app/actionmanager.cpp \
|
app/actionmanager.cpp \
|
||||||
app/playlistmanager.cpp \
|
app/playlistmanager.cpp
|
||||||
app/shortcutedit.cpp \
|
|
||||||
app/fileopeneventhandler.cpp
|
|
||||||
|
|
||||||
HEADERS += \
|
HEADERS += \
|
||||||
app/aboutdialog.h \
|
app/aboutdialog.h \
|
||||||
@ -62,12 +56,10 @@ HEADERS += \
|
|||||||
app/metadatadialog.h \
|
app/metadatadialog.h \
|
||||||
app/exiv2wrapper.h \
|
app/exiv2wrapper.h \
|
||||||
app/actionmanager.h \
|
app/actionmanager.h \
|
||||||
app/playlistmanager.h \
|
app/playlistmanager.h
|
||||||
app/shortcutedit.h \
|
|
||||||
app/fileopeneventhandler.h
|
|
||||||
|
|
||||||
TRANSLATIONS = \
|
TRANSLATIONS = \
|
||||||
app/translations/PineapplePictures_en.ts \
|
app/translations/PineapplePictures.ts \
|
||||||
app/translations/PineapplePictures_zh_CN.ts \
|
app/translations/PineapplePictures_zh_CN.ts \
|
||||||
app/translations/PineapplePictures_de.ts \
|
app/translations/PineapplePictures_de.ts \
|
||||||
app/translations/PineapplePictures_es.ts \
|
app/translations/PineapplePictures_es.ts \
|
||||||
@ -93,7 +85,7 @@ RC_ICONS = assets/icons/app-icon.ico
|
|||||||
# Windows only, for rc file (we're not going to use the .rc file in this repo)
|
# Windows only, for rc file (we're not going to use the .rc file in this repo)
|
||||||
QMAKE_TARGET_PRODUCT = Pineapple Pictures
|
QMAKE_TARGET_PRODUCT = Pineapple Pictures
|
||||||
QMAKE_TARGET_DESCRIPTION = Pineapple Pictures - Image Viewer
|
QMAKE_TARGET_DESCRIPTION = Pineapple Pictures - Image Viewer
|
||||||
QMAKE_TARGET_COPYRIGHT = MIT/Expat License - Copyright (C) 2024 Gary Wang
|
QMAKE_TARGET_COPYRIGHT = MIT/Expat License - Copyright (C) 2020 Gary Wang
|
||||||
|
|
||||||
# MSVC only, since QMake doesn't have a CMAKE_CXX_STANDARD_LIBRARIES or cpp_winlibs similar thing
|
# MSVC only, since QMake doesn't have a CMAKE_CXX_STANDARD_LIBRARIES or cpp_winlibs similar thing
|
||||||
win32-msvc* {
|
win32-msvc* {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user