Compare commits
88 Commits
0.8.2.1
...
e52a6d8eed
Author | SHA1 | Date | |
---|---|---|---|
e52a6d8eed | |||
8b0c8ec194 | |||
1da7fff518 | |||
e216592205 | |||
8fc9d06937 | |||
73b15da182 | |||
f4f7d93e38 | |||
591b01a83a | |||
f8d3dcc899 | |||
f0ed9d0ca1 | |||
13227cfac9 | |||
b73df5ea1a | |||
4375fe1c2d | |||
4654cb21a0 | |||
ba23208a7a | |||
ed5a602332 | |||
347681e604 | |||
505ab9e2a6 | |||
c787e14a69 | |||
29c5783a66 | |||
ddc75f7cd0 | |||
f976fea418 | |||
2846e4907b | |||
c828f86b74 | |||
040e2a7b5f | |||
b566096b1f | |||
2bee79c064 | |||
91696963ae | |||
1623ca315a | |||
3cfb25db9a | |||
36854d19f4 | |||
3f7ebd2f6c | |||
291a98ea97 | |||
24a0b581f3 | |||
369aa13be3 | |||
b964fdc77f | |||
d6d2703c93 | |||
c6068ba23d | |||
fbdd858fbd | |||
8333f17199 | |||
30eb06cba7 | |||
0a45cd7c22 | |||
fc417b30e5 | |||
8568f6d4ef | |||
8832c2daa9 | |||
da9d7d6989 | |||
317d296507 | |||
f24743e381 | |||
fd4af282af | |||
4de03dd02e | |||
bfaf702606 | |||
3203d7f598 | |||
cbd006bae7 | |||
fc13a497d3 | |||
183a61b2f6 | |||
ae07c5fe44 | |||
a33381557b | |||
6d8ec6a54a | |||
dd3209e3ff | |||
088066197f | |||
3a8e907f28 | |||
eb04ac362b | |||
6d7d0e4e1d | |||
ff4f71c1e6 | |||
101f111209 | |||
c227c74e23 | |||
32ff813609 | |||
2de9ff810d | |||
57354fc135 | |||
07d0b0270e | |||
78e3e45a2e | |||
5a34441c72 | |||
b01601085b | |||
64c4d2e064 | |||
e64b871a2f | |||
06af632914 | |||
99abf3b69d | |||
42b6510877 | |||
aa746721f0 | |||
42e3d4c691 | |||
a993437983 | |||
8cce48e6b0 | |||
d0bdc71cf5 | |||
2071e82e1d | |||
b2f10b9193 | |||
9eb91dedf9 | |||
6f3c30fc5b | |||
3eade9c3cf |
3
.git-blame-ignore-revs
Normal file
3
.git-blame-ignore-revs
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# .git-blame-ignore-revs
|
||||||
|
# CR LF to LF
|
||||||
|
ed5a6023326fd2ab420ded76976501be33e0b389
|
5
.gitattributes
vendored
Normal file
5
.gitattributes
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
*.txt text eol=lf
|
||||||
|
*.cpp text eol=lf
|
||||||
|
*.h text eol=lf
|
||||||
|
*.ui text eol=lf
|
||||||
|
*.qml text eol=lf
|
31
.github/workflows/macos.yml
vendored
31
.github/workflows/macos.yml
vendored
@ -1,6 +1,6 @@
|
|||||||
name: macOS CI
|
name: macOS CI
|
||||||
|
|
||||||
on: [push, pull_request]
|
on: [push, pull_request, workflow_dispatch]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
@ -10,10 +10,29 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- name: Install Qt
|
- name: Install Qt
|
||||||
uses: jurplel/install-qt-action@v3
|
uses: jurplel/install-qt-action@v4
|
||||||
with:
|
with:
|
||||||
version: '6.4.2'
|
version: '6.9.1'
|
||||||
- name: Run a qt project
|
modules: 'qtimageformats'
|
||||||
|
- name: Install Conan and Dependencies
|
||||||
|
id: conan
|
||||||
|
working-directory: ./
|
||||||
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
cmake ./ -DPREFER_QT_5=OFF
|
pip3 install wheel setuptools
|
||||||
make
|
pip3 install conan --upgrade
|
||||||
|
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,9 +7,11 @@ name: REUSE Compliance Check
|
|||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
reuse-compliance-check:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: REUSE Compliance Check
|
- name: REUSE Compliance Check
|
||||||
uses: fsfe/reuse-action@v2
|
uses: fsfe/reuse-action@v5
|
||||||
|
26
.github/workflows/ubuntu.yml
vendored
26
.github/workflows/ubuntu.yml
vendored
@ -3,30 +3,6 @@ name: Ubuntu CI
|
|||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
ubuntu-22-04-build:
|
|
||||||
runs-on: ubuntu-22.04
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- name: Get build dept.
|
|
||||||
run: |
|
|
||||||
sudo apt update
|
|
||||||
sudo apt install cmake qtbase5-dev libqt5svg5-dev qttools5-dev libexiv2-dev
|
|
||||||
- name: Build it
|
|
||||||
run: |
|
|
||||||
mkdir build
|
|
||||||
cd build
|
|
||||||
cmake ../ -DPREFER_QT_5=ON
|
|
||||||
make
|
|
||||||
cpack -G DEB
|
|
||||||
- name: Try install it
|
|
||||||
run: |
|
|
||||||
cd build
|
|
||||||
sudo apt install ./*.deb
|
|
||||||
- uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: ubuntu-22.04-deb-package
|
|
||||||
path: build/*.deb
|
|
||||||
|
|
||||||
ubuntu-24-04-build:
|
ubuntu-24-04-build:
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
steps:
|
steps:
|
||||||
@ -39,7 +15,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
mkdir build
|
mkdir build
|
||||||
cd build
|
cd build
|
||||||
cmake ../ -DPREFER_QT_5=OFF
|
cmake ../
|
||||||
make
|
make
|
||||||
cpack -G DEB
|
cpack -G DEB
|
||||||
- name: Try install it
|
- name: Try install it
|
||||||
|
44
.github/workflows/windows.yml
vendored
44
.github/workflows/windows.yml
vendored
@ -8,7 +8,7 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- qt_ver: '6.8.0'
|
- qt_ver: '6.9.1'
|
||||||
vs: '2022'
|
vs: '2022'
|
||||||
aqt_arch: 'win64_msvc2022_64'
|
aqt_arch: 'win64_msvc2022_64'
|
||||||
msvc_arch: 'x64'
|
msvc_arch: 'x64'
|
||||||
@ -44,7 +44,7 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- qt_ver: '6.8.0'
|
- qt_ver: '6.9.1'
|
||||||
vs: '2022'
|
vs: '2022'
|
||||||
aqt_arch: 'win64_msvc2022_64'
|
aqt_arch: 'win64_msvc2022_64'
|
||||||
msvc_arch: 'x64'
|
msvc_arch: 'x64'
|
||||||
@ -71,44 +71,52 @@ jobs:
|
|||||||
:: ------ dep ------
|
:: ------ dep ------
|
||||||
set CMAKE_PREFIX_PATH=%PWD%/dependencies_bin
|
set CMAKE_PREFIX_PATH=%PWD%/dependencies_bin
|
||||||
mkdir dependencies_src
|
mkdir dependencies_src
|
||||||
:: ===== exiv2 =====
|
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
|
curl -fsSL -o exiv2_bin.zip https://github.com/Exiv2/exiv2/releases/download/v0.28.5/exiv2-0.28.5-2022msvc-AMD64.zip
|
||||||
7z x exiv2_bin.zip -y
|
7z x exiv2_bin.zip -y
|
||||||
ren .\exiv2-0.28.3-2019msvc64 dependencies_bin
|
ren .\exiv2-0.28.5-2022msvc-AMD64 dependencies_bin
|
||||||
:: ===== zlib =====
|
echo ::endgroup::
|
||||||
|
echo ::group::===== zlib =====
|
||||||
curl -fsSL -o zlib_src.zip https://zlib.net/zlib131.zip
|
curl -fsSL -o zlib_src.zip https://zlib.net/zlib131.zip
|
||||||
7z x zlib_src.zip -y -o"dependencies_src"
|
7z x zlib_src.zip -y -o"dependencies_src"
|
||||||
ren .\dependencies_src\zlib-1.3.1 zlib || goto :error
|
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 ./dependencies_src/zlib -Bbuild_dependencies/zlib -DCMAKE_INSTALL_PREFIX="dependencies_bin" || goto :error
|
||||||
cmake --build build_dependencies/zlib --config Release --target=install || 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
|
curl -fsSL -o expat_src.zip https://github.com/libexpat/libexpat/archive/R_2_6_2.zip
|
||||||
:: ===== AOM for libavif AVI decoding support =====
|
echo ::endgroup::
|
||||||
git clone -q -b v3.10.0 --depth 1 https://aomedia.googlesource.com/aom dependencies_src/aom
|
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 ./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
|
cmake --build build_dependencies/aom --config Release --target=install || goto :error
|
||||||
:: ===== libavif =====
|
echo ::endgroup::
|
||||||
curl -fsSL -o libavif-v1_1_1.zip https://github.com/AOMediaCodec/libavif/archive/v1.1.1.zip
|
echo ::group::===== libavif =====
|
||||||
7z x libavif-v1_1_1.zip -y -o"dependencies_src"
|
curl -fsSL -o libavif-v1_2_1.zip https://github.com/AOMediaCodec/libavif/archive/v1.2.1.zip
|
||||||
ren .\dependencies_src\libavif-1.1.1 libavif || goto :error
|
7z x libavif-v1_2_1.zip -y -o"dependencies_src"
|
||||||
cmake ./dependencies_src/libavif -Bbuild_dependencies/libavif -DCMAKE_INSTALL_PREFIX="dependencies_bin" -DAVIF_CODEC_AOM=ON -DAVIF_LOCAL_LIBYUV=ON
|
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
|
cmake --build build_dependencies/libavif --config Release --target=install || goto :error
|
||||||
:: ===== expat =====
|
echo ::endgroup::
|
||||||
|
echo ::group::===== expat =====
|
||||||
7z x expat_src.zip -y -o"dependencies_src"
|
7z x expat_src.zip -y -o"dependencies_src"
|
||||||
ren .\dependencies_src\libexpat-R_2_6_2 expat || goto :error
|
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 ./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
|
cmake --build build_dependencies/expat --config Release --target=install || goto :error
|
||||||
:: ===== ECM =====
|
echo ::endgroup::
|
||||||
|
echo ::group::===== ECM =====
|
||||||
git clone -q https://invent.kde.org/frameworks/extra-cmake-modules.git dependencies_src/extra-cmake-modules
|
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 .\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
|
cmake --build build_dependencies/extra-cmake-modules --config Release --target=install || goto :error
|
||||||
:: ===== KArchive =====
|
echo ::endgroup::
|
||||||
|
echo ::group::===== KArchive =====
|
||||||
git clone -q https://invent.kde.org/frameworks/karchive.git dependencies_src/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 .\dependencies_src\karchive -Bbuild_dependencies/karchive -DBUILD_TESTING=OFF -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
|
cmake --build build_dependencies/karchive --config Release --target=install || goto :error
|
||||||
:: ===== KImageFormats =====
|
echo ::endgroup::
|
||||||
|
echo ::group::===== KImageFormats =====
|
||||||
git clone -q https://invent.kde.org/frameworks/kimageformats.git dependencies_src/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 .\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
|
cmake --build build_dependencies/kimageformats --config Release --target=install || goto :error
|
||||||
|
echo ::endgroup::
|
||||||
:: ------ app ------
|
:: ------ app ------
|
||||||
cmake -Bbuild . -DCMAKE_INSTALL_PREFIX="%PWD%\build\"
|
cmake -Bbuild . -DCMAKE_INSTALL_PREFIX="%PWD%\build\"
|
||||||
cmake --build build --config Release
|
cmake --build build --config Release
|
||||||
|
5
.gitignore
vendored
5
.gitignore
vendored
@ -2,12 +2,17 @@
|
|||||||
*.user
|
*.user
|
||||||
*.user.*
|
*.user.*
|
||||||
|
|
||||||
|
# Why, macOS, why?
|
||||||
|
.DS_Store
|
||||||
|
|
||||||
# Translation files
|
# Translation files
|
||||||
*.qm
|
*.qm
|
||||||
*.mo
|
*.mo
|
||||||
|
|
||||||
# Generic Build Dir
|
# Generic Build Dir
|
||||||
[Bb]uild/
|
[Bb]uild/
|
||||||
|
cmake-build-*/
|
||||||
|
|
||||||
# IDE/Editor config folders
|
# IDE/Editor config folders
|
||||||
.vscode/
|
.vscode/
|
||||||
|
.idea/
|
||||||
|
28
.reuse/dep5
28
.reuse/dep5
@ -1,28 +0,0 @@
|
|||||||
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 NEWS 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
|
|
113
CMakeLists.txt
113
CMakeLists.txt
@ -1,49 +1,37 @@
|
|||||||
# SPDX-FileCopyrightText: 2022 - 2024 Gary Wang <git@blumia.net>
|
# SPDX-FileCopyrightText: 2022 - 2025 Gary Wang <git@blumia.net>
|
||||||
#
|
#
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
cmake_minimum_required (VERSION 3.9.5)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
project(pineapple-pictures VERSION 0.8.2.1) # don't forget to update NEWS file and AppStream metadata.
|
project(pineapple-pictures VERSION 1.1.1) # don't forget to update NEWS file and AppStream metadata.
|
||||||
|
|
||||||
include (GNUInstallDirs)
|
include(GNUInstallDirs)
|
||||||
include (FeatureSummary)
|
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 (PREFER_QT_5 "Prefer to use Qt 5" OFF)
|
option (TRANSLATION_RESOURCE_EMBEDDING "Embedding .qm translation files inside resource" OFF)
|
||||||
|
|
||||||
set (CMAKE_CXX_STANDARD 17)
|
set (CMAKE_CXX_STANDARD 17)
|
||||||
set (CMAKE_CXX_STANDARD_REQUIRED ON)
|
set (CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||||
set (CMAKE_AUTOMOC ON)
|
set (CMAKE_AUTOMOC ON)
|
||||||
set (CMAKE_AUTORCC ON)
|
set (CMAKE_AUTORCC ON)
|
||||||
|
|
||||||
if (PREFER_QT_5)
|
find_package(QT NAMES Qt6 REQUIRED COMPONENTS Core)
|
||||||
find_package(QT NAMES Qt5 REQUIRED COMPONENTS Core)
|
|
||||||
else ()
|
|
||||||
find_package(QT NAMES Qt6 REQUIRED COMPONENTS Core)
|
|
||||||
endif ()
|
|
||||||
|
|
||||||
if (${QT_VERSION_MAJOR} EQUAL "5")
|
set (QT_MINIMUM_VERSION "6.4")
|
||||||
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 LinguistTools
|
COMPONENTS Widgets Svg SvgWidgets 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(exiv2)
|
||||||
set_package_properties(Exiv2 PROPERTIES
|
set_package_properties(exiv2 PROPERTIES
|
||||||
URL "https://www.exiv2.org"
|
URL "https://www.exiv2.org"
|
||||||
DESCRIPTION "image metadata support"
|
DESCRIPTION "image metadata support"
|
||||||
TYPE OPTIONAL
|
TYPE RECOMMENDED
|
||||||
PURPOSE "Bring better image metadata support"
|
PURPOSE "Bring better image metadata support"
|
||||||
)
|
)
|
||||||
endif ()
|
endif ()
|
||||||
@ -66,6 +54,8 @@ 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
|
||||||
@ -85,6 +75,8 @@ 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
|
||||||
@ -102,43 +94,47 @@ 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})
|
||||||
|
|
||||||
if (WIN32)
|
if (WIN32)
|
||||||
list(APPEND PPIC_RC_FILES assets/pineapple-pictures.rc)
|
configure_file(assets/pineapple-pictures.rc.in pineapple-pictures.rc @ONLY)
|
||||||
|
list(APPEND PPIC_RC_FILES ${CMAKE_CURRENT_BINARY_DIR}/pineapple-pictures.rc)
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
add_executable (${EXE_NAME} WIN32
|
add_executable (${EXE_NAME}
|
||||||
${PPIC_HEADER_FILES}
|
${PPIC_HEADER_FILES}
|
||||||
${PPIC_CPP_FILES}
|
${PPIC_CPP_FILES}
|
||||||
${PPIC_QRC_FILES}
|
${PPIC_QRC_FILES}
|
||||||
${PPIC_RC_FILES}
|
${PPIC_RC_FILES}
|
||||||
)
|
)
|
||||||
|
|
||||||
if (${QT_VERSION_MAJOR} EQUAL "6")
|
set(ADD_TRANSLATIONS_ADDITIONAL_ARGS)
|
||||||
qt_add_translations(${EXE_NAME} TS_FILES ${PPIC_TS_FILES} QM_FILES_OUTPUT_VARIABLE PPIC_QM_FILES)
|
|
||||||
|
if (Qt6_VERSION VERSION_GREATER_EQUAL "6.9.0")
|
||||||
|
set(ADD_TRANSLATIONS_ADDITIONAL_ARGS MERGE_QT_TRANSLATIONS)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if (TRANSLATION_RESOURCE_EMBEDDING)
|
||||||
|
qt_add_translations(${EXE_NAME} ${ADD_TRANSLATIONS_ADDITIONAL_ARGS} TS_FILES ${PPIC_TS_FILES})
|
||||||
else()
|
else()
|
||||||
qt_create_translation(PPIC_QM_FILES ${PPIC_CPP_FILES_FOR_I18N} ${PPIC_TS_FILES})
|
qt_add_translations(${EXE_NAME} ${ADD_TRANSLATIONS_ADDITIONAL_ARGS} TS_FILES ${PPIC_TS_FILES} QM_FILES_OUTPUT_VARIABLE PPIC_QM_FILES)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
target_sources(${EXE_NAME} PRIVATE ${PPIC_QM_FILES})
|
target_sources(${EXE_NAME} PRIVATE ${PPIC_QM_FILES})
|
||||||
|
|
||||||
target_link_libraries (${EXE_NAME} Qt${QT_VERSION_MAJOR}::Widgets Qt${QT_VERSION_MAJOR}::Svg)
|
target_link_libraries (${EXE_NAME} Qt${QT_VERSION_MAJOR}::Widgets Qt${QT_VERSION_MAJOR}::Svg Qt${QT_VERSION_MAJOR}::SvgWidgets)
|
||||||
if (${QT_VERSION_MAJOR} EQUAL "6")
|
|
||||||
target_link_libraries (${EXE_NAME} Qt::SvgWidgets)
|
|
||||||
endif ()
|
|
||||||
|
|
||||||
if (Exiv2_FOUND)
|
if (exiv2_FOUND)
|
||||||
if(NOT TARGET Exiv2::exiv2lib AND TARGET exiv2lib)
|
if(NOT TARGET Exiv2::exiv2lib AND TARGET exiv2lib)
|
||||||
# for exiv2 0.27.x
|
# for exiv2 0.27.x and (macOS?) conan build
|
||||||
add_library(Exiv2::exiv2lib ALIAS exiv2lib)
|
add_library(Exiv2::exiv2lib ALIAS exiv2lib)
|
||||||
endif()
|
endif()
|
||||||
target_link_libraries (${EXE_NAME}
|
target_link_libraries (${EXE_NAME}
|
||||||
Exiv2::exiv2lib
|
Exiv2::exiv2lib
|
||||||
)
|
)
|
||||||
target_compile_definitions(${EXE_NAME} PRIVATE
|
target_compile_definitions(${EXE_NAME} PRIVATE
|
||||||
HAVE_EXIV2_VERSION="${Exiv2_VERSION}"
|
HAVE_EXIV2_VERSION="${exiv2_VERSION}"
|
||||||
)
|
)
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
if (TARGET Qt5::DBus OR TARGET Qt6::DBus)
|
if (TARGET Qt6::DBus)
|
||||||
target_link_libraries (${EXE_NAME}
|
target_link_libraries (${EXE_NAME}
|
||||||
Qt${QT_VERSION_MAJOR}::DBus
|
Qt${QT_VERSION_MAJOR}::DBus
|
||||||
)
|
)
|
||||||
@ -199,8 +195,24 @@ endif ()
|
|||||||
|
|
||||||
# Install settings
|
# Install settings
|
||||||
if (WIN32)
|
if (WIN32)
|
||||||
# TODO: try to avoid install to a "bin" subfolder under windows...
|
set_target_properties(${EXE_NAME} PROPERTIES
|
||||||
# when fixed, don't forget to update the CI config file...
|
WIN32_EXECUTABLE TRUE
|
||||||
|
)
|
||||||
|
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)
|
||||||
@ -227,6 +239,7 @@ 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
|
||||||
@ -237,19 +250,25 @@ install (
|
|||||||
${INSTALL_TARGETS_DEFAULT_ARGS}
|
${INSTALL_TARGETS_DEFAULT_ARGS}
|
||||||
)
|
)
|
||||||
|
|
||||||
if (WIN32)
|
if (TRANSLATION_RESOURCE_EMBEDDING)
|
||||||
|
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_DIR=${QM_FILE_INSTALL_DIR}
|
PRIVATE QM_FILE_INSTALL_ABSOLUTE_DIR=${QM_FILE_INSTALL_DIR}
|
||||||
)
|
)
|
||||||
endif ()
|
endif()
|
||||||
|
|
||||||
install (
|
if (DEFINED QM_FILE_INSTALL_DIR)
|
||||||
FILES ${PPIC_QM_FILES}
|
install(
|
||||||
DESTINATION ${QM_FILE_INSTALL_DIR}
|
FILES ${PPIC_QM_FILES}
|
||||||
)
|
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)
|
||||||
|
|
||||||
|
42
LICENSE
42
LICENSE
@ -1,21 +1,21 @@
|
|||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
Copyright (c) 2020 BLumia
|
Copyright (c) 2025 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
|
||||||
in the Software without restriction, including without limitation the rights
|
in the Software without restriction, including without limitation the rights
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
furnished to do so, subject to the following conditions:
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all
|
The above copyright notice and this permission notice shall be included in all
|
||||||
copies or substantial portions of the Software.
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
SOFTWARE.
|
SOFTWARE.
|
||||||
|
102
NEWS
102
NEWS
@ -1,3 +1,103 @@
|
|||||||
|
Version 1.1.1
|
||||||
|
~~~~~~~~~~~~~
|
||||||
|
Released: 2025-08-02
|
||||||
|
|
||||||
|
Features:
|
||||||
|
* Click dock icon should show window when it's hidden on macOS
|
||||||
|
|
||||||
|
Bugfixes:
|
||||||
|
* Ensure "Fit by Width" position the view to the beginning of the image
|
||||||
|
|
||||||
|
Miscellaneous:
|
||||||
|
* Update translations
|
||||||
|
* Update Exiv2 version for Windows binary build
|
||||||
|
|
||||||
|
Contributors:
|
||||||
|
Heimen Stoffels, VenusGirl, தமிழ்நேரம்
|
||||||
|
|
||||||
|
Version 1.1.0
|
||||||
|
~~~~~~~~~~~~~
|
||||||
|
Released: 2025-07-06
|
||||||
|
|
||||||
|
Features:
|
||||||
|
* New option to disable built-in close window animation
|
||||||
|
* New option to disable gallery looping
|
||||||
|
* Support load m3u8 as image gallery playlist
|
||||||
|
|
||||||
|
Miscellaneous:
|
||||||
|
* Drop Qt 5 support
|
||||||
|
|
||||||
|
Contributors:
|
||||||
|
Heimen Stoffels, albanobattistella, தமிழ்நேரம்
|
||||||
|
|
||||||
|
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
|
Version 0.8.2.1
|
||||||
~~~~~~~~~~~~~
|
~~~~~~~~~~~~~
|
||||||
Released: 2024-10-27
|
Released: 2024-10-27
|
||||||
@ -74,7 +174,7 @@ Version 0.7.1
|
|||||||
Released: 2023-07-08
|
Released: 2023-07-08
|
||||||
|
|
||||||
Features:
|
Features:
|
||||||
* TIF and TIFF format files in the same folder will now be automatedly added to the gallery
|
* 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)
|
* Built-in window resizing now also supports Linux desktop. (macOS might also works as well)
|
||||||
|
|
||||||
Bugfixes:
|
Bugfixes:
|
||||||
|
31
README.md
31
README.md
@ -2,7 +2,7 @@ Yet another image viewer.
|
|||||||
|
|
||||||
|CI|Build Status|
|
|CI|Build Status|
|
||||||
|---|---|
|
|---|---|
|
||||||
|Windows Build|[](https://ci.appveyor.com/project/BLumia/pineapplepictures/branch/master)|
|
|Windows Build|[](https://github.com/BLumia/pineapple-pictures/actions/workflows/windows.yml)|
|
||||||
|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)|
|
||||||
|
|
||||||
@ -21,10 +21,9 @@ Pineapple Pictures is a lightweight image viewer that allows you view JPEG, PNG,
|
|||||||
- Archlinux AUR: [pineapple-pictures](https://aur.archlinux.org/packages/pineapple-pictures/) | [pineapple-pictures-git](https://aur.archlinux.org/packages/pineapple-pictures-git/)
|
- 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)
|
||||||
|
|
||||||
### Maintained by contributors / curtain distro's package maintainers
|
### Maintained by contributors / certain distro's package maintainers
|
||||||
|
|
||||||
- Debian (since bullseye) or Ubuntu (since 21.04): `sudo apt install pineapple-pictures`
|
[](https://repology.org/project/pineapple-pictures/versions)
|
||||||
- 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)
|
|
||||||
|
|
||||||
## Help Translation!
|
## Help Translation!
|
||||||
|
|
||||||
@ -54,31 +53,11 @@ The project will try to build with `exiv2` when it's available at build time, if
|
|||||||
|
|
||||||
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.
|
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.
|
||||||
|
|
||||||
|
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).
|
||||||
|
|
||||||
> [!NOTE]
|
> [!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.
|
> 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.
|
||||||
|
|
||||||
### Linux
|
|
||||||
|
|
||||||
Just normal build process as other program will be fine. Nothing special ;)
|
|
||||||
|
|
||||||
For Archlinux there are also a [PKGBUILD](https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=pineapple-pictures-git) you can use.
|
|
||||||
|
|
||||||
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.
|
|
||||||
|
|
||||||
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.
|
|
||||||
|
|
||||||
### 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
|
## License
|
||||||
|
|
||||||
Pineapple Pictures as a whole is licensed under MIT license. Individual files may have a different, but compatible license.
|
Pineapple Pictures as a whole is licensed under MIT license. Individual files may have a different, but compatible license.
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
|CI|构建状态|
|
|CI|构建状态|
|
||||||
|---|---|
|
|---|---|
|
||||||
|Windows Build|[](https://ci.appveyor.com/project/BLumia/pineapplepictures/branch/master)|
|
|Windows Build|[](https://github.com/BLumia/pineapple-pictures/actions/workflows/windows.yml)|
|
||||||
|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)|
|
||||||
|
|
||||||
@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
### 由原作者维护
|
### 由原作者维护
|
||||||
|
|
||||||
- [GitHub Release 页面](https://github.com/BLumia/pineapple-pictures/releases) | [gitee 发布页面](https://gitee.com/blumia/pineapple-pictures/releases)
|
- [GitHub Release 页面](https://github.com/BLumia/pineapple-pictures/releases)
|
||||||
- [SourceForge](https://sourceforge.net/projects/pineapple-pictures/)
|
- [SourceForge](https://sourceforge.net/projects/pineapple-pictures/)
|
||||||
- Archlinux AUR: [pineapple-pictures](https://aur.archlinux.org/packages/pineapple-pictures/) | [pineapple-pictures-git](https://aur.archlinux.org/packages/pineapple-pictures-git/)
|
- 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)
|
||||||
@ -24,8 +24,7 @@
|
|||||||
|
|
||||||
### 由贡献者/对应发行版的打包人员维护
|
### 由贡献者/对应发行版的打包人员维护
|
||||||
|
|
||||||
- Debian (自 bullseye 起) 或 Ubuntu (自 21.04 起): `sudo apt install pineapple-pictures`
|
[](https://repology.org/project/pineapple-pictures/versions)
|
||||||
- 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) 维护)
|
|
||||||
|
|
||||||
## 帮助翻译!
|
## 帮助翻译!
|
||||||
|
|
||||||
@ -55,31 +54,11 @@ $ cmake --build . # 如果你使用 Makefile 作为 CMake 生成器,也可以
|
|||||||
|
|
||||||
此应用的图片格式支持依赖于 Qt 的 imageformats 插件,直接从您所用的发行版获取对应的图像格式插件即可。对于 Windows 用户,您可能需要手动构建和使用图像格式插件。下方给出了进一步的说明。
|
此应用的图片格式支持依赖于 Qt 的 imageformats 插件,直接从您所用的发行版获取对应的图像格式插件即可。对于 Windows 用户,您可能需要手动构建和使用图像格式插件。下方给出了进一步的说明。
|
||||||
|
|
||||||
|
在 Windows、Linux 以及 macOS 系统均可构建此应用,其它有移植 Qt 支持的平台也可能可以进行构建。若要了解一些平台相关的构建指引,请参阅[相关的 Wiki 页面](https://github.com/BLumia/pineapple-pictures/wiki/Platform-Specific-Build-Instructions)。
|
||||||
|
|
||||||
> [!NOTE]
|
> [!NOTE]
|
||||||
> 尽管存在一个可用于 QMake 构建的 `pineapple-pictures.pro` 文件,但其仅供简单测试所用且其并不包含 `exiv2` 支持。使用 QMake 构建此项目是 **不受支持** 的,请尽可能考虑使用 CMake。
|
> 尽管存在一个可用于 QMake 构建的 `pineapple-pictures.pro` 文件,但其仅供简单测试所用且其并不包含 `exiv2` 支持。使用 QMake 构建此项目是 **不受支持** 的,请尽可能考虑使用 CMake。
|
||||||
|
|
||||||
### Linux
|
|
||||||
|
|
||||||
常规的构建步骤即可完成构建,不需要额外的处理步骤 ;)
|
|
||||||
|
|
||||||
对于 Archlinux 发行版的用户,这里还有一个 [PKGBUILD](https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=pineapple-pictures-git) 可供使用和参考。
|
|
||||||
|
|
||||||
对于在基于 debian 的发行版中进行打包的需求, `CMakeLists.txt` 已经提供了一些基本的 cpack 配置以便生成一个有效的 `.deb` 软件包。在构建步骤完毕后,使用 `cpack -G DEB` 即可生成 DEB 软件包。您也可以参考 `.github/workflows/ubuntu.yml` 来查看当前正在使用的 CI 配置是如何进行打包的。
|
|
||||||
|
|
||||||
目前,`DEB` 是当前唯一受到直接支持的 cpack 生成目标。若希望为此项目添加其它的 cpack 目标支持,欢迎发起合并请求。
|
|
||||||
|
|
||||||
### Windows
|
|
||||||
|
|
||||||
上述的构建步骤在 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 协议进行发布。项目所随的部分源文件可能具备不同但与之兼容的许可协议。
|
菠萝看图整体使用 MIT 协议进行发布。项目所随的部分源文件可能具备不同但与之兼容的许可协议。
|
||||||
|
33
REUSE.toml
Normal file
33
REUSE.toml
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
version = 1
|
||||||
|
SPDX-PackageName = "Pineapple Pictures"
|
||||||
|
SPDX-PackageDownloadLocation = "https://github.com/BLumia/pineapple-pictures"
|
||||||
|
|
||||||
|
[[annotations]]
|
||||||
|
path = [".gitattributes", ".git-blame-ignore-revs", ".gitignore", "appveyor.yml", ".github/**"]
|
||||||
|
precedence = "aggregate"
|
||||||
|
SPDX-FileCopyrightText = "None"
|
||||||
|
SPDX-License-Identifier = "CC0-1.0"
|
||||||
|
|
||||||
|
[[annotations]]
|
||||||
|
path = ["README**.md", "NEWS", "assets/**.rc.in", "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"
|
@ -1,179 +1,181 @@
|
|||||||
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
#include "aboutdialog.h"
|
#include "aboutdialog.h"
|
||||||
|
|
||||||
#include <QAbstractButton>
|
#include <QAbstractButton>
|
||||||
#include <QDialogButtonBox>
|
#include <QDialogButtonBox>
|
||||||
#include <QTextBrowser>
|
#include <QTextBrowser>
|
||||||
#include <QTabWidget>
|
#include <QTabWidget>
|
||||||
#include <QVBoxLayout>
|
#include <QVBoxLayout>
|
||||||
#include <QApplication>
|
#include <QApplication>
|
||||||
#include <QLabel>
|
#include <QLabel>
|
||||||
#include <QPushButton>
|
#include <QPushButton>
|
||||||
#include <QFile>
|
#include <QFile>
|
||||||
|
|
||||||
AboutDialog::AboutDialog(QWidget *parent)
|
using namespace Qt::Literals::StringLiterals;
|
||||||
: QDialog(parent)
|
|
||||||
, m_tabWidget(new QTabWidget)
|
AboutDialog::AboutDialog(QWidget *parent)
|
||||||
, m_buttonBox(new QDialogButtonBox)
|
: QDialog(parent)
|
||||||
, m_helpTextEdit(new QTextBrowser)
|
, m_tabWidget(new QTabWidget)
|
||||||
, m_aboutTextEdit(new QTextBrowser)
|
, m_buttonBox(new QDialogButtonBox)
|
||||||
, m_specialThanksTextEdit(new QTextBrowser)
|
, m_helpTextEdit(new QTextBrowser)
|
||||||
, m_licenseTextEdit(new QTextBrowser)
|
, m_aboutTextEdit(new QTextBrowser)
|
||||||
, m_3rdPartyLibsTextEdit(new QTextBrowser)
|
, m_specialThanksTextEdit(new QTextBrowser)
|
||||||
{
|
, m_licenseTextEdit(new QTextBrowser)
|
||||||
this->setWindowTitle(tr("About"));
|
, m_3rdPartyLibsTextEdit(new QTextBrowser)
|
||||||
|
{
|
||||||
const QStringList helpStr {
|
this->setWindowTitle(tr("About"));
|
||||||
QStringLiteral("<p>%1</p>").arg(tr("Launch application with image file path as argument to load the file.")),
|
|
||||||
QStringLiteral("<p>%1</p>").arg(tr("Drag and drop image file onto the window is also supported.")),
|
const QStringList helpStr {
|
||||||
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("Launch application with image file path as argument to load the file.")),
|
||||||
QStringLiteral("<p>%1</p>").arg(tr("Context menu option explanation:")),
|
u"<p>%1</p>"_s.arg(tr("Drag and drop image file onto the window is also supported.")),
|
||||||
QStringLiteral("<ul>"),
|
u"<p>%1</p>"_s.arg(tr("None of the operations in this application will alter the pictures on disk.")),
|
||||||
// blumia: Chain two arg() here since it seems lupdate will remove one of them if we use
|
u"<p>%1</p>"_s.arg(tr("Context menu option explanation:")),
|
||||||
// the old `arg(QCoreApp::translate(), tr())` way, but it's worth to mention
|
u"<ul>"_s,
|
||||||
// `arg(QCoreApp::translate(), this->tr())` works, but lupdate will complain about the usage.
|
// blumia: Chain two arg() here since it seems lupdate will remove one of them if we use
|
||||||
QStringLiteral("<li><b>%1</b>:<br/>%2</li>")
|
// the old `arg(QCoreApp::translate(), tr())` way, but it's worth to mention
|
||||||
.arg(QCoreApplication::translate("MainWindow", "Stay on top"))
|
// `arg(QCoreApp::translate(), this->tr())` works, but lupdate will complain about the usage.
|
||||||
.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", "Stay on top"))
|
||||||
.arg(QCoreApplication::translate("MainWindow", "Protected mode"))
|
.arg(tr("Make window stay on top of all other windows.")),
|
||||||
.arg(tr("Avoid close window accidentally. (eg. by double clicking the window)")),
|
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", "Keep transformation", "The 'transformation' means the flip/rotation status that currently applied to the image view"))
|
.arg(tr("Avoid close window accidentally. (eg. by double clicking the window)")),
|
||||||
.arg(tr("Avoid resetting the zoom/rotation/flip state that was applied to the image view when switching between images.")),
|
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 {
|
};
|
||||||
QStringLiteral("<center><img width='128' height='128' src=':/icons/app-icon.svg'/><br/>"),
|
|
||||||
qApp->applicationDisplayName(),
|
const QStringList aboutStr {
|
||||||
(QStringLiteral("<br/>") + tr("Version: %1").arg(
|
u"<center><img width='128' height='128' src=':/icons/app-icon.svg'/><br/>"_s,
|
||||||
#ifdef GIT_DESCRIBE_VERSION_STRING
|
qApp->applicationDisplayName(),
|
||||||
GIT_DESCRIBE_VERSION_STRING
|
(u"<br/>"_s + tr("Version: %1").arg(
|
||||||
#else
|
#ifdef GIT_DESCRIBE_VERSION_STRING
|
||||||
qApp->applicationVersion()
|
GIT_DESCRIBE_VERSION_STRING
|
||||||
#endif // GIT_DESCRIBE_VERSION_STRING
|
#else
|
||||||
)),
|
qApp->applicationVersion()
|
||||||
QStringLiteral("<hr/>"),
|
#endif // GIT_DESCRIBE_VERSION_STRING
|
||||||
tr("Copyright (c) %1 %2", "%1 is year, %2 is the name of copyright holder(s)")
|
)),
|
||||||
.arg(QStringLiteral("2024"), QStringLiteral("<a href='https://github.com/BLumia'>@BLumia</a>")),
|
u"<hr/>"_s,
|
||||||
QStringLiteral("<br/>"),
|
tr("Copyright (c) %1 %2", "%1 is year, %2 is the name of copyright holder(s)")
|
||||||
tr("Logo designed by %1").arg(QStringLiteral("<a href='https://github.com/Lovelyblack'>@Lovelyblack</a>")),
|
.arg(u"2025"_s, u"<a href='https://github.com/BLumia'>@BLumia</a>"_s),
|
||||||
QStringLiteral("<hr/>"),
|
u"<br/>"_s,
|
||||||
tr("Built with Qt %1 (%2)").arg(QT_VERSION_STR, QSysInfo::buildCpuArchitecture()),
|
tr("Logo designed by %1").arg(u"<a href='https://github.com/Lovelyblack'>@Lovelyblack</a>"_s),
|
||||||
QStringLiteral("<br/><a href='%1'>%2</a>").arg("https://github.com/BLumia/pineapple-pictures", tr("Source code")),
|
u"<hr/>"_s,
|
||||||
QStringLiteral("</center>")
|
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")),
|
||||||
|
u"</center>"_s
|
||||||
QFile translaterHtml(":/plain/translators.html");
|
};
|
||||||
bool canOpenFile = translaterHtml.open(QIODevice::ReadOnly);
|
|
||||||
const QByteArray & translatorList = canOpenFile ? translaterHtml.readAll() : QByteArrayLiteral("");
|
QFile translaterHtml(u":/plain/translators.html"_s);
|
||||||
|
bool canOpenFile = translaterHtml.open(QIODevice::ReadOnly);
|
||||||
const QStringList specialThanksStr {
|
const QByteArray & translatorList = canOpenFile ? translaterHtml.readAll() : QByteArrayLiteral("");
|
||||||
QStringLiteral("<h1 align='center'>%1</h1><a href='%2'>%3</a><p>%4</p>").arg(
|
|
||||||
tr("Contributors"),
|
const QStringList specialThanksStr {
|
||||||
QStringLiteral("https://github.com/BLumia/pineapple-pictures/graphs/contributors"),
|
u"<h1 align='center'>%1</h1><a href='%2'>%3</a><p>%4</p>"_s.arg(
|
||||||
tr("List of contributors on GitHub"),
|
tr("Contributors"),
|
||||||
tr("Thanks to all people who contributed to this project.")
|
u"https://github.com/BLumia/pineapple-pictures/graphs/contributors"_s,
|
||||||
),
|
tr("List of contributors on GitHub"),
|
||||||
|
tr("Thanks to all people who contributed to this project.")
|
||||||
QStringLiteral("<h1 align='center'>%1</h1><p>%2</p>%3").arg(
|
),
|
||||||
tr("Translators"),
|
|
||||||
tr("I would like to thank the following people who volunteered to translate this application."),
|
u"<h1 align='center'>%1</h1><p>%2</p>%3"_s.arg(
|
||||||
translatorList
|
tr("Translators"),
|
||||||
)
|
tr("I would like to thank the following people who volunteered to translate this application."),
|
||||||
};
|
translatorList
|
||||||
|
)
|
||||||
const QStringList licenseStr {
|
};
|
||||||
QStringLiteral("<h1 align='center'><b>%1</b></h1>").arg(tr("Your Rights")),
|
|
||||||
QStringLiteral("<p>%1</p><p>%2</p><ul><li>%3</li><li>%4</li><li>%5</li><li>%6</li></ul>").arg(
|
const QStringList licenseStr {
|
||||||
tr("%1 is released under the MIT License."), // %1
|
u"<h1 align='center'><b>%1</b></h1>"_s.arg(tr("Your Rights")),
|
||||||
tr("This license grants people a number of freedoms:"), // %2
|
u"<p>%1</p><p>%2</p><ul><li>%3</li><li>%4</li><li>%5</li><li>%6</li></ul>"_s.arg(
|
||||||
tr("You are free to use %1, for any purpose"), // %3
|
tr("%1 is released under the MIT License."), // %1
|
||||||
tr("You are free to distribute %1"), // %4
|
tr("This license grants people a number of freedoms:"), // %2
|
||||||
tr("You can study how %1 works and change it"), // %5
|
tr("You are free to use %1, for any purpose"), // %3
|
||||||
tr("You can distribute changed versions of %1") // %6
|
tr("You are free to distribute %1"), // %4
|
||||||
).arg(QStringLiteral("<i>%1</i>")),
|
tr("You can study how %1 works and change it"), // %5
|
||||||
QStringLiteral("<p>%1</p>").arg(tr("The MIT license guarantees you this freedom. Nobody is ever permitted to take it away.")),
|
tr("You can distribute changed versions of %1") // %6
|
||||||
QStringLiteral("<hr/><pre>%2</pre>")
|
).arg(u"<i>%1</i>"_s),
|
||||||
};
|
u"<p>%1</p>"_s.arg(tr("The MIT license guarantees you this freedom. Nobody is ever permitted to take it away.")),
|
||||||
|
u"<hr/><pre>%2</pre>"_s
|
||||||
const QString mitLicense(QStringLiteral(R"(Expat/MIT License
|
};
|
||||||
|
|
||||||
Copyright (c) 2024 BLumia
|
const QString mitLicense(QStringLiteral(R"(Expat/MIT License
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Copyright (c) 2025 BLumia
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
in the Software without restriction, including without limitation the rights
|
||||||
furnished to do so, subject to the following conditions:
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
The above copyright notice and this permission notice shall be included in all
|
furnished to do so, subject to the following conditions:
|
||||||
copies or substantial portions of the Software.
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
copies or substantial portions of the Software.
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
SOFTWARE.
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
)"));
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
||||||
const QStringList thirdPartyLibsStr {
|
)"));
|
||||||
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"),
|
const QStringList thirdPartyLibsStr {
|
||||||
QStringLiteral("<ul>"),
|
u"<h1 align='center'><b>%1</b></h1>"_s.arg(tr("Third-party Libraries used by %1")),
|
||||||
#ifdef HAVE_EXIV2_VERSION
|
tr("%1 is built on the following free software libraries:", "Free as in freedom"),
|
||||||
QStringLiteral("<li><a href='%1'>%2</a>: %3</li>").arg("https://www.exiv2.org/", "Exiv2", "GPLv2"),
|
u"<ul>"_s,
|
||||||
#endif // EXIV2_VERSION
|
#ifdef HAVE_EXIV2_VERSION
|
||||||
QStringLiteral("<li><a href='%1'>%2</a>: %3</li>").arg("https://www.qt.io/", "Qt", "GPLv2 + GPLv3 + LGPLv2.1 + LGPLv3"),
|
u"<li><a href='%1'>%2</a>: %3</li>"_s.arg("https://www.exiv2.org/", "Exiv2", "GPLv2"),
|
||||||
QStringLiteral("</ul>")
|
#endif // EXIV2_VERSION
|
||||||
};
|
u"<li><a href='%1'>%2</a>: %3</li>"_s.arg("https://www.qt.io/", "Qt", "GPLv2 + GPLv3 + LGPLv2.1 + LGPLv3"),
|
||||||
|
u"</ul>"_s
|
||||||
m_helpTextEdit->setText(helpStr.join('\n'));
|
};
|
||||||
|
|
||||||
m_aboutTextEdit->setText(aboutStr.join('\n'));
|
m_helpTextEdit->setText(helpStr.join('\n'));
|
||||||
m_aboutTextEdit->setOpenExternalLinks(true);
|
|
||||||
|
m_aboutTextEdit->setText(aboutStr.join('\n'));
|
||||||
m_specialThanksTextEdit->setText(specialThanksStr.join('\n'));
|
m_aboutTextEdit->setOpenExternalLinks(true);
|
||||||
m_specialThanksTextEdit->setOpenExternalLinks(true);
|
|
||||||
|
m_specialThanksTextEdit->setText(specialThanksStr.join('\n'));
|
||||||
m_licenseTextEdit->setText(licenseStr.join('\n').arg(qApp->applicationDisplayName(), mitLicense));
|
m_specialThanksTextEdit->setOpenExternalLinks(true);
|
||||||
|
|
||||||
m_3rdPartyLibsTextEdit->setText(thirdPartyLibsStr.join('\n').arg(QStringLiteral("<i>%1</i>").arg(qApp->applicationDisplayName())));
|
m_licenseTextEdit->setText(licenseStr.join('\n').arg(qApp->applicationDisplayName(), mitLicense));
|
||||||
m_3rdPartyLibsTextEdit->setOpenExternalLinks(true);
|
|
||||||
|
m_3rdPartyLibsTextEdit->setText(thirdPartyLibsStr.join('\n').arg(u"<i>%1</i>"_s).arg(qApp->applicationDisplayName()));
|
||||||
m_tabWidget->addTab(m_helpTextEdit, tr("&Help"));
|
m_3rdPartyLibsTextEdit->setOpenExternalLinks(true);
|
||||||
m_tabWidget->addTab(m_aboutTextEdit, tr("&About"));
|
|
||||||
m_tabWidget->addTab(m_specialThanksTextEdit, tr("&Special Thanks"));
|
m_tabWidget->addTab(m_helpTextEdit, tr("&Help"));
|
||||||
m_tabWidget->addTab(m_licenseTextEdit, tr("&License"));
|
m_tabWidget->addTab(m_aboutTextEdit, tr("&About"));
|
||||||
m_tabWidget->addTab(m_3rdPartyLibsTextEdit, tr("&Third-party Libraries"));
|
m_tabWidget->addTab(m_specialThanksTextEdit, tr("&Special Thanks"));
|
||||||
|
m_tabWidget->addTab(m_licenseTextEdit, tr("&License"));
|
||||||
m_buttonBox->setStandardButtons(QDialogButtonBox::Close);
|
m_tabWidget->addTab(m_3rdPartyLibsTextEdit, tr("&Third-party Libraries"));
|
||||||
connect(m_buttonBox, QOverload<QAbstractButton *>::of(&QDialogButtonBox::clicked), this, [this](){
|
|
||||||
this->close();
|
m_buttonBox->setStandardButtons(QDialogButtonBox::Close);
|
||||||
});
|
connect(m_buttonBox, QOverload<QAbstractButton *>::of(&QDialogButtonBox::clicked), this, [this](){
|
||||||
|
this->close();
|
||||||
setLayout(new QVBoxLayout);
|
});
|
||||||
|
|
||||||
layout()->addWidget(m_tabWidget);
|
setLayout(new QVBoxLayout);
|
||||||
layout()->addWidget(m_buttonBox);
|
|
||||||
|
layout()->addWidget(m_tabWidget);
|
||||||
setMinimumSize(361, 161); // not sure why it complain "Unable to set geometry"
|
layout()->addWidget(m_buttonBox);
|
||||||
setWindowFlag(Qt::WindowContextHelpButtonHint, false);
|
|
||||||
}
|
setMinimumSize(361, 161); // not sure why it complain "Unable to set geometry"
|
||||||
|
setWindowFlag(Qt::WindowContextHelpButtonHint, false);
|
||||||
AboutDialog::~AboutDialog()
|
}
|
||||||
{
|
|
||||||
|
AboutDialog::~AboutDialog()
|
||||||
}
|
{
|
||||||
|
|
||||||
QSize AboutDialog::sizeHint() const
|
}
|
||||||
{
|
|
||||||
return QSize(520, 350);
|
QSize AboutDialog::sizeHint() const
|
||||||
}
|
{
|
||||||
|
return QSize(520, 350);
|
||||||
|
}
|
||||||
|
@ -1,36 +1,36 @@
|
|||||||
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
#ifndef ABOUTDIALOG_H
|
#ifndef ABOUTDIALOG_H
|
||||||
#define ABOUTDIALOG_H
|
#define ABOUTDIALOG_H
|
||||||
|
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
|
||||||
QT_BEGIN_NAMESPACE
|
QT_BEGIN_NAMESPACE
|
||||||
class QTextBrowser;
|
class QTextBrowser;
|
||||||
class QTabWidget;
|
class QTabWidget;
|
||||||
class QDialogButtonBox;
|
class QDialogButtonBox;
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|
||||||
class AboutDialog : public QDialog
|
class AboutDialog : public QDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
explicit AboutDialog(QWidget *parent = nullptr);
|
explicit AboutDialog(QWidget *parent = nullptr);
|
||||||
~AboutDialog() override;
|
~AboutDialog() override;
|
||||||
|
|
||||||
QSize sizeHint() const override;
|
QSize sizeHint() const override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
QTabWidget * m_tabWidget = nullptr;
|
QTabWidget * m_tabWidget = nullptr;
|
||||||
QDialogButtonBox * m_buttonBox = nullptr;
|
QDialogButtonBox * m_buttonBox = nullptr;
|
||||||
|
|
||||||
QTextBrowser * m_helpTextEdit = nullptr;
|
QTextBrowser * m_helpTextEdit = nullptr;
|
||||||
QTextBrowser * m_aboutTextEdit = nullptr;
|
QTextBrowser * m_aboutTextEdit = nullptr;
|
||||||
QTextBrowser * m_specialThanksTextEdit = nullptr;
|
QTextBrowser * m_specialThanksTextEdit = nullptr;
|
||||||
QTextBrowser * m_licenseTextEdit = nullptr;
|
QTextBrowser * m_licenseTextEdit = nullptr;
|
||||||
QTextBrowser * m_3rdPartyLibsTextEdit = nullptr;
|
QTextBrowser * m_3rdPartyLibsTextEdit = nullptr;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // ABOUTDIALOG_H
|
#endif // ABOUTDIALOG_H
|
||||||
|
@ -1,157 +1,155 @@
|
|||||||
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
#include "actionmanager.h"
|
#include "actionmanager.h"
|
||||||
|
|
||||||
#include "mainwindow.h"
|
#include "mainwindow.h"
|
||||||
|
|
||||||
#include <QGuiApplication>
|
#include <QGuiApplication>
|
||||||
#include <QSvgRenderer>
|
#include <QSvgRenderer>
|
||||||
#include <QPainter>
|
#include <QPainter>
|
||||||
|
|
||||||
#define ICON_NAME(name)\
|
#define ICON_NAME(name)\
|
||||||
QStringLiteral(":/icons/" #name ".svg")
|
QStringLiteral(":/icons/" #name ".svg")
|
||||||
|
|
||||||
#define ACTION_NAME(s) QStringLiteral(STRIFY(s))
|
#define ACTION_NAME(s) QStringLiteral(STRIFY(s))
|
||||||
#define STRIFY(s) #s
|
#define STRIFY(s) #s
|
||||||
|
|
||||||
ActionManager::ActionManager()
|
QIcon ActionManager::loadHidpiIcon(const QString &resp, QSize sz)
|
||||||
{
|
{
|
||||||
|
QSvgRenderer r(resp);
|
||||||
}
|
QPixmap pm = QPixmap(sz * qApp->devicePixelRatio());
|
||||||
|
pm.fill(Qt::transparent);
|
||||||
ActionManager::~ActionManager()
|
QPainter p(&pm);
|
||||||
{
|
r.render(&p);
|
||||||
|
pm.setDevicePixelRatio(qApp->devicePixelRatio());
|
||||||
}
|
return QIcon(pm);
|
||||||
|
}
|
||||||
QIcon ActionManager::loadHidpiIcon(const QString &resp, QSize sz)
|
|
||||||
{
|
void ActionManager::setupAction(MainWindow *mainWindow)
|
||||||
QSvgRenderer r(resp);
|
{
|
||||||
QPixmap pm = QPixmap(sz * qApp->devicePixelRatio());
|
auto create_action = [] (QWidget *w, QAction **a, QString i, QString an, bool iconFromTheme = false) {
|
||||||
pm.fill(Qt::transparent);
|
*a = new QAction(w);
|
||||||
QPainter p(&pm);
|
if (!i.isNull())
|
||||||
r.render(&p);
|
(*a)->setIcon(iconFromTheme ? QIcon::fromTheme(i) : ActionManager::loadHidpiIcon(i));
|
||||||
pm.setDevicePixelRatio(qApp->devicePixelRatio());
|
(*a)->setObjectName(an);
|
||||||
return QIcon(pm);
|
w->addAction(*a);
|
||||||
}
|
};
|
||||||
|
#define CREATE_NEW_ICON_ACTION(w, a, i) create_action(w, &a, ICON_NAME(i), ACTION_NAME(a))
|
||||||
void ActionManager::setupAction(MainWindow *mainWindow)
|
CREATE_NEW_ICON_ACTION(mainWindow, actionActualSize, zoom-original);
|
||||||
{
|
CREATE_NEW_ICON_ACTION(mainWindow, actionToggleMaximize, view-fullscreen);
|
||||||
auto create_action = [] (QWidget *w, QAction **a, QString i, QString an, bool iconFromTheme = false) {
|
CREATE_NEW_ICON_ACTION(mainWindow, actionZoomIn, zoom-in);
|
||||||
*a = new QAction(w);
|
CREATE_NEW_ICON_ACTION(mainWindow, actionZoomOut, zoom-out);
|
||||||
if (!i.isNull())
|
CREATE_NEW_ICON_ACTION(mainWindow, actionToggleCheckerboard, view-background-checkerboard);
|
||||||
(*a)->setIcon(iconFromTheme ? QIcon::fromTheme(i) : ActionManager::loadHidpiIcon(i));
|
CREATE_NEW_ICON_ACTION(mainWindow, actionRotateClockwise, object-rotate-right);
|
||||||
(*a)->setObjectName(an);
|
#undef CREATE_NEW_ICON_ACTION
|
||||||
w->addAction(*a);
|
|
||||||
};
|
#define CREATE_NEW_ACTION(w, a) create_action(w, &a, QString(), ACTION_NAME(a))
|
||||||
#define CREATE_NEW_ICON_ACTION(w, a, i) create_action(w, &a, ICON_NAME(i), ACTION_NAME(a))
|
#define CREATE_NEW_THEMEICON_ACTION(w, a, i) create_action(w, &a, QLatin1String(STRIFY(i)), ACTION_NAME(a), true)
|
||||||
CREATE_NEW_ICON_ACTION(mainWindow, actionActualSize, zoom-original);
|
CREATE_NEW_ACTION(mainWindow, actionRotateCounterClockwise);
|
||||||
CREATE_NEW_ICON_ACTION(mainWindow, actionToggleMaximize, view-fullscreen);
|
CREATE_NEW_ACTION(mainWindow, actionPrevPicture);
|
||||||
CREATE_NEW_ICON_ACTION(mainWindow, actionZoomIn, zoom-in);
|
CREATE_NEW_ACTION(mainWindow, actionNextPicture);
|
||||||
CREATE_NEW_ICON_ACTION(mainWindow, actionZoomOut, zoom-out);
|
|
||||||
CREATE_NEW_ICON_ACTION(mainWindow, actionToggleCheckerboard, view-background-checkerboard);
|
CREATE_NEW_ACTION(mainWindow, actionTogglePauseAnimation);
|
||||||
CREATE_NEW_ICON_ACTION(mainWindow, actionRotateClockwise, object-rotate-right);
|
CREATE_NEW_ACTION(mainWindow, actionAnimationNextFrame);
|
||||||
#undef CREATE_NEW_ICON_ACTION
|
|
||||||
|
CREATE_NEW_THEMEICON_ACTION(mainWindow, actionOpen, document-open);
|
||||||
#define CREATE_NEW_ACTION(w, a) create_action(w, &a, QString(), ACTION_NAME(a))
|
CREATE_NEW_ACTION(mainWindow, actionHorizontalFlip);
|
||||||
#define CREATE_NEW_THEMEICON_ACTION(w, a, i) create_action(w, &a, QLatin1String(STRIFY(i)), ACTION_NAME(a), true)
|
CREATE_NEW_ACTION(mainWindow, actionFitInView);
|
||||||
CREATE_NEW_ACTION(mainWindow, actionRotateCounterClockwise);
|
CREATE_NEW_ACTION(mainWindow, actionFitByWidth);
|
||||||
CREATE_NEW_ACTION(mainWindow, actionPrevPicture);
|
CREATE_NEW_ACTION(mainWindow, actionFitLongImage);
|
||||||
CREATE_NEW_ACTION(mainWindow, actionNextPicture);
|
CREATE_NEW_THEMEICON_ACTION(mainWindow, actionCopyPixmap, edit-copy);
|
||||||
|
CREATE_NEW_ACTION(mainWindow, actionCopyFilePath);
|
||||||
CREATE_NEW_THEMEICON_ACTION(mainWindow, actionOpen, document-open);
|
CREATE_NEW_THEMEICON_ACTION(mainWindow, actionPaste, edit-paste);
|
||||||
CREATE_NEW_ACTION(mainWindow, actionHorizontalFlip);
|
CREATE_NEW_THEMEICON_ACTION(mainWindow, actionTrash, edit-delete);
|
||||||
CREATE_NEW_ACTION(mainWindow, actionFitInView);
|
CREATE_NEW_ACTION(mainWindow, actionToggleStayOnTop);
|
||||||
CREATE_NEW_ACTION(mainWindow, actionFitByWidth);
|
CREATE_NEW_ACTION(mainWindow, actionToggleProtectMode);
|
||||||
CREATE_NEW_THEMEICON_ACTION(mainWindow, actionCopyPixmap, edit-copy);
|
CREATE_NEW_ACTION(mainWindow, actionToggleAvoidResetTransform);
|
||||||
CREATE_NEW_ACTION(mainWindow, actionCopyFilePath);
|
CREATE_NEW_ACTION(mainWindow, actionSettings);
|
||||||
CREATE_NEW_THEMEICON_ACTION(mainWindow, actionPaste, edit-paste);
|
CREATE_NEW_THEMEICON_ACTION(mainWindow, actionHelp, system-help);
|
||||||
CREATE_NEW_THEMEICON_ACTION(mainWindow, actionTrash, edit-delete);
|
CREATE_NEW_THEMEICON_ACTION(mainWindow, actionLocateInFileManager, system-file-manager);
|
||||||
CREATE_NEW_ACTION(mainWindow, actionToggleStayOnTop);
|
CREATE_NEW_THEMEICON_ACTION(mainWindow, actionProperties, document-properties);
|
||||||
CREATE_NEW_ACTION(mainWindow, actionToggleProtectMode);
|
CREATE_NEW_ACTION(mainWindow, actionQuitApp);
|
||||||
CREATE_NEW_ACTION(mainWindow, actionToggleAvoidResetTransform);
|
#undef CREATE_NEW_ACTION
|
||||||
CREATE_NEW_ACTION(mainWindow, actionSettings);
|
#undef CREATE_NEW_THEMEICON_ACTION
|
||||||
CREATE_NEW_THEMEICON_ACTION(mainWindow, actionHelp, system-help);
|
|
||||||
CREATE_NEW_THEMEICON_ACTION(mainWindow, actionLocateInFileManager, system-file-manager);
|
retranslateUi(mainWindow);
|
||||||
CREATE_NEW_THEMEICON_ACTION(mainWindow, actionProperties, document-properties);
|
|
||||||
CREATE_NEW_ACTION(mainWindow, actionQuitApp);
|
QMetaObject::connectSlotsByName(mainWindow);
|
||||||
#undef CREATE_NEW_ACTION
|
}
|
||||||
#undef CREATE_NEW_THEMEICON_ACTION
|
|
||||||
|
void ActionManager::retranslateUi(MainWindow *mainWindow)
|
||||||
retranslateUi(mainWindow);
|
{
|
||||||
|
Q_UNUSED(mainWindow);
|
||||||
QMetaObject::connectSlotsByName(mainWindow);
|
|
||||||
}
|
actionOpen->setText(QCoreApplication::translate("MainWindow", "&Open...", nullptr));
|
||||||
|
|
||||||
void ActionManager::retranslateUi(MainWindow *mainWindow)
|
actionActualSize->setText(QCoreApplication::translate("MainWindow", "Actual size", nullptr));
|
||||||
{
|
actionToggleMaximize->setText(QCoreApplication::translate("MainWindow", "Toggle maximize", nullptr));
|
||||||
Q_UNUSED(mainWindow);
|
actionZoomIn->setText(QCoreApplication::translate("MainWindow", "Zoom in", nullptr));
|
||||||
|
actionZoomOut->setText(QCoreApplication::translate("MainWindow", "Zoom out", nullptr));
|
||||||
actionOpen->setText(QCoreApplication::translate("MainWindow", "&Open...", nullptr));
|
actionToggleCheckerboard->setText(QCoreApplication::translate("MainWindow", "Toggle Checkerboard", nullptr));
|
||||||
|
actionRotateClockwise->setText(QCoreApplication::translate("MainWindow", "Rotate right", nullptr));
|
||||||
actionActualSize->setText(QCoreApplication::translate("MainWindow", "Actual size", nullptr));
|
actionRotateCounterClockwise->setText(QCoreApplication::translate("MainWindow", "Rotate left", nullptr));
|
||||||
actionToggleMaximize->setText(QCoreApplication::translate("MainWindow", "Toggle maximize", nullptr));
|
|
||||||
actionZoomIn->setText(QCoreApplication::translate("MainWindow", "Zoom in", nullptr));
|
actionPrevPicture->setText(QCoreApplication::translate("MainWindow", "Previous image", nullptr));
|
||||||
actionZoomOut->setText(QCoreApplication::translate("MainWindow", "Zoom out", nullptr));
|
actionNextPicture->setText(QCoreApplication::translate("MainWindow", "Next image", nullptr));
|
||||||
actionToggleCheckerboard->setText(QCoreApplication::translate("MainWindow", "Toggle Checkerboard", nullptr));
|
|
||||||
actionRotateClockwise->setText(QCoreApplication::translate("MainWindow", "Rotate right", nullptr));
|
actionTogglePauseAnimation->setText(QCoreApplication::translate("MainWindow", "Pause/Resume Animation", nullptr));
|
||||||
actionRotateCounterClockwise->setText(QCoreApplication::translate("MainWindow", "Rotate left", nullptr));
|
actionAnimationNextFrame->setText(QCoreApplication::translate("MainWindow", "Animation Go to Next Frame", nullptr));
|
||||||
|
|
||||||
actionPrevPicture->setText(QCoreApplication::translate("MainWindow", "Previous image", nullptr));
|
actionHorizontalFlip->setText(QCoreApplication::translate("MainWindow", "Flip &Horizontally", nullptr));
|
||||||
actionNextPicture->setText(QCoreApplication::translate("MainWindow", "Next image", nullptr));
|
actionFitInView->setText(QCoreApplication::translate("MainWindow", "Fit to view", nullptr));
|
||||||
|
actionFitByWidth->setText(QCoreApplication::translate("MainWindow", "Fit to width", nullptr));
|
||||||
actionHorizontalFlip->setText(QCoreApplication::translate("MainWindow", "Flip &Horizontally", nullptr));
|
actionFitLongImage->setText(QCoreApplication::translate("MainWindow", "Fit long image", nullptr));
|
||||||
actionFitInView->setText(QCoreApplication::translate("MainWindow", "Fit to view", nullptr));
|
actionCopyPixmap->setText(QCoreApplication::translate("MainWindow", "Copy P&ixmap", nullptr));
|
||||||
actionFitByWidth->setText(QCoreApplication::translate("MainWindow", "Fit to width", nullptr));
|
actionCopyFilePath->setText(QCoreApplication::translate("MainWindow", "Copy &File Path", nullptr));
|
||||||
actionCopyPixmap->setText(QCoreApplication::translate("MainWindow", "Copy P&ixmap", nullptr));
|
actionPaste->setText(QCoreApplication::translate("MainWindow", "&Paste", nullptr));
|
||||||
actionCopyFilePath->setText(QCoreApplication::translate("MainWindow", "Copy &File Path", nullptr));
|
actionTrash->setText(QCoreApplication::translate("MainWindow", "Move to Trash", nullptr));
|
||||||
actionPaste->setText(QCoreApplication::translate("MainWindow", "&Paste", nullptr));
|
actionToggleStayOnTop->setText(QCoreApplication::translate("MainWindow", "Stay on top", nullptr));
|
||||||
actionTrash->setText(QCoreApplication::translate("MainWindow", "Move to Trash", nullptr));
|
actionToggleProtectMode->setText(QCoreApplication::translate("MainWindow", "Protected mode", nullptr));
|
||||||
actionToggleStayOnTop->setText(QCoreApplication::translate("MainWindow", "Stay on top", nullptr));
|
actionToggleAvoidResetTransform->setText(QCoreApplication::translate("MainWindow", "Keep transformation", "The 'transformation' means the flip/rotation status that currently applied to the image view"));
|
||||||
actionToggleProtectMode->setText(QCoreApplication::translate("MainWindow", "Protected mode", nullptr));
|
actionSettings->setText(QCoreApplication::translate("MainWindow", "Configure...", nullptr));
|
||||||
actionToggleAvoidResetTransform->setText(QCoreApplication::translate("MainWindow", "Keep transformation", "The 'transformation' means the flip/rotation status that currently applied to the image view"));
|
actionHelp->setText(QCoreApplication::translate("MainWindow", "Help", nullptr));
|
||||||
actionSettings->setText(QCoreApplication::translate("MainWindow", "Configure...", nullptr));
|
#ifdef Q_OS_WIN
|
||||||
actionHelp->setText(QCoreApplication::translate("MainWindow", "Help", nullptr));
|
actionLocateInFileManager->setText(
|
||||||
#ifdef Q_OS_WIN
|
QCoreApplication::translate(
|
||||||
actionLocateInFileManager->setText(
|
"MainWindow", "Show in File Explorer",
|
||||||
QCoreApplication::translate(
|
"File Explorer is the name of explorer.exe under Windows"
|
||||||
"MainWindow", "Show in File Explorer",
|
)
|
||||||
"File Explorer is the name of explorer.exe under Windows"
|
);
|
||||||
)
|
#else
|
||||||
);
|
actionLocateInFileManager->setText(QCoreApplication::translate("MainWindow", "Show in directory", nullptr));
|
||||||
#else
|
#endif // Q_OS_WIN
|
||||||
actionLocateInFileManager->setText(QCoreApplication::translate("MainWindow", "Show in directory", nullptr));
|
actionProperties->setText(QCoreApplication::translate("MainWindow", "Properties", nullptr));
|
||||||
#endif // Q_OS_WIN
|
actionQuitApp->setText(QCoreApplication::translate("MainWindow", "Quit", nullptr));
|
||||||
actionProperties->setText(QCoreApplication::translate("MainWindow", "Properties", nullptr));
|
}
|
||||||
actionQuitApp->setText(QCoreApplication::translate("MainWindow", "Quit", nullptr));
|
|
||||||
}
|
void ActionManager::setupShortcuts()
|
||||||
|
{
|
||||||
void ActionManager::setupShortcuts()
|
actionOpen->setShortcut(QKeySequence::Open);
|
||||||
{
|
actionActualSize->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_0));
|
||||||
actionOpen->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_O));
|
actionZoomIn->setShortcut(QKeySequence::ZoomIn);
|
||||||
actionActualSize->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_0));
|
actionZoomOut->setShortcut(QKeySequence::ZoomOut);
|
||||||
actionZoomIn->setShortcut(QKeySequence(QKeySequence::ZoomIn));
|
actionPrevPicture->setShortcuts({
|
||||||
actionZoomOut->setShortcut(QKeySequence(QKeySequence::ZoomOut));
|
QKeySequence(Qt::Key_PageUp),
|
||||||
actionPrevPicture->setShortcuts({
|
QKeySequence(Qt::Key_Left),
|
||||||
QKeySequence(Qt::Key_PageUp),
|
});
|
||||||
QKeySequence(Qt::Key_Left),
|
actionNextPicture->setShortcuts({
|
||||||
});
|
QKeySequence(Qt::Key_PageDown),
|
||||||
actionNextPicture->setShortcuts({
|
QKeySequence(Qt::Key_Right),
|
||||||
QKeySequence(Qt::Key_PageDown),
|
});
|
||||||
QKeySequence(Qt::Key_Right),
|
actionHorizontalFlip->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_R));
|
||||||
});
|
actionCopyPixmap->setShortcut(QKeySequence::Copy);
|
||||||
actionHorizontalFlip->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_R));
|
actionPaste->setShortcut(QKeySequence::Paste);
|
||||||
actionCopyPixmap->setShortcut(QKeySequence(QKeySequence::Copy));
|
actionTrash->setShortcut(QKeySequence::Delete);
|
||||||
actionPaste->setShortcut(QKeySequence::Paste);
|
actionHelp->setShortcut(QKeySequence::HelpContents);
|
||||||
actionTrash->setShortcut(QKeySequence::Delete);
|
actionSettings->setShortcut(QKeySequence::Preferences);
|
||||||
actionHelp->setShortcut(QKeySequence::HelpContents);
|
actionProperties->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_I));
|
||||||
actionSettings->setShortcut(QKeySequence::Preferences);
|
actionQuitApp->setShortcuts({
|
||||||
actionProperties->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_I));
|
QKeySequence(Qt::Key_Space),
|
||||||
actionQuitApp->setShortcuts({
|
QKeySequence(Qt::Key_Escape)
|
||||||
QKeySequence(Qt::Key_Space),
|
});
|
||||||
QKeySequence(Qt::Key_Escape)
|
}
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
|
@ -1,55 +1,59 @@
|
|||||||
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
// SPDX-FileCopyrightText: 2025 Gary Wang <git@blumia.net>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
#ifndef ACTIONMANAGER_H
|
#ifndef ACTIONMANAGER_H
|
||||||
#define ACTIONMANAGER_H
|
#define ACTIONMANAGER_H
|
||||||
|
|
||||||
#include <QAction>
|
#include <QAction>
|
||||||
|
|
||||||
class MainWindow;
|
class MainWindow;
|
||||||
|
|
||||||
class ActionManager
|
class ActionManager
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ActionManager();
|
explicit ActionManager() = default;
|
||||||
~ActionManager();
|
~ActionManager() = default;
|
||||||
|
|
||||||
void setupAction(MainWindow * mainWindow);
|
void setupAction(MainWindow * mainWindow);
|
||||||
void retranslateUi(MainWindow *MainWindow);
|
void retranslateUi(MainWindow *MainWindow);
|
||||||
void setupShortcuts();
|
void setupShortcuts();
|
||||||
|
|
||||||
static QIcon loadHidpiIcon(const QString &resp, QSize sz = QSize(32, 32));
|
static QIcon loadHidpiIcon(const QString &resp, QSize sz = QSize(32, 32));
|
||||||
|
|
||||||
public:
|
public:
|
||||||
QAction *actionOpen;
|
QAction *actionOpen;
|
||||||
|
|
||||||
QAction *actionActualSize;
|
QAction *actionActualSize;
|
||||||
QAction *actionToggleMaximize;
|
QAction *actionToggleMaximize;
|
||||||
QAction *actionZoomIn;
|
QAction *actionZoomIn;
|
||||||
QAction *actionZoomOut;
|
QAction *actionZoomOut;
|
||||||
QAction *actionToggleCheckerboard;
|
QAction *actionToggleCheckerboard;
|
||||||
QAction *actionRotateClockwise;
|
QAction *actionRotateClockwise;
|
||||||
QAction *actionRotateCounterClockwise;
|
QAction *actionRotateCounterClockwise;
|
||||||
|
|
||||||
QAction *actionPrevPicture;
|
QAction *actionPrevPicture;
|
||||||
QAction *actionNextPicture;
|
QAction *actionNextPicture;
|
||||||
|
|
||||||
QAction *actionHorizontalFlip;
|
QAction *actionTogglePauseAnimation;
|
||||||
QAction *actionFitInView;
|
QAction *actionAnimationNextFrame;
|
||||||
QAction *actionFitByWidth;
|
|
||||||
QAction *actionCopyPixmap;
|
QAction *actionHorizontalFlip;
|
||||||
QAction *actionCopyFilePath;
|
QAction *actionFitInView;
|
||||||
QAction *actionPaste;
|
QAction *actionFitByWidth;
|
||||||
QAction *actionTrash;
|
QAction *actionFitLongImage;
|
||||||
QAction *actionToggleStayOnTop;
|
QAction *actionCopyPixmap;
|
||||||
QAction *actionToggleProtectMode;
|
QAction *actionCopyFilePath;
|
||||||
QAction *actionToggleAvoidResetTransform;
|
QAction *actionPaste;
|
||||||
QAction *actionSettings;
|
QAction *actionTrash;
|
||||||
QAction *actionHelp;
|
QAction *actionToggleStayOnTop;
|
||||||
QAction *actionLocateInFileManager;
|
QAction *actionToggleProtectMode;
|
||||||
QAction *actionProperties;
|
QAction *actionToggleAvoidResetTransform;
|
||||||
QAction *actionQuitApp;
|
QAction *actionSettings;
|
||||||
};
|
QAction *actionHelp;
|
||||||
|
QAction *actionLocateInFileManager;
|
||||||
#endif // ACTIONMANAGER_H
|
QAction *actionProperties;
|
||||||
|
QAction *actionQuitApp;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // ACTIONMANAGER_H
|
||||||
|
@ -1,59 +1,57 @@
|
|||||||
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
#include "bottombuttongroup.h"
|
#include "bottombuttongroup.h"
|
||||||
|
|
||||||
#include "opacityhelper.h"
|
#include "opacityhelper.h"
|
||||||
|
|
||||||
#include <functional>
|
#include <QToolButton>
|
||||||
|
#include <QVBoxLayout>
|
||||||
#include <QToolButton>
|
#include <QDebug>
|
||||||
#include <QVBoxLayout>
|
|
||||||
#include <QDebug>
|
BottomButtonGroup::BottomButtonGroup(const std::vector<QAction *> &actionList, QWidget *parent)
|
||||||
|
: QGroupBox (parent)
|
||||||
BottomButtonGroup::BottomButtonGroup(const std::vector<QAction *> &actionList, QWidget *parent)
|
, m_opacityHelper(new OpacityHelper(this))
|
||||||
: QGroupBox (parent)
|
{
|
||||||
, m_opacityHelper(new OpacityHelper(this))
|
QHBoxLayout * mainLayout = new QHBoxLayout(this);
|
||||||
{
|
mainLayout->setSizeConstraint(QLayout::SetFixedSize);
|
||||||
QHBoxLayout * mainLayout = new QHBoxLayout(this);
|
this->setLayout(mainLayout);
|
||||||
mainLayout->setSizeConstraint(QLayout::SetFixedSize);
|
this->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum);
|
||||||
this->setLayout(mainLayout);
|
this->setStyleSheet("BottomButtonGroup {"
|
||||||
this->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum);
|
"border: 1px solid gray;"
|
||||||
this->setStyleSheet("BottomButtonGroup {"
|
"border-top-left-radius: 10px;"
|
||||||
"border: 1px solid gray;"
|
"border-top-right-radius: 10px;"
|
||||||
"border-top-left-radius: 10px;"
|
"border-style: none;"
|
||||||
"border-top-right-radius: 10px;"
|
"background-color:rgba(0,0,0,120)"
|
||||||
"border-style: none;"
|
"}"
|
||||||
"background-color:rgba(0,0,0,120)"
|
"QToolButton {"
|
||||||
"}"
|
"background:transparent;"
|
||||||
"QToolButton {"
|
"}"
|
||||||
"background:transparent;"
|
"QToolButton:!focus {"
|
||||||
"}"
|
"border-style: none;"
|
||||||
"QToolButton:!focus {"
|
"}");
|
||||||
"border-style: none;"
|
|
||||||
"}");
|
auto newActionBtn = [this](QAction * action) -> QToolButton * {
|
||||||
|
QToolButton * btn = new QToolButton(this);
|
||||||
auto newActionBtn = [this](QAction * action) -> QToolButton * {
|
btn->setDefaultAction(action);
|
||||||
QToolButton * btn = new QToolButton(this);
|
btn->setIconSize(QSize(32, 32));
|
||||||
btn->setDefaultAction(action);
|
btn->setFixedSize(40, 40);
|
||||||
btn->setIconSize(QSize(32, 32));
|
return btn;
|
||||||
btn->setFixedSize(40, 40);
|
};
|
||||||
return btn;
|
|
||||||
};
|
for (QAction * action : actionList) {
|
||||||
|
addButton(newActionBtn(action));
|
||||||
for (QAction * action : actionList) {
|
}
|
||||||
addButton(newActionBtn(action));
|
}
|
||||||
}
|
|
||||||
}
|
void BottomButtonGroup::setOpacity(qreal opacity, bool animated)
|
||||||
|
{
|
||||||
void BottomButtonGroup::setOpacity(qreal opacity, bool animated)
|
m_opacityHelper->setOpacity(opacity, animated);
|
||||||
{
|
}
|
||||||
m_opacityHelper->setOpacity(opacity, animated);
|
|
||||||
}
|
void BottomButtonGroup::addButton(QAbstractButton *button)
|
||||||
|
{
|
||||||
void BottomButtonGroup::addButton(QAbstractButton *button)
|
layout()->addWidget(button);
|
||||||
{
|
updateGeometry();
|
||||||
layout()->addWidget(button);
|
}
|
||||||
updateGeometry();
|
|
||||||
}
|
|
||||||
|
@ -1,27 +1,27 @@
|
|||||||
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
#ifndef BOTTOMBUTTONGROUP_H
|
#ifndef BOTTOMBUTTONGROUP_H
|
||||||
#define BOTTOMBUTTONGROUP_H
|
#define BOTTOMBUTTONGROUP_H
|
||||||
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#include <QAbstractButton>
|
#include <QAbstractButton>
|
||||||
#include <QGroupBox>
|
#include <QGroupBox>
|
||||||
|
|
||||||
class OpacityHelper;
|
class OpacityHelper;
|
||||||
class BottomButtonGroup : public QGroupBox
|
class BottomButtonGroup : public QGroupBox
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
explicit BottomButtonGroup(const std::vector<QAction *> & actionList, QWidget *parent = nullptr);
|
explicit BottomButtonGroup(const std::vector<QAction *> & actionList, QWidget *parent = nullptr);
|
||||||
|
|
||||||
void setOpacity(qreal opacity, bool animated = true);
|
void setOpacity(qreal opacity, bool animated = true);
|
||||||
void addButton(QAbstractButton *button);
|
void addButton(QAbstractButton *button);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
OpacityHelper * m_opacityHelper;
|
OpacityHelper * m_opacityHelper;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // BOTTOMBUTTONGROUP_H
|
#endif // BOTTOMBUTTONGROUP_H
|
||||||
|
@ -1,138 +1,138 @@
|
|||||||
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
#include "exiv2wrapper.h"
|
#include "exiv2wrapper.h"
|
||||||
|
|
||||||
#ifdef HAVE_EXIV2_VERSION
|
#ifdef HAVE_EXIV2_VERSION
|
||||||
#include <exiv2/exiv2.hpp>
|
#include <exiv2/exiv2.hpp>
|
||||||
#else // HAVE_EXIV2_VERSION
|
#else // HAVE_EXIV2_VERSION
|
||||||
namespace Exiv2 {
|
namespace Exiv2 {
|
||||||
class Image {};
|
class Image {};
|
||||||
}
|
}
|
||||||
#endif // HAVE_EXIV2_VERSION
|
#endif // HAVE_EXIV2_VERSION
|
||||||
|
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
|
||||||
#include <QFile>
|
#include <QFile>
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
|
|
||||||
Exiv2Wrapper::Exiv2Wrapper()
|
Exiv2Wrapper::Exiv2Wrapper()
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Exiv2Wrapper::~Exiv2Wrapper()
|
Exiv2Wrapper::~Exiv2Wrapper()
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef HAVE_EXIV2_VERSION // stupid AppleClang...
|
#ifdef HAVE_EXIV2_VERSION // stupid AppleClang...
|
||||||
template<typename Collection, typename Iterator>
|
template<typename Collection, typename Iterator>
|
||||||
void Exiv2Wrapper::cacheSection(Collection collection)
|
void Exiv2Wrapper::cacheSection(Collection collection)
|
||||||
{
|
{
|
||||||
const Collection& exifData = collection;
|
const Collection& exifData = collection;
|
||||||
Iterator it = exifData.begin(), end = exifData.end();
|
Iterator it = exifData.begin(), end = exifData.end();
|
||||||
for (; it != end; ++it) {
|
for (; it != end; ++it) {
|
||||||
QString key = QString::fromUtf8(it->key().c_str());
|
QString key = QString::fromUtf8(it->key().c_str());
|
||||||
if (it->tagName().substr(0, 2) == "0x") continue;
|
if (it->tagName().substr(0, 2) == "0x") continue;
|
||||||
// We might get exceptions like "No namespace info available for XMP prefix `Item'"
|
// We might get exceptions like "No namespace info available for XMP prefix `Item'"
|
||||||
// when trying to get tagLabel() data from a Xmpdatum if the tag is not common-used.
|
// when trying to get tagLabel() data from a Xmpdatum if the tag is not common-used.
|
||||||
// We don't care for those rare tags so let's just use a try-cache...
|
// We don't care for those rare tags so let's just use a try-cache...
|
||||||
try {
|
try {
|
||||||
QString label = QString::fromLocal8Bit(it->tagLabel().c_str());
|
QString label = QString::fromLocal8Bit(it->tagLabel().c_str());
|
||||||
std::ostringstream stream;
|
std::ostringstream stream;
|
||||||
stream << *it;
|
stream << *it;
|
||||||
QString value = QString::fromUtf8(stream.str().c_str());
|
QString value = QString::fromUtf8(stream.str().c_str());
|
||||||
m_metadataValue.insert(key, value);
|
m_metadataValue.insert(key, value);
|
||||||
m_metadataLabel.insert(key, label);
|
m_metadataLabel.insert(key, label);
|
||||||
qDebug() << key << label << value;
|
qDebug() << key << label << value;
|
||||||
#if EXIV2_TEST_VERSION(0, 28, 0)
|
#if EXIV2_TEST_VERSION(0, 28, 0)
|
||||||
} catch (Exiv2::Error & err) {
|
} catch (Exiv2::Error & err) {
|
||||||
#else // 0.27.x
|
#else // 0.27.x
|
||||||
} catch (Exiv2::AnyError & err) {
|
} catch (Exiv2::AnyError & err) {
|
||||||
#endif // EXIV2_TEST_VERSION(0, 28, 0)
|
#endif // EXIV2_TEST_VERSION(0, 28, 0)
|
||||||
qWarning() << "Error loading key" << key << ":" << err.what();
|
qWarning() << "Error loading key" << key << ":" << err.what();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif // HAVE_EXIV2_VERSION
|
#endif // HAVE_EXIV2_VERSION
|
||||||
|
|
||||||
bool Exiv2Wrapper::load(const QString &filePath)
|
bool Exiv2Wrapper::load(const QString &filePath)
|
||||||
{
|
{
|
||||||
#ifdef HAVE_EXIV2_VERSION
|
#ifdef HAVE_EXIV2_VERSION
|
||||||
QByteArray filePathByteArray = QFile::encodeName(filePath);
|
QByteArray filePathByteArray = QFile::encodeName(filePath);
|
||||||
try {
|
try {
|
||||||
m_exivImage.reset(Exiv2::ImageFactory::open(filePathByteArray.constData()).release());
|
m_exivImage.reset(Exiv2::ImageFactory::open(filePathByteArray.constData()).release());
|
||||||
m_exivImage->readMetadata();
|
m_exivImage->readMetadata();
|
||||||
} catch (const Exiv2::Error& error) {
|
} catch (const Exiv2::Error& error) {
|
||||||
m_errMsg = QString::fromUtf8(error.what());
|
m_errMsg = QString::fromUtf8(error.what());
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
#else // HAVE_EXIV2_VERSION
|
#else // HAVE_EXIV2_VERSION
|
||||||
Q_UNUSED(filePath);
|
Q_UNUSED(filePath);
|
||||||
return false;
|
return false;
|
||||||
#endif // HAVE_EXIV2_VERSION
|
#endif // HAVE_EXIV2_VERSION
|
||||||
}
|
}
|
||||||
|
|
||||||
void Exiv2Wrapper::cacheSections()
|
void Exiv2Wrapper::cacheSections()
|
||||||
{
|
{
|
||||||
#ifdef HAVE_EXIV2_VERSION
|
#ifdef HAVE_EXIV2_VERSION
|
||||||
if (m_exivImage->checkMode(Exiv2::mdExif) & Exiv2::amRead) {
|
if (m_exivImage->checkMode(Exiv2::mdExif) & Exiv2::amRead) {
|
||||||
cacheSection<Exiv2::ExifData, Exiv2::ExifData::const_iterator>(m_exivImage->exifData());
|
cacheSection<Exiv2::ExifData, Exiv2::ExifData::const_iterator>(m_exivImage->exifData());
|
||||||
}
|
}
|
||||||
|
|
||||||
if (m_exivImage->checkMode(Exiv2::mdIptc) & Exiv2::amRead) {
|
if (m_exivImage->checkMode(Exiv2::mdIptc) & Exiv2::amRead) {
|
||||||
cacheSection<Exiv2::IptcData, Exiv2::IptcData::const_iterator>(m_exivImage->iptcData());
|
cacheSection<Exiv2::IptcData, Exiv2::IptcData::const_iterator>(m_exivImage->iptcData());
|
||||||
}
|
}
|
||||||
|
|
||||||
if (m_exivImage->checkMode(Exiv2::mdXmp) & Exiv2::amRead) {
|
if (m_exivImage->checkMode(Exiv2::mdXmp) & Exiv2::amRead) {
|
||||||
cacheSection<Exiv2::XmpData, Exiv2::XmpData::const_iterator>(m_exivImage->xmpData());
|
cacheSection<Exiv2::XmpData, Exiv2::XmpData::const_iterator>(m_exivImage->xmpData());
|
||||||
}
|
}
|
||||||
|
|
||||||
// qDebug() << m_metadataValue;
|
// qDebug() << m_metadataValue;
|
||||||
// qDebug() << m_metadataLabel;
|
// qDebug() << m_metadataLabel;
|
||||||
#endif // HAVE_EXIV2_VERSION
|
#endif // HAVE_EXIV2_VERSION
|
||||||
}
|
}
|
||||||
|
|
||||||
QString Exiv2Wrapper::comment() const
|
QString Exiv2Wrapper::comment() const
|
||||||
{
|
{
|
||||||
#ifdef HAVE_EXIV2_VERSION
|
#ifdef HAVE_EXIV2_VERSION
|
||||||
return m_exivImage->comment().c_str();
|
return m_exivImage->comment().c_str();
|
||||||
#else // HAVE_EXIV2_VERSION
|
#else // HAVE_EXIV2_VERSION
|
||||||
return QString();
|
return QString();
|
||||||
#endif // HAVE_EXIV2_VERSION
|
#endif // HAVE_EXIV2_VERSION
|
||||||
}
|
}
|
||||||
|
|
||||||
QString Exiv2Wrapper::label(const QString &key) const
|
QString Exiv2Wrapper::label(const QString &key) const
|
||||||
{
|
{
|
||||||
return m_metadataLabel.value(key);
|
return m_metadataLabel.value(key);
|
||||||
}
|
}
|
||||||
|
|
||||||
QString Exiv2Wrapper::value(const QString &key) const
|
QString Exiv2Wrapper::value(const QString &key) const
|
||||||
{
|
{
|
||||||
return m_metadataValue.value(key);
|
return m_metadataValue.value(key);
|
||||||
}
|
}
|
||||||
|
|
||||||
QString Exiv2Wrapper::XmpValue(const QString &rawValue)
|
QString Exiv2Wrapper::XmpValue(const QString &rawValue)
|
||||||
{
|
{
|
||||||
QString ignored;
|
QString ignored;
|
||||||
return Exiv2Wrapper::XmpValue(rawValue, ignored);
|
return Exiv2Wrapper::XmpValue(rawValue, ignored);
|
||||||
}
|
}
|
||||||
|
|
||||||
QString Exiv2Wrapper::XmpValue(const QString &rawValue, QString &language)
|
QString Exiv2Wrapper::XmpValue(const QString &rawValue, QString &language)
|
||||||
{
|
{
|
||||||
if (rawValue.size() > 6 && rawValue.startsWith(QLatin1String("lang=\""))) {
|
if (rawValue.size() > 6 && rawValue.startsWith(QLatin1String("lang=\""))) {
|
||||||
int pos = rawValue.indexOf('"', 6);
|
int pos = rawValue.indexOf('"', 6);
|
||||||
|
|
||||||
if (pos != -1) {
|
if (pos != -1) {
|
||||||
language = rawValue.mid(6, pos - 6);
|
language = rawValue.mid(6, pos - 6);
|
||||||
return (rawValue.mid(pos + 2));
|
return (rawValue.mid(pos + 2));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
language.clear();
|
language.clear();
|
||||||
return rawValue;
|
return rawValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,43 +1,43 @@
|
|||||||
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
#ifndef EXIV2WRAPPER_H
|
#ifndef EXIV2WRAPPER_H
|
||||||
#define EXIV2WRAPPER_H
|
#define EXIV2WRAPPER_H
|
||||||
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
|
||||||
#include <QString>
|
#include <QString>
|
||||||
#include <QMap>
|
#include <QMap>
|
||||||
|
|
||||||
namespace Exiv2 {
|
namespace Exiv2 {
|
||||||
class Image;
|
class Image;
|
||||||
}
|
}
|
||||||
|
|
||||||
class Exiv2Wrapper
|
class Exiv2Wrapper
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
Exiv2Wrapper();
|
Exiv2Wrapper();
|
||||||
~Exiv2Wrapper();
|
~Exiv2Wrapper();
|
||||||
|
|
||||||
bool load(const QString& filePath);
|
bool load(const QString& filePath);
|
||||||
void cacheSections();
|
void cacheSections();
|
||||||
|
|
||||||
QString comment() const;
|
QString comment() const;
|
||||||
QString label(const QString & key) const;
|
QString label(const QString & key) const;
|
||||||
QString value(const QString & key) const;
|
QString value(const QString & key) const;
|
||||||
|
|
||||||
static QString XmpValue(const QString &rawValue);
|
static QString XmpValue(const QString &rawValue);
|
||||||
static QString XmpValue(const QString &rawValue, QString & language);
|
static QString XmpValue(const QString &rawValue, QString & language);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
std::unique_ptr<Exiv2::Image> m_exivImage;
|
std::unique_ptr<Exiv2::Image> m_exivImage;
|
||||||
QMap<QString, QString> m_metadataValue;
|
QMap<QString, QString> m_metadataValue;
|
||||||
QMap<QString, QString> m_metadataLabel;
|
QMap<QString, QString> m_metadataLabel;
|
||||||
QString m_errMsg;
|
QString m_errMsg;
|
||||||
|
|
||||||
template<typename Collection, typename Iterator>
|
template<typename Collection, typename Iterator>
|
||||||
void cacheSection(Collection collection);
|
void cacheSection(Collection collection);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // EXIV2WRAPPER_H
|
#endif // EXIV2WRAPPER_H
|
||||||
|
22
app/fileopeneventhandler.cpp
Normal file
22
app/fileopeneventhandler.cpp
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
// 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);
|
||||||
|
}
|
21
app/fileopeneventhandler.h
Normal file
21
app/fileopeneventhandler.h
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
// 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);
|
||||||
|
};
|
@ -1,147 +1,136 @@
|
|||||||
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
||||||
// SPDX-FileCopyrightText: 2023 Tad Young <yyc12321@outlook.com>
|
// SPDX-FileCopyrightText: 2023 Tad Young <yyc12321@outlook.com>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
#include "framelesswindow.h"
|
#include "framelesswindow.h"
|
||||||
|
|
||||||
#include <QMouseEvent>
|
#include <QMouseEvent>
|
||||||
#include <QHoverEvent>
|
#include <QHoverEvent>
|
||||||
#include <QApplication>
|
#include <QApplication>
|
||||||
#include <QVBoxLayout>
|
#include <QVBoxLayout>
|
||||||
#include <QWindow>
|
#include <QWindow>
|
||||||
|
|
||||||
FramelessWindow::FramelessWindow(QWidget *parent)
|
FramelessWindow::FramelessWindow(QWidget *parent)
|
||||||
: QWidget(parent)
|
: QWidget(parent)
|
||||||
, m_centralLayout(new QVBoxLayout(this))
|
, m_centralLayout(new QVBoxLayout(this))
|
||||||
, 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);
|
this->setMouseTracking(true);
|
||||||
#else
|
this->setAttribute(Qt::WA_Hover, true);
|
||||||
// There is a bug in Qt 5 that will make pressing Meta+Up cause the app
|
this->installEventFilter(this);
|
||||||
// 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).
|
m_centralLayout->setContentsMargins(QMargins());
|
||||||
this->setWindowFlags(Qt::Window | Qt::FramelessWindowHint | Qt::WindowMinimizeButtonHint);
|
}
|
||||||
#endif // QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
|
||||||
this->setMouseTracking(true);
|
void FramelessWindow::setCentralWidget(QWidget *widget)
|
||||||
this->setAttribute(Qt::WA_Hover, true);
|
{
|
||||||
this->installEventFilter(this);
|
if (m_centralWidget) {
|
||||||
|
m_centralLayout->removeWidget(m_centralWidget);
|
||||||
m_centralLayout->setContentsMargins(QMargins());
|
m_centralWidget->deleteLater();
|
||||||
}
|
}
|
||||||
|
|
||||||
void FramelessWindow::setCentralWidget(QWidget *widget)
|
m_centralLayout->addWidget(widget);
|
||||||
{
|
m_centralWidget = widget;
|
||||||
if (m_centralWidget) {
|
}
|
||||||
m_centralLayout->removeWidget(m_centralWidget);
|
|
||||||
m_centralWidget->deleteLater();
|
void FramelessWindow::installResizeCapture(QObject* widget)
|
||||||
}
|
{
|
||||||
|
widget->installEventFilter(this);
|
||||||
m_centralLayout->addWidget(widget);
|
}
|
||||||
m_centralWidget = widget;
|
|
||||||
}
|
bool FramelessWindow::eventFilter(QObject* o, QEvent* e)
|
||||||
|
{
|
||||||
void FramelessWindow::installResizeCapture(QObject* widget)
|
switch (e->type()) {
|
||||||
{
|
case QEvent::HoverMove:
|
||||||
widget->installEventFilter(this);
|
{
|
||||||
}
|
QWidget* wg = qobject_cast<QWidget*>(o);
|
||||||
|
if (wg != nullptr)
|
||||||
bool FramelessWindow::eventFilter(QObject* o, QEvent* e)
|
return mouseHover(static_cast<QHoverEvent*>(e), wg);
|
||||||
{
|
|
||||||
switch (e->type()) {
|
break;
|
||||||
case QEvent::HoverMove:
|
}
|
||||||
{
|
case QEvent::MouseButtonPress:
|
||||||
QWidget* wg = qobject_cast<QWidget*>(o);
|
return mousePress(static_cast<QMouseEvent*>(e));
|
||||||
if (wg != nullptr)
|
}
|
||||||
return mouseHover(static_cast<QHoverEvent*>(e), wg);
|
|
||||||
|
return QWidget::eventFilter(o, e);
|
||||||
break;
|
}
|
||||||
}
|
|
||||||
case QEvent::MouseButtonPress:
|
bool FramelessWindow::mouseHover(QHoverEvent* event, QWidget* wg)
|
||||||
return mousePress(static_cast<QMouseEvent*>(e));
|
{
|
||||||
}
|
if (!isMaximized() && !isFullScreen()) {
|
||||||
|
QWindow* win = window()->windowHandle();
|
||||||
return QWidget::eventFilter(o, e);
|
Qt::Edges edges = this->getEdgesByPos(wg->mapToGlobal(event->oldPos()), win->frameGeometry());
|
||||||
}
|
|
||||||
|
// backup & restore cursor shape
|
||||||
bool FramelessWindow::mouseHover(QHoverEvent* event, QWidget* wg)
|
if (edges && !m_oldEdges)
|
||||||
{
|
// entering the edge. backup cursor shape
|
||||||
if (!isMaximized() && !isFullScreen()) {
|
m_oldCursorShape = win->cursor().shape();
|
||||||
QWindow* win = window()->windowHandle();
|
if (!edges && m_oldEdges)
|
||||||
Qt::Edges edges = this->getEdgesByPos(wg->mapToGlobal(event->oldPos()), win->frameGeometry());
|
// leaving the edge. restore cursor shape
|
||||||
|
win->setCursor(m_oldCursorShape);
|
||||||
// backup & restore cursor shape
|
|
||||||
if (edges && !m_oldEdges)
|
// save the latest edges status
|
||||||
// entering the edge. backup cursor shape
|
m_oldEdges = edges;
|
||||||
m_oldCursorShape = win->cursor().shape();
|
|
||||||
if (!edges && m_oldEdges)
|
// show resize cursor shape if cursor is within border
|
||||||
// leaving the edge. restore cursor shape
|
if (edges) {
|
||||||
win->setCursor(m_oldCursorShape);
|
win->setCursor(this->getCursorByEdge(edges, Qt::ArrowCursor));
|
||||||
|
return true;
|
||||||
// save the latest edges status
|
}
|
||||||
m_oldEdges = edges;
|
}
|
||||||
|
|
||||||
// show resize cursor shape if cursor is within border
|
return false;
|
||||||
if (edges) {
|
}
|
||||||
win->setCursor(this->getCursorByEdge(edges, Qt::ArrowCursor));
|
|
||||||
return true;
|
bool FramelessWindow::mousePress(QMouseEvent* event)
|
||||||
}
|
{
|
||||||
}
|
if (event->buttons() & Qt::LeftButton && !isMaximized() && !isFullScreen()) {
|
||||||
|
QWindow* win = window()->windowHandle();
|
||||||
return false;
|
Qt::Edges edges = this->getEdgesByPos(event->globalPosition().toPoint(), win->frameGeometry());
|
||||||
}
|
if (edges) {
|
||||||
|
win->startSystemResize(edges);
|
||||||
bool FramelessWindow::mousePress(QMouseEvent* event)
|
return true;
|
||||||
{
|
}
|
||||||
if (event->buttons() & Qt::LeftButton && !isMaximized() && !isFullScreen()) {
|
}
|
||||||
QWindow* win = window()->windowHandle();
|
|
||||||
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
return false;
|
||||||
Qt::Edges edges = this->getEdgesByPos(event->globalPosition().toPoint(), win->frameGeometry());
|
}
|
||||||
#else
|
|
||||||
Qt::Edges edges = this->getEdgesByPos(event->globalPos(), win->frameGeometry());
|
Qt::CursorShape FramelessWindow::getCursorByEdge(const Qt::Edges& edges, Qt::CursorShape default_cursor)
|
||||||
#endif // QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
{
|
||||||
if (edges) {
|
if ((edges == (Qt::TopEdge | Qt::LeftEdge)) || (edges == (Qt::RightEdge | Qt::BottomEdge)))
|
||||||
win->startSystemResize(edges);
|
return Qt::SizeFDiagCursor;
|
||||||
return true;
|
else if ((edges == (Qt::TopEdge | Qt::RightEdge)) || (edges == (Qt::LeftEdge | Qt::BottomEdge)))
|
||||||
}
|
return Qt::SizeBDiagCursor;
|
||||||
}
|
else if (edges & (Qt::TopEdge | Qt::BottomEdge))
|
||||||
|
return Qt::SizeVerCursor;
|
||||||
return false;
|
else if (edges & (Qt::LeftEdge | Qt::RightEdge))
|
||||||
}
|
return Qt::SizeHorCursor;
|
||||||
|
else
|
||||||
Qt::CursorShape FramelessWindow::getCursorByEdge(const Qt::Edges& edges, Qt::CursorShape default_cursor)
|
return default_cursor;
|
||||||
{
|
}
|
||||||
if ((edges == (Qt::TopEdge | Qt::LeftEdge)) || (edges == (Qt::RightEdge | Qt::BottomEdge)))
|
|
||||||
return Qt::SizeFDiagCursor;
|
Qt::Edges FramelessWindow::getEdgesByPos(const QPoint gpos, const QRect& winrect)
|
||||||
else if ((edges == (Qt::TopEdge | Qt::RightEdge)) || (edges == (Qt::LeftEdge | Qt::BottomEdge)))
|
{
|
||||||
return Qt::SizeBDiagCursor;
|
const int borderWidth = 8;
|
||||||
else if (edges & (Qt::TopEdge | Qt::BottomEdge))
|
Qt::Edges edges;
|
||||||
return Qt::SizeVerCursor;
|
|
||||||
else if (edges & (Qt::LeftEdge | Qt::RightEdge))
|
int x = gpos.x() - winrect.x();
|
||||||
return Qt::SizeHorCursor;
|
int y = gpos.y() - winrect.y();
|
||||||
else
|
|
||||||
return default_cursor;
|
if (x < borderWidth)
|
||||||
}
|
edges |= Qt::LeftEdge;
|
||||||
|
if (x > (winrect.width() - borderWidth))
|
||||||
Qt::Edges FramelessWindow::getEdgesByPos(const QPoint gpos, const QRect& winrect)
|
edges |= Qt::RightEdge;
|
||||||
{
|
if (y < borderWidth)
|
||||||
const int borderWidth = 8;
|
edges |= Qt::TopEdge;
|
||||||
Qt::Edges edges;
|
if (y > (winrect.height() - borderWidth))
|
||||||
|
edges |= Qt::BottomEdge;
|
||||||
int x = gpos.x() - winrect.x();
|
|
||||||
int y = gpos.y() - winrect.y();
|
return edges;
|
||||||
|
}
|
||||||
if (x < borderWidth)
|
|
||||||
edges |= Qt::LeftEdge;
|
|
||||||
if (x > (winrect.width() - borderWidth))
|
|
||||||
edges |= Qt::RightEdge;
|
|
||||||
if (y < borderWidth)
|
|
||||||
edges |= Qt::TopEdge;
|
|
||||||
if (y > (winrect.height() - borderWidth))
|
|
||||||
edges |= Qt::BottomEdge;
|
|
||||||
|
|
||||||
return edges;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
@ -1,39 +1,39 @@
|
|||||||
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
#ifndef FRAMELESSWINDOW_H
|
#ifndef FRAMELESSWINDOW_H
|
||||||
#define FRAMELESSWINDOW_H
|
#define FRAMELESSWINDOW_H
|
||||||
|
|
||||||
#include <QWidget>
|
#include <QWidget>
|
||||||
|
|
||||||
QT_BEGIN_NAMESPACE
|
QT_BEGIN_NAMESPACE
|
||||||
class QVBoxLayout;
|
class QVBoxLayout;
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|
||||||
class FramelessWindow : public QWidget
|
class FramelessWindow : public QWidget
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
explicit FramelessWindow(QWidget *parent = nullptr);
|
explicit FramelessWindow(QWidget *parent = nullptr);
|
||||||
|
|
||||||
void setCentralWidget(QWidget * widget);
|
void setCentralWidget(QWidget * widget);
|
||||||
void installResizeCapture(QObject* widget);
|
void installResizeCapture(QObject* widget);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
bool eventFilter(QObject *o, QEvent *e) override;
|
bool eventFilter(QObject *o, QEvent *e) override;
|
||||||
bool mouseHover(QHoverEvent* event, QWidget* wg);
|
bool mouseHover(QHoverEvent* event, QWidget* wg);
|
||||||
bool mousePress(QMouseEvent* event);
|
bool mousePress(QMouseEvent* event);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Qt::Edges m_oldEdges;
|
Qt::Edges m_oldEdges;
|
||||||
Qt::CursorShape m_oldCursorShape;
|
Qt::CursorShape m_oldCursorShape;
|
||||||
|
|
||||||
Qt::CursorShape getCursorByEdge(const Qt::Edges& edges, Qt::CursorShape default_cursor);
|
Qt::CursorShape getCursorByEdge(const Qt::Edges& edges, Qt::CursorShape default_cursor);
|
||||||
Qt::Edges getEdgesByPos(const QPoint pos, const QRect& winrect);
|
Qt::Edges getEdgesByPos(const QPoint pos, const QRect& winrect);
|
||||||
|
|
||||||
QVBoxLayout * m_centralLayout = nullptr;
|
QVBoxLayout * m_centralLayout = nullptr;
|
||||||
QWidget * m_centralWidget = nullptr; // just a pointer, doesn't take the ownership.
|
QWidget * m_centralWidget = nullptr; // just a pointer, doesn't take the ownership.
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // FRAMELESSWINDOW_H
|
#endif // FRAMELESSWINDOW_H
|
||||||
|
@ -21,6 +21,9 @@ 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;
|
||||||
}
|
}
|
||||||
@ -61,6 +64,9 @@ 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);
|
||||||
@ -80,6 +86,10 @@ public:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inline QMovie * movie() const {
|
||||||
|
return m_movie.data();
|
||||||
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
QScopedPointer<QMovie> m_movie;
|
QScopedPointer<QMovie> m_movie;
|
||||||
};
|
};
|
||||||
@ -121,8 +131,8 @@ void GraphicsScene::showSvg(const QString &filepath)
|
|||||||
QSvgRenderer * render = new QSvgRenderer(svgItem);
|
QSvgRenderer * render = new QSvgRenderer(svgItem);
|
||||||
#if QT_VERSION >= QT_VERSION_CHECK(6, 7, 0)
|
#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.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
|
// Qt 6.7.1's is somewhat better, memory issue seems fixed, but still laggy when zoom in,
|
||||||
// Anyway let's disable it for now.
|
// see QTBUG-126771. Anyway let's disable it for now.
|
||||||
render->setOptions(QtSvg::Tiny12FeaturesOnly);
|
render->setOptions(QtSvg::Tiny12FeaturesOnly);
|
||||||
#endif // QT_VERSION >= QT_VERSION_CHECK(6, 7, 0)
|
#endif // QT_VERSION >= QT_VERSION_CHECK(6, 7, 0)
|
||||||
render->load(filepath);
|
render->load(filepath);
|
||||||
@ -158,6 +168,29 @@ 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,10 +21,13 @@ 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;
|
QGraphicsItem * m_theThing = nullptr;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // GRAPHICSSCENE_H
|
#endif // GRAPHICSSCENE_H
|
||||||
|
@ -1,367 +1,495 @@
|
|||||||
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
// SPDX-FileCopyrightText: 2025 Gary Wang <git@blumia.net>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
#include "graphicsview.h"
|
#include "graphicsview.h"
|
||||||
|
|
||||||
#include "graphicsscene.h"
|
#include "graphicsscene.h"
|
||||||
#include "settings.h"
|
#include "settings.h"
|
||||||
|
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
#include <QMouseEvent>
|
#include <QMouseEvent>
|
||||||
#include <QScrollBar>
|
#include <QScrollBar>
|
||||||
#include <QMimeData>
|
#include <QMimeData>
|
||||||
#include <QImageReader>
|
#include <QImageReader>
|
||||||
#include <QStyleOptionGraphicsItem>
|
#include <QStyleOptionGraphicsItem>
|
||||||
|
|
||||||
GraphicsView::GraphicsView(QWidget *parent)
|
GraphicsView::GraphicsView(QWidget *parent)
|
||||||
: QGraphicsView (parent)
|
: QGraphicsView (parent)
|
||||||
{
|
{
|
||||||
setDragMode(QGraphicsView::ScrollHandDrag);
|
setDragMode(QGraphicsView::ScrollHandDrag);
|
||||||
setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
||||||
setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
||||||
setResizeAnchor(QGraphicsView::AnchorUnderMouse);
|
setResizeAnchor(QGraphicsView::AnchorUnderMouse);
|
||||||
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(false);
|
||||||
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)
|
||||||
{
|
{
|
||||||
emit navigatorViewRequired(false, transform());
|
emit navigatorViewRequired(false, transform());
|
||||||
|
|
||||||
if (filePath.endsWith(".svg")) {
|
if (filePath.endsWith(".svg")) {
|
||||||
showSvg(filePath);
|
showSvg(filePath);
|
||||||
} else {
|
} else {
|
||||||
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.
|
||||||
|
// So we cannot use imageFormat() and check if it returns QImage::Format_Invalid to detect if we support the file.
|
||||||
// Since if the image format / plugin does not support this feature, imageFormat() will returns an invalid format.
|
// QImage::Format imageFormat = imageReader.imageFormat();
|
||||||
// So we cannot use imageFormat() and check if it returns QImage::Format_Invalid to detect if we support the file.
|
if (imageReader.format().isEmpty()) {
|
||||||
// QImage::Format imageFormat = imageReader.imageFormat();
|
showText(tr("File is not a valid image"));
|
||||||
if (imageReader.format().isEmpty()) {
|
} else if (imageReader.supportsAnimation() && imageReader.imageCount() > 1) {
|
||||||
showText(tr("File is not a valid image"));
|
showAnimated(filePath);
|
||||||
} else if (imageReader.supportsAnimation() && imageReader.imageCount() > 1) {
|
} else if (!imageReader.canRead()) {
|
||||||
showAnimated(filePath);
|
showText(tr("Image data is invalid or currently unsupported"));
|
||||||
} else if (!imageReader.canRead()) {
|
} else {
|
||||||
showText(tr("Image data is invalid or currently unsupported"));
|
QPixmap && pixmap = QPixmap::fromImageReader(&imageReader);
|
||||||
} else {
|
if (pixmap.isNull()) {
|
||||||
QPixmap && pixmap = QPixmap::fromImageReader(&imageReader);
|
showText(tr("Image data is invalid or currently unsupported"));
|
||||||
if (pixmap.isNull()) {
|
} else {
|
||||||
showText(tr("Image data is invalid or currently unsupported"));
|
pixmap.setDevicePixelRatio(devicePixelRatioF());
|
||||||
} else {
|
showImage(pixmap);
|
||||||
pixmap.setDevicePixelRatio(devicePixelRatioF());
|
}
|
||||||
showImage(pixmap);
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
void GraphicsView::showImage(const QPixmap &pixmap)
|
||||||
|
{
|
||||||
void GraphicsView::showImage(const QPixmap &pixmap)
|
resetTransform();
|
||||||
{
|
scene()->showImage(pixmap);
|
||||||
resetTransform();
|
displayScene();
|
||||||
scene()->showImage(pixmap);
|
}
|
||||||
displayScene();
|
|
||||||
}
|
void GraphicsView::showImage(const QImage &image)
|
||||||
|
{
|
||||||
void GraphicsView::showImage(const QImage &image)
|
resetTransform();
|
||||||
{
|
scene()->showImage(QPixmap::fromImage(image));
|
||||||
resetTransform();
|
displayScene();
|
||||||
scene()->showImage(QPixmap::fromImage(image));
|
}
|
||||||
displayScene();
|
|
||||||
}
|
void GraphicsView::showText(const QString &text)
|
||||||
|
{
|
||||||
void GraphicsView::showText(const QString &text)
|
resetTransform();
|
||||||
{
|
scene()->showText(text);
|
||||||
resetTransform();
|
displayScene();
|
||||||
scene()->showText(text);
|
}
|
||||||
displayScene();
|
|
||||||
}
|
void GraphicsView::showSvg(const QString &filepath)
|
||||||
|
{
|
||||||
void GraphicsView::showSvg(const QString &filepath)
|
resetTransform();
|
||||||
{
|
scene()->showSvg(filepath);
|
||||||
resetTransform();
|
displayScene();
|
||||||
scene()->showSvg(filepath);
|
}
|
||||||
displayScene();
|
|
||||||
}
|
void GraphicsView::showAnimated(const QString &filepath)
|
||||||
|
{
|
||||||
void GraphicsView::showAnimated(const QString &filepath)
|
resetTransform();
|
||||||
{
|
scene()->showAnimated(filepath);
|
||||||
resetTransform();
|
displayScene();
|
||||||
scene()->showAnimated(filepath);
|
}
|
||||||
displayScene();
|
|
||||||
}
|
GraphicsScene *GraphicsView::scene() const
|
||||||
|
{
|
||||||
GraphicsScene *GraphicsView::scene() const
|
return qobject_cast<GraphicsScene*>(QGraphicsView::scene());
|
||||||
{
|
}
|
||||||
return qobject_cast<GraphicsScene*>(QGraphicsView::scene());
|
|
||||||
}
|
void GraphicsView::setScene(GraphicsScene *scene)
|
||||||
|
{
|
||||||
void GraphicsView::setScene(GraphicsScene *scene)
|
return QGraphicsView::setScene(scene);
|
||||||
{
|
}
|
||||||
return QGraphicsView::setScene(scene);
|
|
||||||
}
|
qreal GraphicsView::scaleFactor() const
|
||||||
|
{
|
||||||
qreal GraphicsView::scaleFactor() const
|
return QStyleOptionGraphicsItem::levelOfDetailFromTransform(transform());
|
||||||
{
|
}
|
||||||
return QStyleOptionGraphicsItem::levelOfDetailFromTransform(transform());
|
|
||||||
}
|
void GraphicsView::resetTransform()
|
||||||
|
{
|
||||||
void GraphicsView::resetTransform()
|
if (!shouldAvoidTransform()) {
|
||||||
{
|
QGraphicsView::resetTransform();
|
||||||
if (!m_avoidResetTransform) {
|
}
|
||||||
QGraphicsView::resetTransform();
|
}
|
||||||
}
|
|
||||||
}
|
void GraphicsView::zoomView(qreal scaleFactor)
|
||||||
|
{
|
||||||
void GraphicsView::zoomView(qreal scaleFactor)
|
m_enableFitInView = false;
|
||||||
{
|
m_longImageMode = false;
|
||||||
m_enableFitInView = false;
|
scale(scaleFactor, scaleFactor);
|
||||||
scale(scaleFactor, scaleFactor);
|
applyTransformationModeByScaleFactor();
|
||||||
applyTransformationModeByScaleFactor();
|
emit navigatorViewRequired(!isThingSmallerThanWindowWith(transform()), transform());
|
||||||
emit navigatorViewRequired(!isThingSmallerThanWindowWith(transform()), transform());
|
}
|
||||||
}
|
|
||||||
|
// This is always according to user's view.
|
||||||
// This is always according to user's view.
|
// the direction of the rotation will NOT be clockwise because the y-axis points downwards.
|
||||||
// the direction of the rotation will NOT be clockwise because the y-axis points downwards.
|
void GraphicsView::rotateView(bool clockwise)
|
||||||
void GraphicsView::rotateView(bool clockwise)
|
{
|
||||||
{
|
resetScale();
|
||||||
resetScale();
|
|
||||||
|
QTransform tf(0, clockwise ? 1 : -1, 0,
|
||||||
QTransform tf(0, clockwise ? 1 : -1, 0,
|
clockwise ? -1 : 1, 0, 0,
|
||||||
clockwise ? -1 : 1, 0, 0,
|
0, 0, 1);
|
||||||
0, 0, 1);
|
tf = transform() * tf;
|
||||||
tf = transform() * tf;
|
setTransform(tf);
|
||||||
setTransform(tf);
|
|
||||||
}
|
// Apply transformation mode but don't emit navigator signal here
|
||||||
|
// Let displayScene() handle the navigator visibility correctly
|
||||||
void GraphicsView::flipView(bool horizontal)
|
applyTransformationModeByScaleFactor();
|
||||||
{
|
}
|
||||||
QTransform tf(horizontal ? -1 : 1, 0, 0,
|
|
||||||
0, horizontal ? 1 : -1, 0,
|
void GraphicsView::flipView(bool horizontal)
|
||||||
0, 0, 1);
|
{
|
||||||
tf = transform() * tf;
|
QTransform tf(horizontal ? -1 : 1, 0, 0,
|
||||||
setTransform(tf);
|
0, horizontal ? 1 : -1, 0,
|
||||||
|
0, 0, 1);
|
||||||
// Ensure the navigation view is also flipped.
|
tf = transform() * tf;
|
||||||
emit navigatorViewRequired(!isThingSmallerThanWindowWith(transform()), transform());
|
setTransform(tf);
|
||||||
}
|
|
||||||
|
// Ensure the navigation view is also flipped.
|
||||||
void GraphicsView::resetScale()
|
emit navigatorViewRequired(!isThingSmallerThanWindowWith(transform()), transform());
|
||||||
{
|
}
|
||||||
setTransform(resetScale(transform()));
|
|
||||||
applyTransformationModeByScaleFactor();
|
void GraphicsView::resetScale()
|
||||||
emit navigatorViewRequired(!isThingSmallerThanWindowWith(transform()), transform());
|
{
|
||||||
}
|
setTransform(resetScale(transform()));
|
||||||
|
applyTransformationModeByScaleFactor();
|
||||||
void GraphicsView::fitInView(const QRectF &rect, Qt::AspectRatioMode aspectRadioMode)
|
emit navigatorViewRequired(!isThingSmallerThanWindowWith(transform()), transform());
|
||||||
{
|
}
|
||||||
QGraphicsView::fitInView(rect, aspectRadioMode);
|
|
||||||
applyTransformationModeByScaleFactor();
|
void GraphicsView::fitInView(const QRectF &rect, Qt::AspectRatioMode aspectRadioMode)
|
||||||
}
|
{
|
||||||
|
QGraphicsView::fitInView(rect, aspectRadioMode);
|
||||||
void GraphicsView::fitByOrientation(Qt::Orientation ori, bool scaleDownOnly)
|
applyTransformationModeByScaleFactor();
|
||||||
{
|
}
|
||||||
resetScale();
|
|
||||||
|
void GraphicsView::fitByOrientation(Qt::Orientation ori, bool scaleDownOnly)
|
||||||
QRectF viewRect = this->viewport()->rect().adjusted(2, 2, -2, -2);
|
{
|
||||||
QRectF imageRect = transform().mapRect(sceneRect());
|
resetScale();
|
||||||
|
|
||||||
qreal ratio;
|
QRectF viewRect = this->viewport()->rect();
|
||||||
|
QRectF imageRect = transform().mapRect(sceneRect());
|
||||||
if (ori == Qt::Horizontal) {
|
QSize viewSize = viewRect.size().toSize();
|
||||||
ratio = viewRect.width() / imageRect.width();
|
|
||||||
} else {
|
qreal ratio;
|
||||||
ratio = viewRect.height() / imageRect.height();
|
|
||||||
}
|
if (ori == Qt::Horizontal) {
|
||||||
|
// Horizontal fit means fit by width
|
||||||
if (scaleDownOnly && ratio > 1) ratio = 1;
|
if (scaleDownOnly && imageRect.width() <= viewSize.width()) {
|
||||||
|
// Image width already fits, no scaling needed
|
||||||
scale(ratio, ratio);
|
ratio = 1;
|
||||||
centerOn(imageRect.top(), 0);
|
} else {
|
||||||
m_enableFitInView = false;
|
ratio = viewRect.width() / imageRect.width();
|
||||||
|
}
|
||||||
applyTransformationModeByScaleFactor();
|
} else {
|
||||||
emit navigatorViewRequired(!isThingSmallerThanWindowWith(transform()), transform());
|
// Vertical fit means fit by height
|
||||||
}
|
if (scaleDownOnly && imageRect.height() <= viewSize.height()) {
|
||||||
|
// Image height already fits, no scaling needed
|
||||||
void GraphicsView::displayScene()
|
ratio = 1;
|
||||||
{
|
} else {
|
||||||
if (m_avoidResetTransform) {
|
ratio = viewRect.height() / imageRect.height();
|
||||||
emit navigatorViewRequired(!isThingSmallerThanWindowWith(transform()), transform());
|
}
|
||||||
return;
|
}
|
||||||
}
|
|
||||||
|
if (ratio != 1) {
|
||||||
if (isSceneBiggerThanView()) {
|
scale(ratio, ratio);
|
||||||
fitInView(sceneRect(), Qt::KeepAspectRatio);
|
}
|
||||||
}
|
|
||||||
|
// Position the image correctly based on orientation with rotation consideration
|
||||||
m_enableFitInView = true;
|
QRectF originalScene = sceneRect();
|
||||||
}
|
QTransform currentTransform = transform();
|
||||||
|
|
||||||
bool GraphicsView::isSceneBiggerThanView() const
|
if (ori == Qt::Horizontal) {
|
||||||
{
|
// For horizontal fit (fit by width), position at top (for tall images)
|
||||||
if (!isThingSmallerThanWindowWith(transform())) {
|
// Find the scene point that corresponds to the top-center of the transformed image
|
||||||
return true;
|
QPointF sceneTopCenter;
|
||||||
} else {
|
|
||||||
return false;
|
if (qFuzzyIsNull(currentTransform.m12()) && qFuzzyIsNull(currentTransform.m21())) {
|
||||||
}
|
// 0° or 180° rotation
|
||||||
}
|
if (currentTransform.m11() > 0 && currentTransform.m22() > 0) {
|
||||||
|
// 0° rotation: use original top-center
|
||||||
// Automately do fit in view when viewport(window) smaller than image original size.
|
sceneTopCenter = QPointF(originalScene.center().x(), originalScene.top());
|
||||||
void GraphicsView::setEnableAutoFitInView(bool enable)
|
} else {
|
||||||
{
|
// 180° rotation: the visual "top" is now at the scene bottom
|
||||||
m_enableFitInView = enable;
|
sceneTopCenter = QPointF(originalScene.center().x(), originalScene.bottom());
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
bool GraphicsView::avoidResetTransform() const
|
// 90/270 degree rotation: the "top" in view corresponds to left/right in scene
|
||||||
{
|
if (currentTransform.m12() > 0) {
|
||||||
return m_avoidResetTransform;
|
// 90 degree: top in view = left in scene
|
||||||
}
|
sceneTopCenter = QPointF(originalScene.left(), originalScene.center().y());
|
||||||
|
} else {
|
||||||
void GraphicsView::setAvoidResetTransform(bool avoidReset)
|
// 270 degree: top in view = right in scene
|
||||||
{
|
sceneTopCenter = QPointF(originalScene.right(), originalScene.center().y());
|
||||||
m_avoidResetTransform = avoidReset;
|
}
|
||||||
}
|
}
|
||||||
|
centerOn(sceneTopCenter);
|
||||||
inline double zeroOrOne(double number)
|
} else {
|
||||||
{
|
// For vertical fit (fit by height), position at left (for wide images)
|
||||||
return qFuzzyIsNull(number) ? 0 : (number > 0 ? 1 : -1);
|
// Find the scene point that corresponds to the left-center of the transformed image
|
||||||
}
|
QPointF sceneLeftCenter;
|
||||||
|
|
||||||
// Note: this only works if we only have 90 degree based rotation
|
if (qFuzzyIsNull(currentTransform.m12()) && qFuzzyIsNull(currentTransform.m21())) {
|
||||||
// and no shear/translate.
|
// 0° or 180° rotation
|
||||||
QTransform GraphicsView::resetScale(const QTransform & orig)
|
if (currentTransform.m11() > 0 && currentTransform.m22() > 0) {
|
||||||
{
|
// 0° rotation: use original left-center
|
||||||
return QTransform(zeroOrOne(orig.m11()), zeroOrOne(orig.m12()),
|
sceneLeftCenter = QPointF(originalScene.left(), originalScene.center().y());
|
||||||
zeroOrOne(orig.m21()), zeroOrOne(orig.m22()),
|
} else {
|
||||||
orig.dx(), orig.dy());
|
// 180° rotation: the visual "left" is now at the scene right
|
||||||
}
|
sceneLeftCenter = QPointF(originalScene.right(), originalScene.center().y());
|
||||||
|
}
|
||||||
void GraphicsView::toggleCheckerboard(bool invertCheckerboardColor)
|
} else {
|
||||||
{
|
// 90/270 degree rotation: the "left" in view corresponds to top/bottom in scene
|
||||||
setCheckerboardEnabled(!m_checkerboardEnabled, invertCheckerboardColor);
|
if (currentTransform.m21() > 0) {
|
||||||
}
|
// 90 degree: left in view = top in scene
|
||||||
|
sceneLeftCenter = QPointF(originalScene.center().x(), originalScene.top());
|
||||||
void GraphicsView::mousePressEvent(QMouseEvent *event)
|
} else {
|
||||||
{
|
// 270 degree: left in view = bottom in scene
|
||||||
if (shouldIgnoreMousePressMoveEvent(event)) {
|
sceneLeftCenter = QPointF(originalScene.center().x(), originalScene.bottom());
|
||||||
event->ignore();
|
}
|
||||||
// blumia: return here, or the QMouseEvent event transparency won't
|
}
|
||||||
// work if we set a QGraphicsView::ScrollHandDrag drag mode.
|
centerOn(sceneLeftCenter);
|
||||||
return;
|
}
|
||||||
}
|
|
||||||
|
m_enableFitInView = false;
|
||||||
return QGraphicsView::mousePressEvent(event);
|
|
||||||
}
|
applyTransformationModeByScaleFactor();
|
||||||
|
emit navigatorViewRequired(!isThingSmallerThanWindowWith(transform()), transform());
|
||||||
void GraphicsView::mouseMoveEvent(QMouseEvent *event)
|
}
|
||||||
{
|
|
||||||
if (shouldIgnoreMousePressMoveEvent(event)) {
|
bool GraphicsView::isLongImage() const
|
||||||
event->ignore();
|
{
|
||||||
}
|
// Get the transformed image size (considering rotation and other transforms)
|
||||||
|
QRectF transformedRect = transform().mapRect(sceneRect());
|
||||||
return QGraphicsView::mouseMoveEvent(event);
|
QSizeF imageSize = transformedRect.size();
|
||||||
}
|
|
||||||
|
if (imageSize.isEmpty()) return false;
|
||||||
void GraphicsView::mouseReleaseEvent(QMouseEvent *event)
|
|
||||||
{
|
qreal aspectRatio = imageSize.width() / imageSize.height();
|
||||||
if (event->button() == Qt::ForwardButton || event->button() == Qt::BackButton) {
|
|
||||||
event->ignore();
|
// Check if aspect ratio exceeds 5:2 (wide) or 2:5 (tall)
|
||||||
} else {
|
return aspectRatio > 2.5 || aspectRatio < 0.4;
|
||||||
QGraphicsItem *item = itemAt(event->pos());
|
}
|
||||||
if (!item) {
|
|
||||||
event->ignore();
|
void GraphicsView::fitLongImage()
|
||||||
}
|
{
|
||||||
}
|
QRectF transformedRect = transform().mapRect(sceneRect());
|
||||||
|
|
||||||
return QGraphicsView::mouseReleaseEvent(event);
|
if (transformedRect.width() < transformedRect.height()) {
|
||||||
}
|
fitByOrientation(Qt::Horizontal, true);
|
||||||
|
} else {
|
||||||
void GraphicsView::wheelEvent(QWheelEvent *event)
|
fitByOrientation(Qt::Vertical, true);
|
||||||
{
|
}
|
||||||
event->ignore();
|
}
|
||||||
// blumia: no need for calling parent method.
|
|
||||||
}
|
void GraphicsView::displayScene()
|
||||||
|
{
|
||||||
void GraphicsView::resizeEvent(QResizeEvent *event)
|
if (shouldAvoidTransform()) {
|
||||||
{
|
emit navigatorViewRequired(!isThingSmallerThanWindowWith(transform()), transform());
|
||||||
if (m_enableFitInView) {
|
return;
|
||||||
bool originalSizeSmallerThanWindow = isThingSmallerThanWindowWith(resetScale(transform()));
|
}
|
||||||
if (originalSizeSmallerThanWindow && scaleFactor() >= 1) {
|
|
||||||
// no longer need to do fitInView()
|
// Check if should apply long image mode
|
||||||
// but we leave the m_enableFitInView value unchanged in case
|
if (Settings::instance()->autoLongImageMode() && isLongImage()) {
|
||||||
// user resize down the window again.
|
m_longImageMode = true;
|
||||||
} else if (originalSizeSmallerThanWindow && scaleFactor() < 1) {
|
m_firstUserMediaLoaded = true;
|
||||||
resetScale();
|
if (isSceneBiggerThanView()) fitLongImage();
|
||||||
} else {
|
return;
|
||||||
fitInView(sceneRect(), Qt::KeepAspectRatio);
|
}
|
||||||
}
|
|
||||||
} else {
|
if (isSceneBiggerThanView()) {
|
||||||
emit navigatorViewRequired(!isThingSmallerThanWindowWith(transform()), transform());
|
// Do fit-in-view
|
||||||
}
|
fitInView(sceneRect(), Qt::KeepAspectRatio);
|
||||||
return QGraphicsView::resizeEvent(event);
|
// After fitInView, the image should fit the window, so hide navigator
|
||||||
}
|
emit navigatorViewRequired(false, transform());
|
||||||
|
} else {
|
||||||
bool GraphicsView::isThingSmallerThanWindowWith(const QTransform &transform) const
|
// Image is already smaller than window, no navigator needed
|
||||||
{
|
emit navigatorViewRequired(false, transform());
|
||||||
return rect().size().expandedTo(transform.mapRect(sceneRect()).size().toSize())
|
}
|
||||||
== rect().size();
|
|
||||||
}
|
m_longImageMode = false;
|
||||||
|
m_enableFitInView = true;
|
||||||
bool GraphicsView::shouldIgnoreMousePressMoveEvent(const QMouseEvent *event) const
|
m_firstUserMediaLoaded = true;
|
||||||
{
|
}
|
||||||
if (event->buttons() == Qt::NoButton) {
|
|
||||||
return true;
|
bool GraphicsView::isSceneBiggerThanView() const
|
||||||
}
|
{
|
||||||
|
if (!isThingSmallerThanWindowWith(transform())) {
|
||||||
QGraphicsItem *item = itemAt(event->pos());
|
return true;
|
||||||
if (!item) {
|
} else {
|
||||||
return true;
|
return false;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
if (isThingSmallerThanWindowWith(transform())) {
|
|
||||||
return true;
|
// Automately do fit in view when viewport(window) smaller than image original size.
|
||||||
}
|
void GraphicsView::setEnableAutoFitInView(bool enable)
|
||||||
|
{
|
||||||
return false;
|
m_enableFitInView = enable;
|
||||||
}
|
}
|
||||||
|
|
||||||
void GraphicsView::setCheckerboardEnabled(bool enabled, bool invertColor)
|
void GraphicsView::setLongImageMode(bool enable)
|
||||||
{
|
{
|
||||||
m_checkerboardEnabled = enabled;
|
m_longImageMode = enable;
|
||||||
bool isLightCheckerboard = Settings::instance()->useLightCheckerboard() ^ invertColor;
|
}
|
||||||
if (m_checkerboardEnabled) {
|
|
||||||
// Prepare background check-board pattern
|
bool GraphicsView::avoidResetTransform() const
|
||||||
QPixmap tilePixmap(0x20, 0x20);
|
{
|
||||||
tilePixmap.fill(isLightCheckerboard ? QColor(220, 220, 220, 170) : QColor(35, 35, 35, 170));
|
return m_avoidResetTransform;
|
||||||
QPainter tilePainter(&tilePixmap);
|
}
|
||||||
constexpr QColor color(45, 45, 45, 170);
|
|
||||||
constexpr QColor invertedColor(210, 210, 210, 170);
|
void GraphicsView::setAvoidResetTransform(bool avoidReset)
|
||||||
tilePainter.fillRect(0, 0, 0x10, 0x10, isLightCheckerboard ? invertedColor : color);
|
{
|
||||||
tilePainter.fillRect(0x10, 0x10, 0x10, 0x10, isLightCheckerboard ? invertedColor : color);
|
m_avoidResetTransform = avoidReset;
|
||||||
tilePainter.end();
|
}
|
||||||
|
|
||||||
setBackgroundBrush(tilePixmap);
|
inline double zeroOrOne(double number)
|
||||||
} else {
|
{
|
||||||
setBackgroundBrush(Qt::transparent);
|
return qFuzzyIsNull(number) ? 0 : (number > 0 ? 1 : -1);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
// Note: this only works if we only have 90 degree based rotation
|
||||||
void GraphicsView::applyTransformationModeByScaleFactor()
|
// and no shear/translate.
|
||||||
{
|
QTransform GraphicsView::resetScale(const QTransform & orig)
|
||||||
if (this->scaleFactor() < 1) {
|
{
|
||||||
scene()->trySetTransformationMode(Qt::SmoothTransformation, this->scaleFactor());
|
return QTransform(zeroOrOne(orig.m11()), zeroOrOne(orig.m12()),
|
||||||
} else {
|
zeroOrOne(orig.m21()), zeroOrOne(orig.m22()),
|
||||||
scene()->trySetTransformationMode(Qt::FastTransformation, this->scaleFactor());
|
orig.dx(), orig.dy());
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
void GraphicsView::toggleCheckerboard(bool invertCheckerboardColor)
|
||||||
|
{
|
||||||
|
setCheckerboardEnabled(!m_checkerboardEnabled, invertCheckerboardColor);
|
||||||
|
}
|
||||||
|
|
||||||
|
void GraphicsView::mousePressEvent(QMouseEvent *event)
|
||||||
|
{
|
||||||
|
if (shouldIgnoreMousePressMoveEvent(event)) {
|
||||||
|
event->ignore();
|
||||||
|
// blumia: return here, or the QMouseEvent event transparency won't
|
||||||
|
// work if we set a QGraphicsView::ScrollHandDrag drag mode.
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
return QGraphicsView::mousePressEvent(event);
|
||||||
|
}
|
||||||
|
|
||||||
|
void GraphicsView::mouseMoveEvent(QMouseEvent *event)
|
||||||
|
{
|
||||||
|
if (shouldIgnoreMousePressMoveEvent(event)) {
|
||||||
|
event->ignore();
|
||||||
|
}
|
||||||
|
|
||||||
|
return QGraphicsView::mouseMoveEvent(event);
|
||||||
|
}
|
||||||
|
|
||||||
|
void GraphicsView::mouseReleaseEvent(QMouseEvent *event)
|
||||||
|
{
|
||||||
|
if (event->button() == Qt::ForwardButton || event->button() == Qt::BackButton) {
|
||||||
|
event->ignore();
|
||||||
|
} else {
|
||||||
|
QGraphicsItem *item = itemAt(event->pos());
|
||||||
|
if (!item) {
|
||||||
|
event->ignore();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return QGraphicsView::mouseReleaseEvent(event);
|
||||||
|
}
|
||||||
|
|
||||||
|
void GraphicsView::wheelEvent(QWheelEvent *event)
|
||||||
|
{
|
||||||
|
event->ignore();
|
||||||
|
// blumia: no need for calling parent method.
|
||||||
|
}
|
||||||
|
|
||||||
|
void GraphicsView::resizeEvent(QResizeEvent *event)
|
||||||
|
{
|
||||||
|
if (m_longImageMode) {
|
||||||
|
// In long image mode, reapply long image logic on resize
|
||||||
|
// We directly apply the long image mode logic without rechecking
|
||||||
|
// if we should enter long image mode, as the mode is already active
|
||||||
|
fitLongImage();
|
||||||
|
} else if (m_enableFitInView) {
|
||||||
|
bool originalSizeSmallerThanWindow = isThingSmallerThanWindowWith(resetScale(transform()));
|
||||||
|
if (originalSizeSmallerThanWindow && scaleFactor() >= 1) {
|
||||||
|
// no longer need to do fitInView()
|
||||||
|
// but we leave the m_enableFitInView value unchanged in case
|
||||||
|
// user resize down the window again.
|
||||||
|
} else if (originalSizeSmallerThanWindow && scaleFactor() < 1) {
|
||||||
|
resetScale();
|
||||||
|
} else {
|
||||||
|
fitInView(sceneRect(), Qt::KeepAspectRatio);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
emit navigatorViewRequired(!isThingSmallerThanWindowWith(transform()), transform());
|
||||||
|
}
|
||||||
|
return QGraphicsView::resizeEvent(event);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool GraphicsView::isThingSmallerThanWindowWith(const QTransform &transform) const
|
||||||
|
{
|
||||||
|
return rect().size().expandedTo(transform.mapRect(sceneRect()).size().toSize())
|
||||||
|
== rect().size();
|
||||||
|
}
|
||||||
|
|
||||||
|
bool GraphicsView::shouldIgnoreMousePressMoveEvent(const QMouseEvent *event) const
|
||||||
|
{
|
||||||
|
if (event->buttons() == Qt::NoButton) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
QGraphicsItem *item = itemAt(event->pos());
|
||||||
|
if (!item) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isThingSmallerThanWindowWith(transform())) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
void GraphicsView::setCheckerboardEnabled(bool enabled, bool invertColor)
|
||||||
|
{
|
||||||
|
m_checkerboardEnabled = enabled;
|
||||||
|
bool isLightCheckerboard = Settings::instance()->useLightCheckerboard() ^ invertColor;
|
||||||
|
if (m_checkerboardEnabled) {
|
||||||
|
// Prepare background check-board pattern
|
||||||
|
QPixmap tilePixmap(0x20, 0x20);
|
||||||
|
tilePixmap.fill(isLightCheckerboard ? QColor(220, 220, 220, 170) : QColor(35, 35, 35, 170));
|
||||||
|
QPainter tilePainter(&tilePixmap);
|
||||||
|
constexpr QColor color(45, 45, 45, 170);
|
||||||
|
constexpr QColor invertedColor(210, 210, 210, 170);
|
||||||
|
tilePainter.fillRect(0, 0, 0x10, 0x10, isLightCheckerboard ? invertedColor : color);
|
||||||
|
tilePainter.fillRect(0x10, 0x10, 0x10, 0x10, isLightCheckerboard ? invertedColor : color);
|
||||||
|
tilePainter.end();
|
||||||
|
|
||||||
|
setBackgroundBrush(tilePixmap);
|
||||||
|
} else {
|
||||||
|
setBackgroundBrush(Qt::transparent);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void GraphicsView::applyTransformationModeByScaleFactor()
|
||||||
|
{
|
||||||
|
if (this->scaleFactor() < 1) {
|
||||||
|
scene()->trySetTransformationMode(Qt::SmoothTransformation, this->scaleFactor());
|
||||||
|
} else {
|
||||||
|
scene()->trySetTransformationMode(Qt::FastTransformation, this->scaleFactor());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
bool GraphicsView::shouldAvoidTransform() const
|
||||||
|
{
|
||||||
|
return m_firstUserMediaLoaded && m_avoidResetTransform;
|
||||||
|
}
|
||||||
|
@ -1,76 +1,85 @@
|
|||||||
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
#ifndef GRAPHICSVIEW_H
|
#ifndef GRAPHICSVIEW_H
|
||||||
#define GRAPHICSVIEW_H
|
#define GRAPHICSVIEW_H
|
||||||
|
|
||||||
#include <QGraphicsView>
|
#include <QGraphicsView>
|
||||||
#include <QUrl>
|
#include <QUrl>
|
||||||
|
|
||||||
class GraphicsScene;
|
class GraphicsScene;
|
||||||
class GraphicsView : public QGraphicsView
|
class GraphicsView : public QGraphicsView
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
GraphicsView(QWidget *parent = nullptr);
|
GraphicsView(QWidget *parent = nullptr);
|
||||||
|
|
||||||
void showFileFromPath(const QString &filePath);
|
void showFileFromPath(const QString &filePath);
|
||||||
|
|
||||||
void showImage(const QPixmap &pixmap);
|
void showImage(const QPixmap &pixmap);
|
||||||
void showImage(const QImage &image);
|
void showImage(const QImage &image);
|
||||||
void showText(const QString &text);
|
void showText(const QString &text);
|
||||||
void showSvg(const QString &filepath);
|
void showSvg(const QString &filepath);
|
||||||
void showAnimated(const QString &filepath);
|
void showAnimated(const QString &filepath);
|
||||||
|
|
||||||
GraphicsScene * scene() const;
|
GraphicsScene * scene() const;
|
||||||
void setScene(GraphicsScene *scene);
|
void setScene(GraphicsScene *scene);
|
||||||
|
|
||||||
qreal scaleFactor() const;
|
qreal scaleFactor() const;
|
||||||
|
|
||||||
void resetTransform();
|
void resetTransform();
|
||||||
void zoomView(qreal scaleFactor);
|
void zoomView(qreal scaleFactor);
|
||||||
void rotateView(bool clockwise = true);
|
void rotateView(bool clockwise = true);
|
||||||
void flipView(bool horizontal = true);
|
void flipView(bool horizontal = true);
|
||||||
void resetScale();
|
void resetScale();
|
||||||
void fitInView(const QRectF &rect, Qt::AspectRatioMode aspectRadioMode = Qt::IgnoreAspectRatio);
|
void fitInView(const QRectF &rect, Qt::AspectRatioMode aspectRadioMode = Qt::IgnoreAspectRatio);
|
||||||
void fitByOrientation(Qt::Orientation ori = Qt::Horizontal, bool scaleDownOnly = false);
|
void fitByOrientation(Qt::Orientation ori = Qt::Horizontal, bool scaleDownOnly = false);
|
||||||
|
|
||||||
void displayScene();
|
void displayScene();
|
||||||
bool isSceneBiggerThanView() const;
|
bool isSceneBiggerThanView() const;
|
||||||
void setEnableAutoFitInView(bool enable = true);
|
void setEnableAutoFitInView(bool enable = true);
|
||||||
|
void setLongImageMode(bool enable = true);
|
||||||
bool avoidResetTransform() const;
|
|
||||||
void setAvoidResetTransform(bool avoidReset);
|
bool avoidResetTransform() const;
|
||||||
|
void setAvoidResetTransform(bool avoidReset);
|
||||||
static QTransform resetScale(const QTransform & orig);
|
|
||||||
|
static QTransform resetScale(const QTransform & orig);
|
||||||
signals:
|
|
||||||
void navigatorViewRequired(bool required, QTransform transform);
|
// Long image mode support
|
||||||
void viewportRectChanged();
|
bool isLongImage() const;
|
||||||
|
void fitLongImage();
|
||||||
public slots:
|
|
||||||
void toggleCheckerboard(bool invertCheckerboardColor = false);
|
signals:
|
||||||
|
void navigatorViewRequired(bool required, QTransform transform);
|
||||||
private:
|
void viewportRectChanged();
|
||||||
void mousePressEvent(QMouseEvent * event) override;
|
|
||||||
void mouseMoveEvent(QMouseEvent * event) override;
|
public slots:
|
||||||
void mouseReleaseEvent(QMouseEvent * event) override;
|
void toggleCheckerboard(bool invertCheckerboardColor = false);
|
||||||
void wheelEvent(QWheelEvent *event) override;
|
|
||||||
void resizeEvent(QResizeEvent *event) override;
|
private:
|
||||||
|
void mousePressEvent(QMouseEvent * event) override;
|
||||||
bool isThingSmallerThanWindowWith(const QTransform &transform) const;
|
void mouseMoveEvent(QMouseEvent * event) override;
|
||||||
bool shouldIgnoreMousePressMoveEvent(const QMouseEvent *event) const;
|
void mouseReleaseEvent(QMouseEvent * event) override;
|
||||||
void setCheckerboardEnabled(bool enabled, bool invertColor = false);
|
void wheelEvent(QWheelEvent *event) override;
|
||||||
void applyTransformationModeByScaleFactor();
|
void resizeEvent(QResizeEvent *event) override;
|
||||||
|
|
||||||
// Consider switch to 3 state for "no fit", "always fit" and "fit when view is smaller"?
|
bool isThingSmallerThanWindowWith(const QTransform &transform) const;
|
||||||
// ... or even more? e.g. "fit/snap width" things...
|
bool shouldIgnoreMousePressMoveEvent(const QMouseEvent *event) const;
|
||||||
// Currently it's "no fit" when it's false and "fit when view is smaller" when it's true.
|
void setCheckerboardEnabled(bool enabled, bool invertColor = false);
|
||||||
bool m_enableFitInView = false;
|
void applyTransformationModeByScaleFactor();
|
||||||
bool m_avoidResetTransform = false;
|
|
||||||
bool m_checkerboardEnabled = false;
|
inline bool shouldAvoidTransform() const;
|
||||||
bool m_useLightCheckerboard = false;
|
|
||||||
};
|
// 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...
|
||||||
#endif // GRAPHICSVIEW_H
|
// 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_longImageMode = false;
|
||||||
|
bool m_avoidResetTransform = false;
|
||||||
|
bool m_checkerboardEnabled = false;
|
||||||
|
bool m_useLightCheckerboard = false;
|
||||||
|
bool m_firstUserMediaLoaded = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // GRAPHICSVIEW_H
|
||||||
|
175
app/main.cpp
175
app/main.cpp
@ -1,72 +1,103 @@
|
|||||||
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
#include "mainwindow.h"
|
#include "mainwindow.h"
|
||||||
|
|
||||||
#include "playlistmanager.h"
|
#include "playlistmanager.h"
|
||||||
#include "settings.h"
|
#include "settings.h"
|
||||||
|
|
||||||
#include <QApplication>
|
#ifdef Q_OS_MACOS
|
||||||
#include <QCommandLineParser>
|
#include "fileopeneventhandler.h"
|
||||||
#include <QDir>
|
#endif // Q_OS_MACOS
|
||||||
#include <QTranslator>
|
|
||||||
#include <QUrl>
|
#include <QApplication>
|
||||||
|
#include <QCommandLineParser>
|
||||||
// QM_FILE_INSTALL_DIR should be defined from the CMakeLists file.
|
#include <QDir>
|
||||||
#ifndef QM_FILE_INSTALL_DIR
|
#include <QTranslator>
|
||||||
#define QM_FILE_INSTALL_DIR ":/i18n/"
|
#include <QUrl>
|
||||||
#endif // QM_FILE_INSTALL_DIR
|
|
||||||
|
using namespace Qt::Literals::StringLiterals;
|
||||||
int main(int argc, char *argv[])
|
|
||||||
{
|
int main(int argc, char *argv[])
|
||||||
QCoreApplication::setApplicationName("Pineapple Pictures");
|
{
|
||||||
QCoreApplication::setApplicationVersion(PPIC_VERSION_STRING);
|
QCoreApplication::setApplicationName(u"Pineapple Pictures"_s);
|
||||||
QGuiApplication::setHighDpiScaleFactorRoundingPolicy(Settings::instance()->hiDpiScaleFactorBehavior());
|
QCoreApplication::setApplicationVersion(PPIC_VERSION_STRING);
|
||||||
|
QGuiApplication::setHighDpiScaleFactorRoundingPolicy(Settings::instance()->hiDpiScaleFactorBehavior());
|
||||||
QApplication a(argc, argv);
|
|
||||||
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
|
QApplication a(argc, argv);
|
||||||
a.setAttribute(Qt::ApplicationAttribute::AA_UseHighDpiPixmaps);
|
|
||||||
#endif
|
QTranslator translator;
|
||||||
|
#if defined(TRANSLATION_RESOURCE_EMBEDDING)
|
||||||
QTranslator translator;
|
const QString qmDir = u":/i18n/"_s;
|
||||||
QString qmDir;
|
#elif defined(QM_FILE_INSTALL_ABSOLUTE_DIR)
|
||||||
#ifdef _WIN32
|
const QString qmDir = QT_STRINGIFY(QM_FILE_INSTALL_ABSOLUTE_DIR);
|
||||||
qmDir = QDir(QCoreApplication::applicationDirPath()).absoluteFilePath("translations");
|
#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);
|
||||||
QCoreApplication::installTranslator(&translator);
|
}
|
||||||
}
|
|
||||||
|
QGuiApplication::setApplicationDisplayName(QCoreApplication::translate("main", "Pineapple Pictures"));
|
||||||
QGuiApplication::setApplicationDisplayName(QCoreApplication::translate("main", "Pineapple Pictures"));
|
|
||||||
|
// commandline options
|
||||||
// commandline options
|
QCommandLineOption supportedImageFormats(u"supported-image-formats"_s, QCoreApplication::translate("main", "List supported image format suffixes, and quit program."));
|
||||||
QCommandLineOption supportedImageFormats(QStringLiteral("supported-image-formats"), 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.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);
|
||||||
parser.process(a);
|
|
||||||
|
if (parser.isSet(supportedImageFormats)) {
|
||||||
if (parser.isSet(supportedImageFormats)) {
|
#if QT_VERSION < QT_VERSION_CHECK(6, 9, 0)
|
||||||
fputs(qPrintable(MainWindow::supportedImageFormats().join(QChar('\n'))), stdout);
|
fputs(qPrintable(MainWindow::supportedImageFormats().join(QChar('\n'))), stdout);
|
||||||
::exit(EXIT_SUCCESS);
|
::exit(EXIT_SUCCESS);
|
||||||
}
|
#else
|
||||||
|
QCommandLineParser::showMessageAndExit(QCommandLineParser::MessageType::Information,
|
||||||
MainWindow w;
|
MainWindow::supportedImageFormats().join(QChar('\n')));
|
||||||
w.show();
|
#endif
|
||||||
|
}
|
||||||
QStringList urlStrList = parser.positionalArguments();
|
|
||||||
QList<QUrl> && urlList = PlaylistManager::convertToUrlList(urlStrList);
|
MainWindow w;
|
||||||
|
w.show();
|
||||||
if (!urlList.isEmpty()) {
|
|
||||||
w.showUrls(urlList);
|
#ifdef Q_OS_MACOS
|
||||||
}
|
FileOpenEventHandler * fileOpenEventHandler = new FileOpenEventHandler(&a);
|
||||||
|
a.installEventFilter(fileOpenEventHandler);
|
||||||
w.initWindowSize();
|
a.connect(fileOpenEventHandler, &FileOpenEventHandler::fileOpen, [&w](const QUrl & url){
|
||||||
|
if (w.isHidden()) {
|
||||||
return QApplication::exec();
|
w.setWindowOpacity(1);
|
||||||
}
|
w.showNormal();
|
||||||
|
} else {
|
||||||
|
w.activateWindow();
|
||||||
|
}
|
||||||
|
w.showUrls({url});
|
||||||
|
w.initWindowSize();
|
||||||
|
});
|
||||||
|
|
||||||
|
// Handle dock icon clicks to show hidden window
|
||||||
|
a.connect(&a, &QApplication::applicationStateChanged, [&w](Qt::ApplicationState state) {
|
||||||
|
if (state == Qt::ApplicationActive && w.isHidden()) {
|
||||||
|
w.showUrls({});
|
||||||
|
w.galleryCurrent(true, true);
|
||||||
|
w.setWindowOpacity(1);
|
||||||
|
w.showNormal();
|
||||||
|
w.raise();
|
||||||
|
w.activateWindow();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
#endif // Q_OS_MACOS
|
||||||
|
|
||||||
|
QStringList urlStrList = parser.positionalArguments();
|
||||||
|
QList<QUrl> && urlList = PlaylistManager::convertToUrlList(urlStrList);
|
||||||
|
|
||||||
|
if (!urlList.isEmpty()) {
|
||||||
|
w.showUrls(urlList);
|
||||||
|
}
|
||||||
|
|
||||||
|
w.initWindowSize();
|
||||||
|
|
||||||
|
return QApplication::exec();
|
||||||
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
// SPDX-FileCopyrightText: 2025 Gary Wang <git@blumia.net>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
@ -32,6 +32,7 @@
|
|||||||
#include <QFile>
|
#include <QFile>
|
||||||
#include <QTimer>
|
#include <QTimer>
|
||||||
#include <QFileDialog>
|
#include <QFileDialog>
|
||||||
|
#include <QFileSystemWatcher>
|
||||||
#include <QStandardPaths>
|
#include <QStandardPaths>
|
||||||
#include <QStringBuilder>
|
#include <QStringBuilder>
|
||||||
#include <QProcess>
|
#include <QProcess>
|
||||||
@ -43,10 +44,13 @@
|
|||||||
#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(this))
|
||||||
|
, m_fileSystemWatcher(new QFileSystemWatcher(this))
|
||||||
{
|
{
|
||||||
if (Settings::instance()->stayOnTop()) {
|
if (Settings::instance()->stayOnTop()) {
|
||||||
this->setWindowFlag(Qt::WindowStaysOnTopHint);
|
this->setWindowFlag(Qt::WindowStaysOnTopHint);
|
||||||
@ -54,24 +58,24 @@ 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(":/icons/app-icon.svg"));
|
this->setWindowIcon(QIcon(u":/icons/app-icon.svg"_s));
|
||||||
this->setMouseTracking(true);
|
this->setMouseTracking(true);
|
||||||
this->setAcceptDrops(true);
|
this->setAcceptDrops(true);
|
||||||
|
|
||||||
m_pm->setAutoLoadFilterSuffixes(supportedImageFormats());
|
m_pm->setAutoLoadFilterSuffixes(supportedImageFormats());
|
||||||
|
|
||||||
m_fadeOutAnimation = new QPropertyAnimation(this, "windowOpacity");
|
m_fadeOutAnimation = new QPropertyAnimation(this, "windowOpacity"_ba);
|
||||||
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");
|
m_floatUpAnimation = new QPropertyAnimation(this, "geometry"_ba);
|
||||||
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, &QWidget::close);
|
this, &MainWindow::doCloseWindow);
|
||||||
|
|
||||||
GraphicsScene * scene = new GraphicsScene(this);
|
GraphicsScene * scene = new GraphicsScene(this);
|
||||||
|
|
||||||
@ -86,7 +90,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, [ = ](bool required, const QTransform & tf){
|
this, [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);
|
||||||
@ -135,14 +139,15 @@ 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, [this](int galleryFileCount) {
|
connect(m_pm, &PlaylistManager::totalCountChanged, this, &MainWindow::updateGalleryButtonsVisibility);
|
||||||
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->model(), &PlaylistModel::modelReset, this, std::bind(&MainWindow::galleryCurrent, this, false, false));
|
||||||
connect(m_pm, &PlaylistManager::currentIndexChanged, this, std::bind(&MainWindow::galleryCurrent, this, true, false));
|
connect(m_pm, &PlaylistManager::currentIndexChanged, this, std::bind(&MainWindow::galleryCurrent, this, true, false));
|
||||||
|
|
||||||
|
connect(m_fileSystemWatcher, &QFileSystemWatcher::fileChanged, this, [this](){
|
||||||
|
QTimer::singleShot(500, this, std::bind(&MainWindow::galleryCurrent, this, false, true));
|
||||||
|
});
|
||||||
|
|
||||||
QShortcut * fullscreenShorucut = new QShortcut(QKeySequence(QKeySequence::FullScreen), this);
|
QShortcut * fullscreenShorucut = new QShortcut(QKeySequence(QKeySequence::FullScreen), this);
|
||||||
connect(fullscreenShorucut, &QShortcut::activated,
|
connect(fullscreenShorucut, &QShortcut::activated,
|
||||||
this, &MainWindow::toggleFullscreen);
|
this, &MainWindow::toggleFullscreen);
|
||||||
@ -151,6 +156,7 @@ 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.
|
||||||
@ -169,10 +175,20 @@ MainWindow::~MainWindow()
|
|||||||
void MainWindow::showUrls(const QList<QUrl> &urls)
|
void MainWindow::showUrls(const QList<QUrl> &urls)
|
||||||
{
|
{
|
||||||
if (!urls.isEmpty()) {
|
if (!urls.isEmpty()) {
|
||||||
m_graphicsView->showFileFromPath(urls.first().toLocalFile());
|
const QUrl & firstUrl = urls.first();
|
||||||
|
if (urls.count() == 1) {
|
||||||
|
const QString lowerCaseUrlPath(firstUrl.path().toLower());
|
||||||
|
if (lowerCaseUrlPath.endsWith(".m3u8") || lowerCaseUrlPath.endsWith(".m3u")) {
|
||||||
|
m_pm->loadM3U8Playlist(firstUrl);
|
||||||
|
galleryCurrent(true, true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
m_graphicsView->showFileFromPath(firstUrl.toLocalFile());
|
||||||
m_pm->loadPlaylist(urls);
|
m_pm->loadPlaylist(urls);
|
||||||
} else {
|
} else {
|
||||||
m_graphicsView->showText(tr("File url list is empty"));
|
m_graphicsView->showText(tr("File url list is empty"));
|
||||||
|
m_pm->setPlaylist(urls);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -188,6 +204,9 @@ 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;
|
||||||
@ -203,7 +222,7 @@ void MainWindow::adjustWindowSizeBySceneRect()
|
|||||||
|
|
||||||
if (m_graphicsView->scaleFactor() < 1 || size().expandedTo(sceneSizeWithMargins) != size()) {
|
if (m_graphicsView->scaleFactor() < 1 || size().expandedTo(sceneSizeWithMargins) != size()) {
|
||||||
// if it scaled down by the resize policy:
|
// if it scaled down by the resize policy:
|
||||||
QSize screenSize = qApp->screenAt(QCursor::pos())->availableSize();
|
QSize screenSize = window()->screen()->availableSize();
|
||||||
if (screenSize.expandedTo(sceneSize) == screenSize) {
|
if (screenSize.expandedTo(sceneSize) == screenSize) {
|
||||||
// we can show the picture by increase the window size.
|
// we can show the picture by increase the window size.
|
||||||
QSize finalSize = (screenSize.expandedTo(sceneSizeWithMargins) == screenSize) ?
|
QSize finalSize = (screenSize.expandedTo(sceneSizeWithMargins) == screenSize) ?
|
||||||
@ -237,6 +256,9 @@ void MainWindow::clearGallery()
|
|||||||
|
|
||||||
void MainWindow::galleryPrev()
|
void MainWindow::galleryPrev()
|
||||||
{
|
{
|
||||||
|
const bool loopGallery = Settings::instance()->loopGallery();
|
||||||
|
if (!loopGallery && m_pm->isFirstIndex()) return;
|
||||||
|
|
||||||
QModelIndex index = m_pm->previousIndex();
|
QModelIndex index = m_pm->previousIndex();
|
||||||
if (index.isValid()) {
|
if (index.isValid()) {
|
||||||
m_pm->setCurrentIndex(index);
|
m_pm->setCurrentIndex(index);
|
||||||
@ -246,6 +268,9 @@ void MainWindow::galleryPrev()
|
|||||||
|
|
||||||
void MainWindow::galleryNext()
|
void MainWindow::galleryNext()
|
||||||
{
|
{
|
||||||
|
const bool loopGallery = Settings::instance()->loopGallery();
|
||||||
|
if (!loopGallery && m_pm->isLastIndex()) return;
|
||||||
|
|
||||||
QModelIndex index = m_pm->nextIndex();
|
QModelIndex index = m_pm->nextIndex();
|
||||||
if (index.isValid()) {
|
if (index.isValid()) {
|
||||||
m_pm->setCurrentIndex(index);
|
m_pm->setCurrentIndex(index);
|
||||||
@ -257,12 +282,19 @@ void MainWindow::galleryNext()
|
|||||||
void MainWindow::galleryCurrent(bool showLoadImageHintWhenEmpty, bool reloadImage)
|
void MainWindow::galleryCurrent(bool showLoadImageHintWhenEmpty, bool reloadImage)
|
||||||
{
|
{
|
||||||
QModelIndex index = m_pm->curIndex();
|
QModelIndex index = m_pm->curIndex();
|
||||||
|
bool shouldResetfileWatcher = true;
|
||||||
if (index.isValid()) {
|
if (index.isValid()) {
|
||||||
if (reloadImage) m_graphicsView->showFileFromPath(m_pm->localFileByIndex(index));
|
const QString & localFilePath(m_pm->localFileByIndex(index));
|
||||||
|
if (reloadImage) m_graphicsView->showFileFromPath(localFilePath);
|
||||||
|
shouldResetfileWatcher = !updateFileWatcher(localFilePath);
|
||||||
setWindowTitle(m_pm->urlByIndex(index).fileName());
|
setWindowTitle(m_pm->urlByIndex(index).fileName());
|
||||||
} else if (showLoadImageHintWhenEmpty && m_pm->totalCount() <= 0) {
|
} else if (showLoadImageHintWhenEmpty && m_pm->totalCount() <= 0) {
|
||||||
m_graphicsView->showText(QCoreApplication::translate("GraphicsScene", "Drag image here"));
|
m_graphicsView->showText(QCoreApplication::translate("GraphicsScene", "Drag image here"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
updateGalleryButtonsVisibility();
|
||||||
|
|
||||||
|
if (shouldResetfileWatcher) updateFileWatcher();
|
||||||
}
|
}
|
||||||
|
|
||||||
QStringList MainWindow::supportedImageFormats()
|
QStringList MainWindow::supportedImageFormats()
|
||||||
@ -285,7 +317,7 @@ void MainWindow::showEvent(QShowEvent *event)
|
|||||||
return FramelessWindow::showEvent(event);
|
return FramelessWindow::showEvent(event);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::enterEvent(QT_ENTER_EVENT *event)
|
void MainWindow::enterEvent(QEnterEvent *event)
|
||||||
{
|
{
|
||||||
m_bottomButtonGroup->setOpacity(1);
|
m_bottomButtonGroup->setOpacity(1);
|
||||||
m_gv->setOpacity(1);
|
m_gv->setOpacity(1);
|
||||||
@ -326,11 +358,7 @@ 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();
|
||||||
}
|
}
|
||||||
@ -371,6 +399,10 @@ 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;
|
||||||
}
|
}
|
||||||
@ -428,13 +460,11 @@ 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(QLatin1String("edit-copy")));
|
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);
|
||||||
@ -554,19 +584,23 @@ void MainWindow::centerWindow()
|
|||||||
Qt::LeftToRight,
|
Qt::LeftToRight,
|
||||||
Qt::AlignCenter,
|
Qt::AlignCenter,
|
||||||
this->size(),
|
this->size(),
|
||||||
qApp->screenAt(QCursor::pos())->geometry()
|
window()->screen()->availableGeometry()
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::closeWindow()
|
void MainWindow::closeWindow()
|
||||||
{
|
{
|
||||||
QRect windowRect(this->geometry());
|
if (Settings::instance()->useBuiltInCloseAnimation()) {
|
||||||
m_floatUpAnimation->setStartValue(windowRect);
|
QRect windowRect(this->geometry());
|
||||||
m_floatUpAnimation->setEndValue(windowRect.adjusted(0, -80, 0, 0));
|
m_floatUpAnimation->setStartValue(windowRect);
|
||||||
m_floatUpAnimation->setStartValue(QRect(this->geometry().x(), this->geometry().y(), this->geometry().width(), this->geometry().height()));
|
m_floatUpAnimation->setEndValue(windowRect.adjusted(0, -80, 0, 0));
|
||||||
m_floatUpAnimation->setEndValue(QRect(this->geometry().x(), this->geometry().y()-80, this->geometry().width(), this->geometry().height()));
|
m_floatUpAnimation->setStartValue(QRect(this->geometry().x(), this->geometry().y(), this->geometry().width(), this->geometry().height()));
|
||||||
m_exitAnimationGroup->start();
|
m_floatUpAnimation->setEndValue(QRect(this->geometry().x(), this->geometry().y()-80, this->geometry().width(), this->geometry().height()));
|
||||||
|
m_exitAnimationGroup->start();
|
||||||
|
} else {
|
||||||
|
doCloseWindow();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::updateWidgetsPosition()
|
void MainWindow::updateWidgetsPosition()
|
||||||
@ -584,8 +618,7 @@ void MainWindow::toggleProtectedMode()
|
|||||||
{
|
{
|
||||||
m_protectedMode = !m_protectedMode;
|
m_protectedMode = !m_protectedMode;
|
||||||
m_closeButton->setVisible(!m_protectedMode);
|
m_closeButton->setVisible(!m_protectedMode);
|
||||||
m_prevButton->setVisible(!m_protectedMode);
|
updateGalleryButtonsVisibility();
|
||||||
m_nextButton->setVisible(!m_protectedMode);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::toggleStayOnTop()
|
void MainWindow::toggleStayOnTop()
|
||||||
@ -667,6 +700,7 @@ void MainWindow::on_actionActualSize_triggered()
|
|||||||
{
|
{
|
||||||
m_graphicsView->resetScale();
|
m_graphicsView->resetScale();
|
||||||
m_graphicsView->setEnableAutoFitInView(false);
|
m_graphicsView->setEnableAutoFitInView(false);
|
||||||
|
m_graphicsView->setLongImageMode(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::on_actionToggleMaximize_triggered()
|
void MainWindow::on_actionToggleMaximize_triggered()
|
||||||
@ -695,6 +729,7 @@ void MainWindow::on_actionFitInView_triggered()
|
|||||||
{
|
{
|
||||||
m_graphicsView->fitInView(m_gv->sceneRect(), Qt::KeepAspectRatio);
|
m_graphicsView->fitInView(m_gv->sceneRect(), Qt::KeepAspectRatio);
|
||||||
m_graphicsView->setEnableAutoFitInView(m_graphicsView->scaleFactor() <= 1);
|
m_graphicsView->setEnableAutoFitInView(m_graphicsView->scaleFactor() <= 1);
|
||||||
|
m_graphicsView->setLongImageMode(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::on_actionFitByWidth_triggered()
|
void MainWindow::on_actionFitByWidth_triggered()
|
||||||
@ -702,6 +737,12 @@ void MainWindow::on_actionFitByWidth_triggered()
|
|||||||
m_graphicsView->fitByOrientation();
|
m_graphicsView->fitByOrientation();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void MainWindow::on_actionFitLongImage_triggered()
|
||||||
|
{
|
||||||
|
m_graphicsView->setLongImageMode(true);
|
||||||
|
m_graphicsView->fitLongImage();
|
||||||
|
}
|
||||||
|
|
||||||
void MainWindow::on_actionCopyPixmap_triggered()
|
void MainWindow::on_actionCopyPixmap_triggered()
|
||||||
{
|
{
|
||||||
QClipboard *cb = QApplication::clipboard();
|
QClipboard *cb = QApplication::clipboard();
|
||||||
@ -761,7 +802,7 @@ void MainWindow::on_actionTrash_triggered()
|
|||||||
if (result == QMessageBox::Yes) {
|
if (result == QMessageBox::Yes) {
|
||||||
bool succ = file.moveToTrash();
|
bool succ = file.moveToTrash();
|
||||||
if (!succ) {
|
if (!succ) {
|
||||||
QMessageBox::warning(this, "Failed to move file to trash",
|
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."));
|
tr("Move to trash failed, it might caused by file permission issue, file system limitation, or platform limitation."));
|
||||||
} else {
|
} else {
|
||||||
m_pm->removeAt(index);
|
m_pm->removeAt(index);
|
||||||
@ -780,14 +821,12 @@ void MainWindow::on_actionRotateClockwise_triggered()
|
|||||||
{
|
{
|
||||||
m_graphicsView->rotateView();
|
m_graphicsView->rotateView();
|
||||||
m_graphicsView->displayScene();
|
m_graphicsView->displayScene();
|
||||||
m_gv->setVisible(false);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::on_actionRotateCounterClockwise_triggered()
|
void MainWindow::on_actionRotateCounterClockwise_triggered()
|
||||||
{
|
{
|
||||||
m_graphicsView->rotateView(false);
|
m_graphicsView->rotateView(false);
|
||||||
m_graphicsView->displayScene();
|
m_graphicsView->displayScene();
|
||||||
m_gv->setVisible(false);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::on_actionPrevPicture_triggered()
|
void MainWindow::on_actionPrevPicture_triggered()
|
||||||
@ -800,6 +839,16 @@ 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();
|
||||||
@ -862,9 +911,9 @@ void MainWindow::on_actionLocateInFileManager_triggered()
|
|||||||
QDesktopServices::openUrl(folderUrl);
|
QDesktopServices::openUrl(folderUrl);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
QDBusInterface fm1Iface(QStringLiteral("org.freedesktop.FileManager1"),
|
QDBusInterface fm1Iface(u"org.freedesktop.FileManager1"_s,
|
||||||
QStringLiteral("/org/freedesktop/FileManager1"),
|
u"/org/freedesktop/FileManager1"_s,
|
||||||
QStringLiteral("org.freedesktop.FileManager1"));
|
u"org.freedesktop.FileManager1"_s);
|
||||||
fm1Iface.setTimeout(1000);
|
fm1Iface.setTimeout(1000);
|
||||||
fm1Iface.callWithArgumentList(QDBus::Block, "ShowItems", {
|
fm1Iface.callWithArgumentList(QDBus::Block, "ShowItems", {
|
||||||
QStringList{currentFileUrl.toString()},
|
QStringList{currentFileUrl.toString()},
|
||||||
@ -882,3 +931,29 @@ 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());
|
||||||
|
}
|
||||||
|
264
app/mainwindow.h
264
app/mainwindow.h
@ -1,129 +1,135 @@
|
|||||||
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
// SPDX-FileCopyrightText: 2025 Gary Wang <git@blumia.net>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
#ifndef MAINWINDOW_H
|
#ifndef MAINWINDOW_H
|
||||||
#define MAINWINDOW_H
|
#define MAINWINDOW_H
|
||||||
|
|
||||||
#include "framelesswindow.h"
|
#include "framelesswindow.h"
|
||||||
|
|
||||||
#include <QParallelAnimationGroup>
|
#include <QParallelAnimationGroup>
|
||||||
#include <QPropertyAnimation>
|
#include <QPropertyAnimation>
|
||||||
#include <QPushButton>
|
#include <QPushButton>
|
||||||
|
|
||||||
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
QT_BEGIN_NAMESPACE
|
||||||
typedef QEnterEvent QT_ENTER_EVENT;
|
class QGraphicsOpacityEffect;
|
||||||
#else
|
class QGraphicsView;
|
||||||
typedef QEvent QT_ENTER_EVENT;
|
class QFileSystemWatcher;
|
||||||
#endif // QT_VERSION_CHECK(6, 0, 0)
|
QT_END_NAMESPACE
|
||||||
|
|
||||||
QT_BEGIN_NAMESPACE
|
class ActionManager;
|
||||||
class QGraphicsOpacityEffect;
|
class PlaylistManager;
|
||||||
class QGraphicsView;
|
class ToolButton;
|
||||||
QT_END_NAMESPACE
|
class GraphicsView;
|
||||||
|
class NavigatorView;
|
||||||
class ActionManager;
|
class BottomButtonGroup;
|
||||||
class PlaylistManager;
|
class MainWindow : public FramelessWindow
|
||||||
class ToolButton;
|
{
|
||||||
class GraphicsView;
|
Q_OBJECT
|
||||||
class NavigatorView;
|
|
||||||
class BottomButtonGroup;
|
public:
|
||||||
class MainWindow : public FramelessWindow
|
explicit MainWindow(QWidget *parent = nullptr);
|
||||||
{
|
~MainWindow() override;
|
||||||
Q_OBJECT
|
|
||||||
|
void showUrls(const QList<QUrl> &urls);
|
||||||
public:
|
void initWindowSize();
|
||||||
explicit MainWindow(QWidget *parent = nullptr);
|
void adjustWindowSizeBySceneRect();
|
||||||
~MainWindow() override;
|
QUrl currentImageFileUrl() const;
|
||||||
|
|
||||||
void showUrls(const QList<QUrl> &urls);
|
void clearGallery();
|
||||||
void initWindowSize();
|
void galleryPrev();
|
||||||
void adjustWindowSizeBySceneRect();
|
void galleryNext();
|
||||||
QUrl currentImageFileUrl() const;
|
void galleryCurrent(bool showLoadImageHintWhenEmpty, bool reloadImage);
|
||||||
|
|
||||||
void clearGallery();
|
static QStringList supportedImageFormats();
|
||||||
void galleryPrev();
|
|
||||||
void galleryNext();
|
protected slots:
|
||||||
void galleryCurrent(bool showLoadImageHintWhenEmpty, bool reloadImage);
|
void showEvent(QShowEvent *event) override;
|
||||||
|
void enterEvent(QEnterEvent *event) override;
|
||||||
static QStringList supportedImageFormats();
|
void leaveEvent(QEvent *event) override;
|
||||||
|
void mousePressEvent(QMouseEvent *event) override;
|
||||||
protected slots:
|
void mouseMoveEvent(QMouseEvent *event) override;
|
||||||
void showEvent(QShowEvent *event) override;
|
void mouseReleaseEvent(QMouseEvent *event) override;
|
||||||
void enterEvent(QT_ENTER_EVENT *event) override;
|
void mouseDoubleClickEvent(QMouseEvent *event) override;
|
||||||
void leaveEvent(QEvent *event) override;
|
void wheelEvent(QWheelEvent *event) override;
|
||||||
void mousePressEvent(QMouseEvent *event) override;
|
void resizeEvent(QResizeEvent *event) override;
|
||||||
void mouseMoveEvent(QMouseEvent *event) override;
|
void contextMenuEvent(QContextMenuEvent *event) override;
|
||||||
void mouseReleaseEvent(QMouseEvent *event) override;
|
void dragEnterEvent(QDragEnterEvent *event) override;
|
||||||
void mouseDoubleClickEvent(QMouseEvent *event) override;
|
void dragMoveEvent(QDragMoveEvent *event) override;
|
||||||
void wheelEvent(QWheelEvent *event) override;
|
void dropEvent(QDropEvent *event) override;
|
||||||
void resizeEvent(QResizeEvent *event) override;
|
|
||||||
void contextMenuEvent(QContextMenuEvent *event) override;
|
void centerWindow();
|
||||||
void dragEnterEvent(QDragEnterEvent *event) override;
|
void closeWindow();
|
||||||
void dragMoveEvent(QDragMoveEvent *event) override;
|
void updateWidgetsPosition();
|
||||||
void dropEvent(QDropEvent *event) override;
|
void toggleProtectedMode();
|
||||||
|
void toggleStayOnTop();
|
||||||
void centerWindow();
|
void toggleAvoidResetTransform();
|
||||||
void closeWindow();
|
bool stayOnTop() const;
|
||||||
void updateWidgetsPosition();
|
bool canPaste() const;
|
||||||
void toggleProtectedMode();
|
void quitAppAction(bool force = false);
|
||||||
void toggleStayOnTop();
|
void toggleFullscreen();
|
||||||
void toggleAvoidResetTransform();
|
void toggleMaximize();
|
||||||
bool stayOnTop() const;
|
|
||||||
bool canPaste() const;
|
protected:
|
||||||
void quitAppAction(bool force = false);
|
QSize sizeHint() const override;
|
||||||
void toggleFullscreen();
|
|
||||||
void toggleMaximize();
|
private slots:
|
||||||
|
void on_actionOpen_triggered();
|
||||||
protected:
|
|
||||||
QSize sizeHint() const override;
|
void on_actionActualSize_triggered();
|
||||||
|
void on_actionToggleMaximize_triggered();
|
||||||
private slots:
|
void on_actionZoomIn_triggered();
|
||||||
void on_actionOpen_triggered();
|
void on_actionZoomOut_triggered();
|
||||||
|
void on_actionToggleCheckerboard_triggered();
|
||||||
void on_actionActualSize_triggered();
|
void on_actionRotateClockwise_triggered();
|
||||||
void on_actionToggleMaximize_triggered();
|
void on_actionRotateCounterClockwise_triggered();
|
||||||
void on_actionZoomIn_triggered();
|
|
||||||
void on_actionZoomOut_triggered();
|
void on_actionPrevPicture_triggered();
|
||||||
void on_actionToggleCheckerboard_triggered();
|
void on_actionNextPicture_triggered();
|
||||||
void on_actionRotateClockwise_triggered();
|
|
||||||
void on_actionRotateCounterClockwise_triggered();
|
void on_actionTogglePauseAnimation_triggered();
|
||||||
|
void on_actionAnimationNextFrame_triggered();
|
||||||
void on_actionPrevPicture_triggered();
|
|
||||||
void on_actionNextPicture_triggered();
|
void on_actionHorizontalFlip_triggered();
|
||||||
|
void on_actionFitInView_triggered();
|
||||||
void on_actionHorizontalFlip_triggered();
|
void on_actionFitByWidth_triggered();
|
||||||
void on_actionFitInView_triggered();
|
void on_actionFitLongImage_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_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();
|
void on_actionSettings_triggered();
|
||||||
void on_actionSettings_triggered();
|
void on_actionHelp_triggered();
|
||||||
void on_actionHelp_triggered();
|
void on_actionProperties_triggered();
|
||||||
void on_actionProperties_triggered();
|
void on_actionLocateInFileManager_triggered();
|
||||||
void on_actionLocateInFileManager_triggered();
|
void on_actionQuitApp_triggered();
|
||||||
void on_actionQuitApp_triggered();
|
|
||||||
|
void doCloseWindow();
|
||||||
private:
|
|
||||||
ActionManager *m_am;
|
private:
|
||||||
PlaylistManager *m_pm;
|
bool updateFileWatcher(const QString & basePath = QString());
|
||||||
|
void updateGalleryButtonsVisibility();
|
||||||
QPoint m_oldMousePos;
|
|
||||||
QPropertyAnimation *m_fadeOutAnimation;
|
private:
|
||||||
QPropertyAnimation *m_floatUpAnimation;
|
ActionManager *m_am;
|
||||||
QParallelAnimationGroup *m_exitAnimationGroup;
|
PlaylistManager *m_pm;
|
||||||
ToolButton *m_closeButton;
|
|
||||||
ToolButton *m_prevButton;
|
QPoint m_oldMousePos;
|
||||||
ToolButton *m_nextButton;
|
QPropertyAnimation *m_fadeOutAnimation;
|
||||||
GraphicsView *m_graphicsView;
|
QPropertyAnimation *m_floatUpAnimation;
|
||||||
NavigatorView *m_gv;
|
QParallelAnimationGroup *m_exitAnimationGroup;
|
||||||
BottomButtonGroup *m_bottomButtonGroup;
|
QFileSystemWatcher *m_fileSystemWatcher;
|
||||||
bool m_protectedMode = false;
|
ToolButton *m_closeButton;
|
||||||
bool m_clickedOnWindow = false;
|
ToolButton *m_prevButton;
|
||||||
};
|
ToolButton *m_nextButton;
|
||||||
|
GraphicsView *m_graphicsView;
|
||||||
#endif // MAINWINDOW_H
|
NavigatorView *m_gv;
|
||||||
|
BottomButtonGroup *m_bottomButtonGroup;
|
||||||
|
bool m_protectedMode = false;
|
||||||
|
bool m_clickedOnWindow = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // MAINWINDOW_H
|
||||||
|
@ -1,110 +1,110 @@
|
|||||||
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
#include "metadatadialog.h"
|
#include "metadatadialog.h"
|
||||||
|
|
||||||
#include <QDialogButtonBox>
|
#include <QDialogButtonBox>
|
||||||
#include <QPainter>
|
#include <QPainter>
|
||||||
#include <QStyledItemDelegate>
|
#include <QStyledItemDelegate>
|
||||||
#include <QTreeView>
|
#include <QTreeView>
|
||||||
#include <QVBoxLayout>
|
#include <QVBoxLayout>
|
||||||
#include <QHeaderView>
|
#include <QHeaderView>
|
||||||
|
|
||||||
#include "metadatamodel.h"
|
#include "metadatamodel.h"
|
||||||
|
|
||||||
class PropertyTreeView : public QTreeView
|
class PropertyTreeView : public QTreeView
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit PropertyTreeView(QWidget* parent) : QTreeView(parent) {}
|
explicit PropertyTreeView(QWidget* parent) : QTreeView(parent) {}
|
||||||
~PropertyTreeView() {}
|
~PropertyTreeView() {}
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void rowsInserted(const QModelIndex& parent, int start, int end) override
|
void rowsInserted(const QModelIndex& parent, int start, int end) override
|
||||||
{
|
{
|
||||||
QTreeView::rowsInserted(parent, start, end);
|
QTreeView::rowsInserted(parent, start, end);
|
||||||
if (!parent.isValid()) {
|
if (!parent.isValid()) {
|
||||||
// we are inserting a section group
|
// we are inserting a section group
|
||||||
for (int row = start; row <= end; ++row) {
|
for (int row = start; row <= end; ++row) {
|
||||||
setupSection(row);
|
setupSection(row);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// we are inserting a property
|
// we are inserting a property
|
||||||
setRowHidden(parent.row(), QModelIndex(), false);
|
setRowHidden(parent.row(), QModelIndex(), false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void reset() override
|
void reset() override
|
||||||
{
|
{
|
||||||
QTreeView::reset();
|
QTreeView::reset();
|
||||||
if (model()) {
|
if (model()) {
|
||||||
for (int row = 0; row < model()->rowCount(); ++row) {
|
for (int row = 0; row < model()->rowCount(); ++row) {
|
||||||
setupSection(row);
|
setupSection(row);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void setupSection(int row)
|
void setupSection(int row)
|
||||||
{
|
{
|
||||||
expand(model()->index(row, 0));
|
expand(model()->index(row, 0));
|
||||||
setFirstColumnSpanned(row, QModelIndex(), true);
|
setFirstColumnSpanned(row, QModelIndex(), true);
|
||||||
setRowHidden(row, QModelIndex(), !model()->hasChildren(model()->index(row, 0)));
|
setRowHidden(row, QModelIndex(), !model()->hasChildren(model()->index(row, 0)));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
class PropertyTreeItemDelegate : public QStyledItemDelegate
|
class PropertyTreeItemDelegate : public QStyledItemDelegate
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
PropertyTreeItemDelegate(QObject* parent)
|
PropertyTreeItemDelegate(QObject* parent)
|
||||||
: QStyledItemDelegate(parent)
|
: QStyledItemDelegate(parent)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const override
|
void paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const override
|
||||||
{
|
{
|
||||||
QStyleOptionViewItem opt = option;
|
QStyleOptionViewItem opt = option;
|
||||||
if (!index.parent().isValid()) {
|
if (!index.parent().isValid()) {
|
||||||
opt.font.setBold(true);
|
opt.font.setBold(true);
|
||||||
opt.features.setFlag(QStyleOptionViewItem::Alternate);
|
opt.features.setFlag(QStyleOptionViewItem::Alternate);
|
||||||
}
|
}
|
||||||
QStyledItemDelegate::paint(painter, opt, index);
|
QStyledItemDelegate::paint(painter, opt, index);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
MetadataDialog::MetadataDialog(QWidget *parent)
|
MetadataDialog::MetadataDialog(QWidget *parent)
|
||||||
: QDialog(parent)
|
: QDialog(parent)
|
||||||
, m_treeView(new PropertyTreeView(this))
|
, m_treeView(new PropertyTreeView(this))
|
||||||
{
|
{
|
||||||
m_treeView->setRootIsDecorated(false);
|
m_treeView->setRootIsDecorated(false);
|
||||||
m_treeView->setIndentation(0);
|
m_treeView->setIndentation(0);
|
||||||
m_treeView->setItemDelegate(new PropertyTreeItemDelegate(m_treeView));
|
m_treeView->setItemDelegate(new PropertyTreeItemDelegate(m_treeView));
|
||||||
m_treeView->header()->resizeSection(0, sizeHint().width() / 2);
|
m_treeView->header()->resizeSection(0, sizeHint().width() / 2);
|
||||||
|
|
||||||
setWindowTitle(tr("Image Metadata"));
|
setWindowTitle(tr("Image Metadata"));
|
||||||
|
|
||||||
QDialogButtonBox * buttonBox = new QDialogButtonBox(QDialogButtonBox::Close);
|
QDialogButtonBox * buttonBox = new QDialogButtonBox(QDialogButtonBox::Close);
|
||||||
|
|
||||||
setLayout(new QVBoxLayout);
|
setLayout(new QVBoxLayout);
|
||||||
layout()->addWidget(m_treeView);
|
layout()->addWidget(m_treeView);
|
||||||
layout()->addWidget(buttonBox);
|
layout()->addWidget(buttonBox);
|
||||||
|
|
||||||
connect(buttonBox, &QDialogButtonBox::rejected, this, &QDialog::close);
|
connect(buttonBox, &QDialogButtonBox::rejected, this, &QDialog::close);
|
||||||
|
|
||||||
setWindowFlag(Qt::WindowContextHelpButtonHint, false);
|
setWindowFlag(Qt::WindowContextHelpButtonHint, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
MetadataDialog::~MetadataDialog()
|
MetadataDialog::~MetadataDialog()
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void MetadataDialog::setMetadataModel(MetadataModel * model)
|
void MetadataDialog::setMetadataModel(MetadataModel * model)
|
||||||
{
|
{
|
||||||
m_treeView->setModel(model);
|
m_treeView->setModel(model);
|
||||||
}
|
}
|
||||||
|
|
||||||
QSize MetadataDialog::sizeHint() const
|
QSize MetadataDialog::sizeHint() const
|
||||||
{
|
{
|
||||||
return QSize(520, 350);
|
return QSize(520, 350);
|
||||||
}
|
}
|
||||||
|
@ -1,30 +1,30 @@
|
|||||||
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
#ifndef METADATADIALOG_H
|
#ifndef METADATADIALOG_H
|
||||||
#define METADATADIALOG_H
|
#define METADATADIALOG_H
|
||||||
|
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
|
||||||
QT_BEGIN_NAMESPACE
|
QT_BEGIN_NAMESPACE
|
||||||
class QTreeView;
|
class QTreeView;
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|
||||||
class MetadataModel;
|
class MetadataModel;
|
||||||
class MetadataDialog : public QDialog
|
class MetadataDialog : public QDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
explicit MetadataDialog(QWidget * parent);
|
explicit MetadataDialog(QWidget * parent);
|
||||||
~MetadataDialog() override;
|
~MetadataDialog() override;
|
||||||
|
|
||||||
void setMetadataModel(MetadataModel * model);
|
void setMetadataModel(MetadataModel * model);
|
||||||
|
|
||||||
QSize sizeHint() const override;
|
QSize sizeHint() const override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
QTreeView * m_treeView = nullptr;
|
QTreeView * m_treeView = nullptr;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // METADATADIALOG_H
|
#endif // METADATADIALOG_H
|
||||||
|
@ -1,318 +1,320 @@
|
|||||||
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
#include "metadatamodel.h"
|
#include "metadatamodel.h"
|
||||||
#include "exiv2wrapper.h"
|
#include "exiv2wrapper.h"
|
||||||
|
|
||||||
#include <QDir>
|
#include <QDir>
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
#include <QDateTime>
|
#include <QDateTime>
|
||||||
#include <QFileInfo>
|
#include <QFileInfo>
|
||||||
#include <QImageReader>
|
#include <QImageReader>
|
||||||
|
|
||||||
MetadataModel::MetadataModel(QObject *parent)
|
using namespace Qt::Literals::StringLiterals;
|
||||||
: QAbstractItemModel(parent)
|
|
||||||
{
|
MetadataModel::MetadataModel(QObject *parent)
|
||||||
|
: QAbstractItemModel(parent)
|
||||||
}
|
{
|
||||||
|
|
||||||
MetadataModel::~MetadataModel()
|
}
|
||||||
{
|
|
||||||
|
MetadataModel::~MetadataModel()
|
||||||
}
|
{
|
||||||
|
|
||||||
void MetadataModel::setFile(const QString &imageFilePath)
|
}
|
||||||
{
|
|
||||||
QFileInfo fileInfo(imageFilePath);
|
void MetadataModel::setFile(const QString &imageFilePath)
|
||||||
// It'll be fine if we don't re-use the image reader we pass to the graphics scene for now.
|
{
|
||||||
QImageReader imgReader(imageFilePath);
|
QFileInfo fileInfo(imageFilePath);
|
||||||
imgReader.setAutoTransform(true);
|
// It'll be fine if we don't re-use the image reader we pass to the graphics scene for now.
|
||||||
imgReader.setDecideFormatFromContent(true);
|
QImageReader imgReader(imageFilePath);
|
||||||
|
imgReader.setAutoTransform(true);
|
||||||
const QString & itemTypeString = tr("%1 File").arg(QString(imgReader.format().toUpper()));
|
imgReader.setDecideFormatFromContent(true);
|
||||||
const QString & sizeString = QLocale().formattedDataSize(fileInfo.size());
|
|
||||||
const QString & birthTimeString = QLocale().toString(fileInfo.birthTime(), QLocale::LongFormat);
|
const QString & itemTypeString = tr("%1 File").arg(QString(imgReader.format().toUpper()));
|
||||||
const QString & lastModifiedTimeString = QLocale().toString(fileInfo.lastModified(), QLocale::LongFormat);
|
const QString & sizeString = QLocale().formattedDataSize(fileInfo.size());
|
||||||
const QString & imageDimensionsString = imageSize(imgReader.size());
|
const QString & birthTimeString = QLocale().toString(fileInfo.birthTime(), QLocale::LongFormat);
|
||||||
const QString & imageRatioString = imageSizeRatio(imgReader.size());
|
const QString & lastModifiedTimeString = QLocale().toString(fileInfo.lastModified(), QLocale::LongFormat);
|
||||||
|
const QString & imageDimensionsString = imageSize(imgReader.size());
|
||||||
appendSection(QStringLiteral("Description"), tr("Description", "Section name."));
|
const QString & imageRatioString = imageSizeRatio(imgReader.size());
|
||||||
appendSection(QStringLiteral("Origin"), tr("Origin", "Section name."));
|
|
||||||
appendSection(QStringLiteral("Image"), tr("Image", "Section name."));
|
appendSection(u"Description"_s, tr("Description", "Section name."));
|
||||||
appendSection(QStringLiteral("Camera"), tr("Camera", "Section name."));
|
appendSection(u"Origin"_s, tr("Origin", "Section name."));
|
||||||
appendSection(QStringLiteral("AdvancedPhoto"), tr("Advanced photo", "Section name."));
|
appendSection(u"Image"_s, tr("Image", "Section name."));
|
||||||
appendSection(QStringLiteral("GPS"), tr("GPS", "Section name."));
|
appendSection(u"Camera"_s, tr("Camera", "Section name."));
|
||||||
appendSection(QStringLiteral("File"), tr("File", "Section name."));
|
appendSection(u"AdvancedPhoto"_s, tr("Advanced photo", "Section name."));
|
||||||
|
appendSection(u"GPS"_s, tr("GPS", "Section name."));
|
||||||
if (imgReader.supportsOption(QImageIOHandler::Size)) {
|
appendSection(u"File"_s, tr("File", "Section name."));
|
||||||
appendProperty(QStringLiteral("Image"), QStringLiteral("Image.Dimensions"),
|
|
||||||
tr("Dimensions"), imageDimensionsString);
|
if (imgReader.supportsOption(QImageIOHandler::Size)) {
|
||||||
appendProperty(QStringLiteral("Image"), QStringLiteral("Image.SizeRatio"),
|
appendProperty(u"Image"_s, u"Image.Dimensions"_s,
|
||||||
tr("Aspect ratio"), imageRatioString);
|
tr("Dimensions"), imageDimensionsString);
|
||||||
}
|
appendProperty(u"Image"_s, u"Image.SizeRatio"_s,
|
||||||
if (imgReader.supportsAnimation() && imgReader.imageCount() > 1) {
|
tr("Aspect ratio"), imageRatioString);
|
||||||
appendProperty(QStringLiteral("Image"), QStringLiteral("Image.FrameCount"),
|
}
|
||||||
tr("Frame count"), QString::number(imgReader.imageCount()));
|
if (imgReader.supportsAnimation() && imgReader.imageCount() > 1) {
|
||||||
}
|
appendProperty(u"Image"_s, u"Image.FrameCount"_s,
|
||||||
|
tr("Frame count"), QString::number(imgReader.imageCount()));
|
||||||
appendProperty(QStringLiteral("File"), QStringLiteral("File.Name"),
|
}
|
||||||
tr("Name"), fileInfo.fileName());
|
|
||||||
appendProperty(QStringLiteral("File"), QStringLiteral("File.ItemType"),
|
appendProperty(u"File"_s, u"File.Name"_s,
|
||||||
tr("Item type"), itemTypeString);
|
tr("Name"), fileInfo.fileName());
|
||||||
appendProperty(QStringLiteral("File"), QStringLiteral("File.Path"),
|
appendProperty(u"File"_s, u"File.ItemType"_s,
|
||||||
tr("Folder path"), QDir::toNativeSeparators(fileInfo.path()));
|
tr("Item type"), itemTypeString);
|
||||||
appendProperty(QStringLiteral("File"), QStringLiteral("File.Size"),
|
appendProperty(u"File"_s, u"File.Path"_s,
|
||||||
tr("Size"), sizeString);
|
tr("Folder path"), QDir::toNativeSeparators(fileInfo.path()));
|
||||||
appendProperty(QStringLiteral("File"), QStringLiteral("File.CreatedTime"),
|
appendProperty(u"File"_s, u"File.Size"_s,
|
||||||
tr("Date created"), birthTimeString);
|
tr("Size"), sizeString);
|
||||||
appendProperty(QStringLiteral("File"), QStringLiteral("File.LastModified"),
|
appendProperty(u"File"_s, u"File.CreatedTime"_s,
|
||||||
tr("Date modified"), lastModifiedTimeString);
|
tr("Date created"), birthTimeString);
|
||||||
|
appendProperty(u"File"_s, u"File.LastModified"_s,
|
||||||
Exiv2Wrapper wrapper;
|
tr("Date modified"), lastModifiedTimeString);
|
||||||
if (wrapper.load(imageFilePath)) {
|
|
||||||
wrapper.cacheSections();
|
Exiv2Wrapper wrapper;
|
||||||
|
if (wrapper.load(imageFilePath)) {
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("Description"),
|
wrapper.cacheSections();
|
||||||
QStringLiteral("Xmp.dc.title"), tr("Title"), true);
|
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("Description"),
|
appendExivPropertyIfExist(wrapper, u"Description"_s,
|
||||||
QStringLiteral("Exif.Image.ImageDescription"), tr("Subject"), true);
|
u"Xmp.dc.title"_s, tr("Title"), true);
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("Description"),
|
appendExivPropertyIfExist(wrapper, u"Description"_s,
|
||||||
QStringLiteral("Exif.Image.Rating"), tr("Rating"));
|
u"Exif.Image.ImageDescription"_s, tr("Subject"), true);
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("Description"),
|
appendExivPropertyIfExist(wrapper, u"Description"_s,
|
||||||
QStringLiteral("Xmp.dc.subject"), tr("Tags"));
|
u"Exif.Image.Rating"_s, tr("Rating"));
|
||||||
appendPropertyIfNotEmpty(QStringLiteral("Description"), QStringLiteral("Description.Comments"),
|
appendExivPropertyIfExist(wrapper, u"Description"_s,
|
||||||
tr("Comments"), wrapper.comment());
|
u"Xmp.dc.subject"_s, tr("Tags"));
|
||||||
|
appendPropertyIfNotEmpty(u"Description"_s, u"Description.Comments"_s,
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("Origin"),
|
tr("Comments"), wrapper.comment());
|
||||||
QStringLiteral("Exif.Image.Artist"), tr("Authors"));
|
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("Origin"),
|
appendExivPropertyIfExist(wrapper, u"Origin"_s,
|
||||||
QStringLiteral("Exif.Photo.DateTimeOriginal"), tr("Date taken"));
|
u"Exif.Image.Artist"_s, tr("Authors"));
|
||||||
// FIXME: We may fetch the same type of metadata from different metadata collection.
|
appendExivPropertyIfExist(wrapper, u"Origin"_s,
|
||||||
// Current implementation is not pretty and may need to do a rework...
|
u"Exif.Photo.DateTimeOriginal"_s, tr("Date taken"));
|
||||||
// appendExivPropertyIfExist(wrapper, QStringLiteral("Origin"),
|
// FIXME: We may fetch the same type of metadata from different metadata collection.
|
||||||
// QStringLiteral("Xmp.xmp.CreatorTool"), tr("Program name"));
|
// Current implementation is not pretty and may need to do a rework...
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("Origin"),
|
// appendExivPropertyIfExist(wrapper, QStringLiteral("Origin"),
|
||||||
QStringLiteral("Exif.Image.Software"), tr("Program name"));
|
// QStringLiteral("Xmp.xmp.CreatorTool"), tr("Program name"));
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("Origin"),
|
appendExivPropertyIfExist(wrapper, u"Origin"_s,
|
||||||
QStringLiteral("Exif.Image.Copyright"), tr("Copyright"));
|
u"Exif.Image.Software"_s, tr("Program name"));
|
||||||
|
appendExivPropertyIfExist(wrapper, u"Origin"_s,
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("Image"),
|
u"Exif.Image.Copyright"_s, tr("Copyright"));
|
||||||
QStringLiteral("Exif.Image.XResolution"), tr("Horizontal resolution"));
|
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("Image"),
|
appendExivPropertyIfExist(wrapper, u"Image"_s,
|
||||||
QStringLiteral("Exif.Image.YResolution"), tr("Vertical resolution"));
|
u"Exif.Image.XResolution"_s, tr("Horizontal resolution"));
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("Image"),
|
appendExivPropertyIfExist(wrapper, u"Image"_s,
|
||||||
QStringLiteral("Exif.Image.ResolutionUnit"), tr("Resolution unit"));
|
u"Exif.Image.YResolution"_s, tr("Vertical resolution"));
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("Image"),
|
appendExivPropertyIfExist(wrapper, u"Image"_s,
|
||||||
QStringLiteral("Exif.Photo.ColorSpace"), tr("Colour representation"));
|
u"Exif.Image.ResolutionUnit"_s, tr("Resolution unit"));
|
||||||
|
appendExivPropertyIfExist(wrapper, u"Image"_s,
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("Camera"),
|
u"Exif.Photo.ColorSpace"_s, tr("Colour representation"));
|
||||||
QStringLiteral("Exif.Image.Make"), tr("Camera maker"));
|
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("Camera"),
|
appendExivPropertyIfExist(wrapper, u"Camera"_s,
|
||||||
QStringLiteral("Exif.Image.Model"), tr("Camera model"));
|
u"Exif.Image.Make"_s, tr("Camera maker"));
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("Camera"),
|
appendExivPropertyIfExist(wrapper, u"Camera"_s,
|
||||||
QStringLiteral("Exif.Photo.FNumber"), tr("F-stop"));
|
u"Exif.Image.Model"_s, tr("Camera model"));
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("Camera"),
|
appendExivPropertyIfExist(wrapper, u"Camera"_s,
|
||||||
QStringLiteral("Exif.Photo.ExposureTime"), tr("Exposure time"));
|
u"Exif.Photo.FNumber"_s, tr("F-stop"));
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("Camera"),
|
appendExivPropertyIfExist(wrapper, u"Camera"_s,
|
||||||
QStringLiteral("Exif.Photo.ISOSpeedRatings"), tr("ISO speed"));
|
u"Exif.Photo.ExposureTime"_s, tr("Exposure time"));
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("Camera"),
|
appendExivPropertyIfExist(wrapper, u"Camera"_s,
|
||||||
QStringLiteral("Exif.Photo.ExposureBiasValue"), tr("Exposure bias"));
|
u"Exif.Photo.ISOSpeedRatings"_s, tr("ISO speed"));
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("Camera"),
|
appendExivPropertyIfExist(wrapper, u"Camera"_s,
|
||||||
QStringLiteral("Exif.Photo.FocalLength"), tr("Focal length"));
|
u"Exif.Photo.ExposureBiasValue"_s, tr("Exposure bias"));
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("Camera"),
|
appendExivPropertyIfExist(wrapper, u"Camera"_s,
|
||||||
QStringLiteral("Exif.Photo.MaxApertureValue"), tr("Max aperture"));
|
u"Exif.Photo.FocalLength"_s, tr("Focal length"));
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("Camera"),
|
appendExivPropertyIfExist(wrapper, u"Camera"_s,
|
||||||
QStringLiteral("Exif.Photo.MeteringMode"), tr("Metering mode"));
|
u"Exif.Photo.MaxApertureValue"_s, tr("Max aperture"));
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("Camera"),
|
appendExivPropertyIfExist(wrapper, u"Camera"_s,
|
||||||
QStringLiteral("Exif.Photo.SubjectDistance"), tr("Subject distance"));
|
u"Exif.Photo.MeteringMode"_s, tr("Metering mode"));
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("Camera"),
|
appendExivPropertyIfExist(wrapper, u"Camera"_s,
|
||||||
QStringLiteral("Exif.Photo.Flash"), tr("Flash mode"));
|
u"Exif.Photo.SubjectDistance"_s, tr("Subject distance"));
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("Camera"),
|
appendExivPropertyIfExist(wrapper, u"Camera"_s,
|
||||||
QStringLiteral("Exif.Photo.FocalLengthIn35mmFilm"), tr("35mm focal length"));
|
u"Exif.Photo.Flash"_s, tr("Flash mode"));
|
||||||
|
appendExivPropertyIfExist(wrapper, u"Camera"_s,
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("AdvancedPhoto"),
|
u"Exif.Photo.FocalLengthIn35mmFilm"_s, tr("35mm focal length"));
|
||||||
QStringLiteral("Exif.Photo.LensModel"), tr("Lens model"));
|
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("AdvancedPhoto"),
|
appendExivPropertyIfExist(wrapper, u"AdvancedPhoto"_s,
|
||||||
QStringLiteral("Exif.Photo.Contrast"), tr("Contrast"));
|
u"Exif.Photo.LensModel"_s, tr("Lens model"));
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("AdvancedPhoto"),
|
appendExivPropertyIfExist(wrapper, u"AdvancedPhoto"_s,
|
||||||
QStringLiteral("Exif.Photo.BrightnessValue"), tr("Brightness"));
|
u"Exif.Photo.Contrast"_s, tr("Contrast"));
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("AdvancedPhoto"),
|
appendExivPropertyIfExist(wrapper, u"AdvancedPhoto"_s,
|
||||||
QStringLiteral("Exif.Photo.ExposureProgram"), tr("Exposure program"));
|
u"Exif.Photo.BrightnessValue"_s, tr("Brightness"));
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("AdvancedPhoto"),
|
appendExivPropertyIfExist(wrapper, u"AdvancedPhoto"_s,
|
||||||
QStringLiteral("Exif.Photo.Saturation"), tr("Saturation"));
|
u"Exif.Photo.ExposureProgram"_s, tr("Exposure program"));
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("AdvancedPhoto"),
|
appendExivPropertyIfExist(wrapper, u"AdvancedPhoto"_s,
|
||||||
QStringLiteral("Exif.Photo.Sharpness"), tr("Sharpness"));
|
u"Exif.Photo.Saturation"_s, tr("Saturation"));
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("AdvancedPhoto"),
|
appendExivPropertyIfExist(wrapper, u"AdvancedPhoto"_s,
|
||||||
QStringLiteral("Exif.Photo.WhiteBalance"), tr("White balance"));
|
u"Exif.Photo.Sharpness"_s, tr("Sharpness"));
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("AdvancedPhoto"),
|
appendExivPropertyIfExist(wrapper, u"AdvancedPhoto"_s,
|
||||||
QStringLiteral("Exif.Photo.DigitalZoomRatio"), tr("Digital zoom"));
|
u"Exif.Photo.WhiteBalance"_s, tr("White balance"));
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("AdvancedPhoto"),
|
appendExivPropertyIfExist(wrapper, u"AdvancedPhoto"_s,
|
||||||
QStringLiteral("Exif.Photo.ExifVersion"), tr("EXIF version"));
|
u"Exif.Photo.DigitalZoomRatio"_s, tr("Digital zoom"));
|
||||||
|
appendExivPropertyIfExist(wrapper, u"AdvancedPhoto"_s,
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("GPS"),
|
u"Exif.Photo.ExifVersion"_s, tr("EXIF version"));
|
||||||
QStringLiteral("Exif.GPSInfo.GPSLatitudeRef"), tr("Latitude reference"));
|
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("GPS"),
|
appendExivPropertyIfExist(wrapper, u"GPS"_s,
|
||||||
QStringLiteral("Exif.GPSInfo.GPSLatitude"), tr("Latitude"));
|
u"Exif.GPSInfo.GPSLatitudeRef"_s, tr("Latitude reference"));
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("GPS"),
|
appendExivPropertyIfExist(wrapper, u"GPS"_s,
|
||||||
QStringLiteral("Exif.GPSInfo.GPSLongitudeRef"), tr("Longitude reference"));
|
u"Exif.GPSInfo.GPSLatitude"_s, tr("Latitude"));
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("GPS"),
|
appendExivPropertyIfExist(wrapper, u"GPS"_s,
|
||||||
QStringLiteral("Exif.GPSInfo.GPSLongitude"), tr("Longitude"));
|
u"Exif.GPSInfo.GPSLongitudeRef"_s, tr("Longitude reference"));
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("GPS"),
|
appendExivPropertyIfExist(wrapper, u"GPS"_s,
|
||||||
QStringLiteral("Exif.GPSInfo.GPSAltitudeRef"), tr("Altitude reference"));
|
u"Exif.GPSInfo.GPSLongitude"_s, tr("Longitude"));
|
||||||
appendExivPropertyIfExist(wrapper, QStringLiteral("GPS"),
|
appendExivPropertyIfExist(wrapper, u"GPS"_s,
|
||||||
QStringLiteral("Exif.GPSInfo.GPSAltitude"), tr("Altitude"));
|
u"Exif.GPSInfo.GPSAltitudeRef"_s, tr("Altitude reference"));
|
||||||
|
appendExivPropertyIfExist(wrapper, u"GPS"_s,
|
||||||
}
|
u"Exif.GPSInfo.GPSAltitude"_s, tr("Altitude"));
|
||||||
}
|
|
||||||
|
}
|
||||||
QString MetadataModel::imageSize(const QSize &size)
|
}
|
||||||
{
|
|
||||||
QString imageSize;
|
QString MetadataModel::imageSize(const QSize &size)
|
||||||
|
{
|
||||||
if (size.isValid()) {
|
QString imageSize;
|
||||||
imageSize = tr("%1 x %2").arg(QString::number(size.width()), QString::number(size.height()));
|
|
||||||
} else {
|
if (size.isValid()) {
|
||||||
imageSize = QLatin1Char('-');
|
imageSize = tr("%1 x %2").arg(QString::number(size.width()), QString::number(size.height()));
|
||||||
}
|
} else {
|
||||||
|
imageSize = QLatin1Char('-');
|
||||||
return imageSize;
|
}
|
||||||
}
|
|
||||||
|
return imageSize;
|
||||||
int simplegcd(int a, int b) {
|
}
|
||||||
return b == 0 ? a : simplegcd(b, a % b);
|
|
||||||
}
|
int simplegcd(int a, int b) {
|
||||||
|
return b == 0 ? a : simplegcd(b, a % b);
|
||||||
QString MetadataModel::imageSizeRatio(const QSize &size)
|
}
|
||||||
{
|
|
||||||
if (!size.isValid()) {
|
QString MetadataModel::imageSizeRatio(const QSize &size)
|
||||||
return QStringLiteral("-");
|
{
|
||||||
}
|
if (!size.isValid()) {
|
||||||
int gcd = simplegcd(size.width(), size.height());
|
return QStringLiteral("-");
|
||||||
return tr("%1 : %2").arg(QString::number(size.width() / gcd), QString::number(size.height() / gcd));
|
}
|
||||||
}
|
int gcd = simplegcd(size.width(), size.height());
|
||||||
|
return tr("%1 : %2").arg(QString::number(size.width() / gcd), QString::number(size.height() / gcd));
|
||||||
bool MetadataModel::appendSection(const QString §ionKey, QStringView sectionDisplayName)
|
}
|
||||||
{
|
|
||||||
if (m_sections.contains(sectionKey)) {
|
bool MetadataModel::appendSection(const QString §ionKey, QStringView sectionDisplayName)
|
||||||
return false;
|
{
|
||||||
}
|
if (m_sections.contains(sectionKey)) {
|
||||||
|
return false;
|
||||||
m_sections.append(sectionKey);
|
}
|
||||||
m_sectionProperties[sectionKey] = qMakePair<QString, QList<QString> >(sectionDisplayName.toString(), {});
|
|
||||||
|
m_sections.append(sectionKey);
|
||||||
return true;
|
m_sectionProperties[sectionKey] = qMakePair<QString, QList<QString> >(sectionDisplayName.toString(), {});
|
||||||
}
|
|
||||||
|
return true;
|
||||||
bool MetadataModel::appendPropertyIfNotEmpty(const QString §ionKey, const QString &propertyKey, const QString &propertyDisplayName, const QString &propertyValue)
|
}
|
||||||
{
|
|
||||||
if (propertyValue.isEmpty()) return false;
|
bool MetadataModel::appendPropertyIfNotEmpty(const QString §ionKey, const QString &propertyKey, const QString &propertyDisplayName, const QString &propertyValue)
|
||||||
|
{
|
||||||
return appendProperty(sectionKey, propertyKey, propertyDisplayName, propertyValue);
|
if (propertyValue.isEmpty()) return false;
|
||||||
}
|
|
||||||
|
return appendProperty(sectionKey, propertyKey, propertyDisplayName, propertyValue);
|
||||||
bool MetadataModel::appendProperty(const QString §ionKey, const QString &propertyKey, QStringView propertyDisplayName, QStringView propertyValue)
|
}
|
||||||
{
|
|
||||||
if (!m_sections.contains(sectionKey)) {
|
bool MetadataModel::appendProperty(const QString §ionKey, const QString &propertyKey, QStringView propertyDisplayName, QStringView propertyValue)
|
||||||
return false;
|
{
|
||||||
}
|
if (!m_sections.contains(sectionKey)) {
|
||||||
|
return false;
|
||||||
QList<QString> & propertyList = m_sectionProperties[sectionKey].second;
|
}
|
||||||
if (!propertyList.contains(propertyKey)) {
|
|
||||||
propertyList.append(propertyKey);
|
QList<QString> & propertyList = m_sectionProperties[sectionKey].second;
|
||||||
}
|
if (!propertyList.contains(propertyKey)) {
|
||||||
|
propertyList.append(propertyKey);
|
||||||
m_properties[propertyKey] = qMakePair<QString, QString>(propertyDisplayName.toString(), propertyValue.toString());
|
}
|
||||||
|
|
||||||
return true;
|
m_properties[propertyKey] = qMakePair<QString, QString>(propertyDisplayName.toString(), propertyValue.toString());
|
||||||
}
|
|
||||||
|
return true;
|
||||||
bool MetadataModel::appendExivPropertyIfExist(const Exiv2Wrapper &wrapper, const QString §ionKey, const QString &exiv2propertyKey, const QString &propertyDisplayName, bool isXmpString)
|
}
|
||||||
{
|
|
||||||
const QString & value = wrapper.value(exiv2propertyKey);
|
bool MetadataModel::appendExivPropertyIfExist(const Exiv2Wrapper &wrapper, const QString §ionKey, const QString &exiv2propertyKey, const QString &propertyDisplayName, bool isXmpString)
|
||||||
if (!value.isEmpty()) {
|
{
|
||||||
appendProperty(sectionKey, exiv2propertyKey,
|
const QString & value = wrapper.value(exiv2propertyKey);
|
||||||
propertyDisplayName.isEmpty() ? wrapper.label(exiv2propertyKey) : propertyDisplayName,
|
if (!value.isEmpty()) {
|
||||||
isXmpString ? Exiv2Wrapper::XmpValue(value) : value);
|
appendProperty(sectionKey, exiv2propertyKey,
|
||||||
return true;
|
propertyDisplayName.isEmpty() ? wrapper.label(exiv2propertyKey) : propertyDisplayName,
|
||||||
}
|
isXmpString ? Exiv2Wrapper::XmpValue(value) : value);
|
||||||
return false;
|
return true;
|
||||||
}
|
}
|
||||||
|
return false;
|
||||||
QModelIndex MetadataModel::index(int row, int column, const QModelIndex &parent) const
|
}
|
||||||
{
|
|
||||||
if (!hasIndex(row, column, parent)) {
|
QModelIndex MetadataModel::index(int row, int column, const QModelIndex &parent) const
|
||||||
return QModelIndex();
|
{
|
||||||
}
|
if (!hasIndex(row, column, parent)) {
|
||||||
|
return QModelIndex();
|
||||||
if (!parent.isValid()) {
|
}
|
||||||
return createIndex(row, column, RowType::SectionRow);
|
|
||||||
} else {
|
if (!parent.isValid()) {
|
||||||
// internalid param: row means nth section it belongs to.
|
return createIndex(row, column, RowType::SectionRow);
|
||||||
return createIndex(row, column, RowType::PropertyRow + parent.row());
|
} else {
|
||||||
}
|
// internalid param: row means nth section it belongs to.
|
||||||
}
|
return createIndex(row, column, RowType::PropertyRow + parent.row());
|
||||||
|
}
|
||||||
QModelIndex MetadataModel::parent(const QModelIndex &child) const
|
}
|
||||||
{
|
|
||||||
if (!child.isValid()) {
|
QModelIndex MetadataModel::parent(const QModelIndex &child) const
|
||||||
return QModelIndex();
|
{
|
||||||
}
|
if (!child.isValid()) {
|
||||||
|
return QModelIndex();
|
||||||
if (child.internalId() == RowType::SectionRow) {
|
}
|
||||||
return QModelIndex();
|
|
||||||
} else {
|
if (child.internalId() == RowType::SectionRow) {
|
||||||
return createIndex(child.internalId() - RowType::PropertyRow, 0, SectionRow);
|
return QModelIndex();
|
||||||
}
|
} else {
|
||||||
}
|
return createIndex(child.internalId() - RowType::PropertyRow, 0, SectionRow);
|
||||||
|
}
|
||||||
int MetadataModel::rowCount(const QModelIndex &parent) const
|
}
|
||||||
{
|
|
||||||
if (!parent.isValid()) {
|
int MetadataModel::rowCount(const QModelIndex &parent) const
|
||||||
return m_sections.count();
|
{
|
||||||
}
|
if (!parent.isValid()) {
|
||||||
|
return m_sections.count();
|
||||||
if (parent.internalId() == RowType::SectionRow) {
|
}
|
||||||
const QString & sectionKey = m_sections[parent.row()];
|
|
||||||
return m_sectionProperties[sectionKey].second.count();
|
if (parent.internalId() == RowType::SectionRow) {
|
||||||
}
|
const QString & sectionKey = m_sections[parent.row()];
|
||||||
|
return m_sectionProperties[sectionKey].second.count();
|
||||||
return 0;
|
}
|
||||||
}
|
|
||||||
|
return 0;
|
||||||
int MetadataModel::columnCount(const QModelIndex &) const
|
}
|
||||||
{
|
|
||||||
// Always key(display name) and value.
|
int MetadataModel::columnCount(const QModelIndex &) const
|
||||||
return 2;
|
{
|
||||||
}
|
// Always key(display name) and value.
|
||||||
|
return 2;
|
||||||
QVariant MetadataModel::data(const QModelIndex &index, int role) const
|
}
|
||||||
{
|
|
||||||
if (!index.isValid()) {
|
QVariant MetadataModel::data(const QModelIndex &index, int role) const
|
||||||
return QVariant();
|
{
|
||||||
}
|
if (!index.isValid()) {
|
||||||
|
return QVariant();
|
||||||
if (role != Qt::DisplayRole) {
|
}
|
||||||
return QVariant();
|
|
||||||
}
|
if (role != Qt::DisplayRole) {
|
||||||
|
return QVariant();
|
||||||
if (index.internalId() == RowType::SectionRow) {
|
}
|
||||||
return (index.column() == 0) ? m_sectionProperties[m_sections[index.row()]].first
|
|
||||||
: QVariant();
|
if (index.internalId() == RowType::SectionRow) {
|
||||||
} else {
|
return (index.column() == 0) ? m_sectionProperties[m_sections[index.row()]].first
|
||||||
int sectionIndex = index.internalId() - RowType::PropertyRow;
|
: QVariant();
|
||||||
const QString & sectionKey = m_sections[sectionIndex];
|
} else {
|
||||||
const QList<QString> & propertyList = m_sectionProperties[sectionKey].second;
|
int sectionIndex = index.internalId() - RowType::PropertyRow;
|
||||||
return (index.column() == 0) ? m_properties[propertyList[index.row()]].first
|
const QString & sectionKey = m_sections[sectionIndex];
|
||||||
: m_properties[propertyList[index.row()]].second;
|
const QList<QString> & propertyList = m_sectionProperties[sectionKey].second;
|
||||||
}
|
return (index.column() == 0) ? m_properties[propertyList[index.row()]].first
|
||||||
}
|
: m_properties[propertyList[index.row()]].second;
|
||||||
|
}
|
||||||
QVariant MetadataModel::headerData(int section, Qt::Orientation orientation, int role) const
|
}
|
||||||
{
|
|
||||||
if (orientation == Qt::Vertical || role != Qt::DisplayRole) {
|
QVariant MetadataModel::headerData(int section, Qt::Orientation orientation, int role) const
|
||||||
return QVariant();
|
{
|
||||||
}
|
if (orientation == Qt::Vertical || role != Qt::DisplayRole) {
|
||||||
|
return QVariant();
|
||||||
return section == 0 ? tr("Property") : tr("Value");
|
}
|
||||||
}
|
|
||||||
|
return section == 0 ? tr("Property") : tr("Value");
|
||||||
|
}
|
||||||
|
@ -1,52 +1,52 @@
|
|||||||
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
#ifndef METADATAMODEL_H
|
#ifndef METADATAMODEL_H
|
||||||
#define METADATAMODEL_H
|
#define METADATAMODEL_H
|
||||||
|
|
||||||
#include <QAbstractItemModel>
|
#include <QAbstractItemModel>
|
||||||
|
|
||||||
class Exiv2Wrapper;
|
class Exiv2Wrapper;
|
||||||
class MetadataModel : public QAbstractItemModel
|
class MetadataModel : public QAbstractItemModel
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
explicit MetadataModel(QObject *parent = nullptr);
|
explicit MetadataModel(QObject *parent = nullptr);
|
||||||
~MetadataModel();
|
~MetadataModel();
|
||||||
|
|
||||||
void setFile(const QString & imageFilePath);
|
void setFile(const QString & imageFilePath);
|
||||||
static QString imageSize(const QSize &size);
|
static QString imageSize(const QSize &size);
|
||||||
static QString imageSizeRatio(const QSize &size);
|
static QString imageSizeRatio(const QSize &size);
|
||||||
bool appendSection(const QString & sectionKey, QStringView sectionDisplayName);
|
bool appendSection(const QString & sectionKey, QStringView sectionDisplayName);
|
||||||
bool appendPropertyIfNotEmpty(const QString & sectionKey, const QString & propertyKey,
|
bool appendPropertyIfNotEmpty(const QString & sectionKey, const QString & propertyKey,
|
||||||
const QString & propertyDisplayName, const QString & propertyValue = QString());
|
const QString & propertyDisplayName, const QString & propertyValue = QString());
|
||||||
bool appendProperty(const QString & sectionKey, const QString & propertyKey,
|
bool appendProperty(const QString & sectionKey, const QString & propertyKey,
|
||||||
QStringView propertyDisplayName, QStringView propertyValue = QString());
|
QStringView propertyDisplayName, QStringView propertyValue = QString());
|
||||||
bool appendExivPropertyIfExist(const Exiv2Wrapper & wrapper, const QString & sectionKey,
|
bool appendExivPropertyIfExist(const Exiv2Wrapper & wrapper, const QString & sectionKey,
|
||||||
const QString & exiv2propertyKey, const QString & propertyDisplayName = QString(),
|
const QString & exiv2propertyKey, const QString & propertyDisplayName = QString(),
|
||||||
bool isXmpString = false);
|
bool isXmpString = false);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
enum RowType : quintptr {
|
enum RowType : quintptr {
|
||||||
SectionRow,
|
SectionRow,
|
||||||
PropertyRow,
|
PropertyRow,
|
||||||
};
|
};
|
||||||
|
|
||||||
QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const override;
|
QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const override;
|
||||||
QModelIndex parent(const QModelIndex &child) const override;
|
QModelIndex parent(const QModelIndex &child) const override;
|
||||||
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
|
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
|
||||||
int columnCount(const QModelIndex & = QModelIndex()) const override;
|
int columnCount(const QModelIndex & = QModelIndex()) const override;
|
||||||
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
|
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
|
||||||
QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override;
|
QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override;
|
||||||
|
|
||||||
// [SECTION_KEY]
|
// [SECTION_KEY]
|
||||||
QList<QString> m_sections;
|
QList<QString> m_sections;
|
||||||
// {SECTION_KEY: (SECTION_DISPLAY_NAME, [PROPERTY_KEY])}
|
// {SECTION_KEY: (SECTION_DISPLAY_NAME, [PROPERTY_KEY])}
|
||||||
QMap<QString, QPair<QString, QList<QString> > > m_sectionProperties;
|
QMap<QString, QPair<QString, QList<QString> > > m_sectionProperties;
|
||||||
// {PROPERTY_KEY: (PROPERTY_DISPLAY_NAME, PROPERTY_VALUE)}
|
// {PROPERTY_KEY: (PROPERTY_DISPLAY_NAME, PROPERTY_VALUE)}
|
||||||
QMap<QString, QPair<QString, QString> > m_properties;
|
QMap<QString, QPair<QString, QString> > m_properties;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // METADATAMODEL_H
|
#endif // METADATAMODEL_H
|
||||||
|
@ -1,86 +1,91 @@
|
|||||||
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
#include "navigatorview.h"
|
#include "navigatorview.h"
|
||||||
|
|
||||||
#include "graphicsview.h"
|
#include "graphicsview.h"
|
||||||
#include "opacityhelper.h"
|
#include "opacityhelper.h"
|
||||||
|
|
||||||
#include <QMouseEvent>
|
#include <QMouseEvent>
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
|
#include <QTimer>
|
||||||
NavigatorView::NavigatorView(QWidget *parent)
|
|
||||||
: QGraphicsView (parent)
|
NavigatorView::NavigatorView(QWidget *parent)
|
||||||
, m_viewportRegion(this->rect())
|
: QGraphicsView (parent)
|
||||||
, m_opacityHelper(new OpacityHelper(this))
|
, m_viewportRegion(this->rect())
|
||||||
{
|
, m_opacityHelper(new OpacityHelper(this))
|
||||||
setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
{
|
||||||
setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
||||||
setStyleSheet("background-color: rgba(0, 0, 0, 120);"
|
setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
||||||
"border-radius: 3px;");
|
setStyleSheet("background-color: rgba(0, 0, 0, 120);"
|
||||||
}
|
"border-radius: 3px;");
|
||||||
|
}
|
||||||
// doesn't take or manage its ownership
|
|
||||||
void NavigatorView::setMainView(GraphicsView *mainView)
|
// doesn't take or manage its ownership
|
||||||
{
|
void NavigatorView::setMainView(GraphicsView *mainView)
|
||||||
m_mainView = mainView;
|
{
|
||||||
}
|
m_mainView = mainView;
|
||||||
|
}
|
||||||
void NavigatorView::setOpacity(qreal opacity, bool animated)
|
|
||||||
{
|
void NavigatorView::setOpacity(qreal opacity, bool animated)
|
||||||
m_opacityHelper->setOpacity(opacity, animated);
|
{
|
||||||
}
|
m_opacityHelper->setOpacity(opacity, animated);
|
||||||
|
}
|
||||||
void NavigatorView::updateMainViewportRegion()
|
|
||||||
{
|
void NavigatorView::updateMainViewportRegion()
|
||||||
if (m_mainView != nullptr) {
|
{
|
||||||
m_viewportRegion = mapFromScene(m_mainView->mapToScene(m_mainView->rect()));
|
// Use QTimer::singleShot with lambda to delay the update
|
||||||
update();
|
// This ensures all geometry updates are complete before calculating viewport region
|
||||||
}
|
QTimer::singleShot(0, [this]() {
|
||||||
}
|
if (m_mainView != nullptr) {
|
||||||
|
m_viewportRegion = mapFromScene(m_mainView->mapToScene(m_mainView->rect()));
|
||||||
void NavigatorView::mousePressEvent(QMouseEvent *event)
|
update();
|
||||||
{
|
}
|
||||||
m_mouseDown = true;
|
});
|
||||||
|
}
|
||||||
if (m_mainView) {
|
|
||||||
m_mainView->centerOn(mapToScene(event->pos()));
|
void NavigatorView::mousePressEvent(QMouseEvent *event)
|
||||||
update();
|
{
|
||||||
}
|
m_mouseDown = true;
|
||||||
|
|
||||||
event->accept();
|
if (m_mainView) {
|
||||||
}
|
m_mainView->centerOn(mapToScene(event->pos()));
|
||||||
|
update();
|
||||||
void NavigatorView::mouseMoveEvent(QMouseEvent *event)
|
}
|
||||||
{
|
|
||||||
if (m_mouseDown && m_mainView) {
|
event->accept();
|
||||||
m_mainView->centerOn(mapToScene(event->pos()));
|
}
|
||||||
update();
|
|
||||||
event->accept();
|
void NavigatorView::mouseMoveEvent(QMouseEvent *event)
|
||||||
} else {
|
{
|
||||||
event->ignore();
|
if (m_mouseDown && m_mainView) {
|
||||||
}
|
m_mainView->centerOn(mapToScene(event->pos()));
|
||||||
}
|
update();
|
||||||
|
event->accept();
|
||||||
void NavigatorView::mouseReleaseEvent(QMouseEvent *event)
|
} else {
|
||||||
{
|
event->ignore();
|
||||||
m_mouseDown = false;
|
}
|
||||||
|
}
|
||||||
event->accept();
|
|
||||||
}
|
void NavigatorView::mouseReleaseEvent(QMouseEvent *event)
|
||||||
|
{
|
||||||
void NavigatorView::wheelEvent(QWheelEvent *event)
|
m_mouseDown = false;
|
||||||
{
|
|
||||||
event->ignore();
|
event->accept();
|
||||||
return QGraphicsView::wheelEvent(event);
|
}
|
||||||
}
|
|
||||||
|
void NavigatorView::wheelEvent(QWheelEvent *event)
|
||||||
void NavigatorView::paintEvent(QPaintEvent *event)
|
{
|
||||||
{
|
event->ignore();
|
||||||
QGraphicsView::paintEvent(event);
|
return QGraphicsView::wheelEvent(event);
|
||||||
|
}
|
||||||
QPainter painter(viewport());
|
|
||||||
painter.setPen(QPen(Qt::gray, 2));
|
void NavigatorView::paintEvent(QPaintEvent *event)
|
||||||
painter.drawRect(m_viewportRegion.boundingRect());
|
{
|
||||||
}
|
QGraphicsView::paintEvent(event);
|
||||||
|
|
||||||
|
QPainter painter(viewport());
|
||||||
|
painter.setPen(QPen(Qt::gray, 2));
|
||||||
|
painter.drawRect(m_viewportRegion.boundingRect());
|
||||||
|
}
|
||||||
|
@ -1,38 +1,38 @@
|
|||||||
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
#ifndef NAVIGATORVIEW_H
|
#ifndef NAVIGATORVIEW_H
|
||||||
#define NAVIGATORVIEW_H
|
#define NAVIGATORVIEW_H
|
||||||
|
|
||||||
#include <QGraphicsView>
|
#include <QGraphicsView>
|
||||||
|
|
||||||
class OpacityHelper;
|
class OpacityHelper;
|
||||||
class GraphicsView;
|
class GraphicsView;
|
||||||
class NavigatorView : public QGraphicsView
|
class NavigatorView : public QGraphicsView
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
NavigatorView(QWidget *parent = nullptr);
|
NavigatorView(QWidget *parent = nullptr);
|
||||||
|
|
||||||
void setMainView(GraphicsView *mainView);
|
void setMainView(GraphicsView *mainView);
|
||||||
void setOpacity(qreal opacity, bool animated = true);
|
void setOpacity(qreal opacity, bool animated = true);
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void updateMainViewportRegion();
|
void updateMainViewportRegion();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void mousePressEvent(QMouseEvent * event) override;
|
void mousePressEvent(QMouseEvent * event) override;
|
||||||
void mouseMoveEvent(QMouseEvent * event) override;
|
void mouseMoveEvent(QMouseEvent * event) override;
|
||||||
void mouseReleaseEvent(QMouseEvent * event) override;
|
void mouseReleaseEvent(QMouseEvent * event) override;
|
||||||
|
|
||||||
void wheelEvent(QWheelEvent *event) override;
|
void wheelEvent(QWheelEvent *event) override;
|
||||||
void paintEvent(QPaintEvent *event) override;
|
void paintEvent(QPaintEvent *event) override;
|
||||||
|
|
||||||
bool m_mouseDown = false;
|
bool m_mouseDown = false;
|
||||||
QPolygon m_viewportRegion;
|
QPolygon m_viewportRegion;
|
||||||
QGraphicsView *m_mainView = nullptr;
|
QGraphicsView *m_mainView = nullptr;
|
||||||
OpacityHelper *m_opacityHelper = nullptr;
|
OpacityHelper *m_opacityHelper = nullptr;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // NAVIGATORVIEW_H
|
#endif // NAVIGATORVIEW_H
|
||||||
|
@ -1,31 +1,31 @@
|
|||||||
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
#include "opacityhelper.h"
|
#include "opacityhelper.h"
|
||||||
|
|
||||||
#include <QGraphicsOpacityEffect>
|
#include <QGraphicsOpacityEffect>
|
||||||
#include <QPropertyAnimation>
|
#include <QPropertyAnimation>
|
||||||
|
|
||||||
OpacityHelper::OpacityHelper(QWidget *parent)
|
OpacityHelper::OpacityHelper(QWidget *parent)
|
||||||
: QObject(parent)
|
: QObject(parent)
|
||||||
, m_opacityFx(new QGraphicsOpacityEffect(parent))
|
, m_opacityFx(new QGraphicsOpacityEffect(parent))
|
||||||
, m_opacityAnimation(new QPropertyAnimation(m_opacityFx, "opacity"))
|
, m_opacityAnimation(new QPropertyAnimation(m_opacityFx, "opacity"))
|
||||||
{
|
{
|
||||||
parent->setGraphicsEffect(m_opacityFx);
|
parent->setGraphicsEffect(m_opacityFx);
|
||||||
|
|
||||||
m_opacityAnimation->setDuration(300);
|
m_opacityAnimation->setDuration(300);
|
||||||
}
|
}
|
||||||
|
|
||||||
void OpacityHelper::setOpacity(qreal opacity, bool animated)
|
void OpacityHelper::setOpacity(qreal opacity, bool animated)
|
||||||
{
|
{
|
||||||
if (!animated) {
|
if (!animated) {
|
||||||
m_opacityFx->setOpacity(opacity);
|
m_opacityFx->setOpacity(opacity);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
m_opacityAnimation->stop();
|
m_opacityAnimation->stop();
|
||||||
m_opacityAnimation->setStartValue(m_opacityFx->opacity());
|
m_opacityAnimation->setStartValue(m_opacityFx->opacity());
|
||||||
m_opacityAnimation->setEndValue(opacity);
|
m_opacityAnimation->setEndValue(opacity);
|
||||||
m_opacityAnimation->start();
|
m_opacityAnimation->start();
|
||||||
}
|
}
|
||||||
|
@ -1,27 +1,27 @@
|
|||||||
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
#ifndef OPACITYHELPER_H
|
#ifndef OPACITYHELPER_H
|
||||||
#define OPACITYHELPER_H
|
#define OPACITYHELPER_H
|
||||||
|
|
||||||
#include <QWidget>
|
#include <QWidget>
|
||||||
|
|
||||||
QT_BEGIN_NAMESPACE
|
QT_BEGIN_NAMESPACE
|
||||||
class QGraphicsOpacityEffect;
|
class QGraphicsOpacityEffect;
|
||||||
class QPropertyAnimation;
|
class QPropertyAnimation;
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|
||||||
class OpacityHelper : QObject
|
class OpacityHelper : QObject
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
OpacityHelper(QWidget * parent);
|
OpacityHelper(QWidget * parent);
|
||||||
|
|
||||||
void setOpacity(qreal opacity, bool animated = true);
|
void setOpacity(qreal opacity, bool animated = true);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
QGraphicsOpacityEffect * m_opacityFx;
|
QGraphicsOpacityEffect * m_opacityFx;
|
||||||
QPropertyAnimation * m_opacityAnimation;
|
QPropertyAnimation * m_opacityAnimation;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // OPACITYHELPER_H
|
#endif // OPACITYHELPER_H
|
||||||
|
@ -1,255 +1,283 @@
|
|||||||
// SPDX-FileCopyrightText: 2024 Gary Wang <git@blumia.net>
|
// SPDX-FileCopyrightText: 2025 Gary Wang <git@blumia.net>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
#include "playlistmanager.h"
|
#include "playlistmanager.h"
|
||||||
|
|
||||||
#include <QCollator>
|
#include <QCollator>
|
||||||
#include <QDir>
|
#include <QDir>
|
||||||
#include <QFileInfo>
|
#include <QFileInfo>
|
||||||
#include <QUrl>
|
#include <QUrl>
|
||||||
|
|
||||||
PlaylistModel::PlaylistModel(QObject *parent)
|
PlaylistModel::PlaylistModel(QObject *parent)
|
||||||
: QAbstractListModel(parent)
|
: QAbstractListModel(parent)
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
PlaylistModel::~PlaylistModel()
|
PlaylistModel::~PlaylistModel()
|
||||||
{
|
= default;
|
||||||
|
|
||||||
}
|
void PlaylistModel::setPlaylist(const QList<QUrl> &urls)
|
||||||
|
{
|
||||||
void PlaylistModel::setPlaylist(const QList<QUrl> &urls)
|
beginResetModel();
|
||||||
{
|
m_playlist = urls;
|
||||||
beginResetModel();
|
endResetModel();
|
||||||
m_playlist = urls;
|
}
|
||||||
endResetModel();
|
|
||||||
}
|
QModelIndex PlaylistModel::loadPlaylist(const QList<QUrl> & urls)
|
||||||
|
{
|
||||||
QModelIndex PlaylistModel::loadPlaylist(const QList<QUrl> & urls)
|
if (urls.isEmpty()) return {};
|
||||||
{
|
if (urls.count() == 1) {
|
||||||
if (urls.isEmpty()) return QModelIndex();
|
return loadPlaylist(urls.constFirst());
|
||||||
if (urls.count() == 1) {
|
} else {
|
||||||
return loadPlaylist(urls.constFirst());
|
setPlaylist(urls);
|
||||||
} else {
|
return index(0);
|
||||||
setPlaylist(urls);
|
}
|
||||||
return index(0);
|
}
|
||||||
}
|
|
||||||
}
|
QModelIndex PlaylistModel::loadPlaylist(const QUrl &url)
|
||||||
|
{
|
||||||
QModelIndex PlaylistModel::loadPlaylist(const QUrl &url)
|
QFileInfo info(url.toLocalFile());
|
||||||
{
|
QDir dir(info.path());
|
||||||
QFileInfo info(url.toLocalFile());
|
QString && currentFileName = info.fileName();
|
||||||
QDir dir(info.path());
|
|
||||||
QString && currentFileName = info.fileName();
|
if (dir.path() == m_currentDir) {
|
||||||
|
int idx = indexOf(url);
|
||||||
if (dir.path() == m_currentDir) {
|
return idx == -1 ? appendToPlaylist(url) : index(idx);
|
||||||
int idx = indexOf(url);
|
}
|
||||||
return idx == -1 ? appendToPlaylist(url) : index(idx);
|
|
||||||
}
|
QStringList entryList = dir.entryList(
|
||||||
|
m_autoLoadSuffixes,
|
||||||
QStringList entryList = dir.entryList(
|
QDir::Files | QDir::NoSymLinks, QDir::NoSort);
|
||||||
m_autoLoadSuffixes,
|
|
||||||
QDir::Files | QDir::NoSymLinks, QDir::NoSort);
|
QCollator collator;
|
||||||
|
collator.setNumericMode(true);
|
||||||
QCollator collator;
|
|
||||||
collator.setNumericMode(true);
|
std::sort(entryList.begin(), entryList.end(), collator);
|
||||||
|
|
||||||
std::sort(entryList.begin(), entryList.end(), collator);
|
QList<QUrl> playlist;
|
||||||
|
|
||||||
QList<QUrl> playlist;
|
int idx = -1;
|
||||||
|
for (int i = 0; i < entryList.count(); i++) {
|
||||||
int idx = -1;
|
const QString & fileName = entryList.at(i);
|
||||||
for (int i = 0; i < entryList.count(); i++) {
|
const QString & oneEntry = dir.absoluteFilePath(fileName);
|
||||||
const QString & fileName = entryList.at(i);
|
const QUrl & url = QUrl::fromLocalFile(oneEntry);
|
||||||
const QString & oneEntry = dir.absoluteFilePath(fileName);
|
playlist.append(url);
|
||||||
const QUrl & url = QUrl::fromLocalFile(oneEntry);
|
if (fileName == currentFileName) {
|
||||||
playlist.append(url);
|
idx = i;
|
||||||
if (fileName == currentFileName) {
|
}
|
||||||
idx = i;
|
}
|
||||||
}
|
if (idx == -1) {
|
||||||
}
|
idx = playlist.count();
|
||||||
if (idx == -1) {
|
playlist.append(url);
|
||||||
idx = playlist.count();
|
}
|
||||||
playlist.append(url);
|
m_currentDir = dir.path();
|
||||||
}
|
|
||||||
m_currentDir = dir.path();
|
setPlaylist(playlist);
|
||||||
|
|
||||||
setPlaylist(playlist);
|
return index(idx);
|
||||||
|
}
|
||||||
return index(idx);
|
|
||||||
}
|
QModelIndex PlaylistModel::appendToPlaylist(const QUrl &url)
|
||||||
|
{
|
||||||
QModelIndex PlaylistModel::appendToPlaylist(const QUrl &url)
|
const int lastIndex = rowCount();
|
||||||
{
|
beginInsertRows(QModelIndex(), lastIndex, lastIndex);
|
||||||
const int lastIndex = rowCount();
|
m_playlist.append(url);
|
||||||
beginInsertRows(QModelIndex(), lastIndex, lastIndex);
|
endInsertRows();
|
||||||
m_playlist.append(url);
|
return index(lastIndex);
|
||||||
endInsertRows();
|
}
|
||||||
return index(lastIndex);
|
|
||||||
}
|
bool PlaylistModel::removeAt(int index)
|
||||||
|
{
|
||||||
bool PlaylistModel::removeAt(int index)
|
if (index < 0 || index >= rowCount()) return false;
|
||||||
{
|
beginRemoveRows(QModelIndex(), index, index);
|
||||||
if (index < 0 || index >= rowCount()) return false;
|
m_playlist.removeAt(index);
|
||||||
beginRemoveRows(QModelIndex(), index, index);
|
endRemoveRows();
|
||||||
m_playlist.removeAt(index);
|
return true;
|
||||||
endRemoveRows();
|
}
|
||||||
return true;
|
|
||||||
}
|
int PlaylistModel::indexOf(const QUrl &url) const
|
||||||
|
{
|
||||||
int PlaylistModel::indexOf(const QUrl &url) const
|
return m_playlist.indexOf(url);
|
||||||
{
|
}
|
||||||
return m_playlist.indexOf(url);
|
|
||||||
}
|
QUrl PlaylistModel::urlByIndex(int index) const
|
||||||
|
{
|
||||||
QUrl PlaylistModel::urlByIndex(int index) const
|
return m_playlist.value(index);
|
||||||
{
|
}
|
||||||
return m_playlist.value(index);
|
|
||||||
}
|
QStringList PlaylistModel::autoLoadFilterSuffixes() const
|
||||||
|
{
|
||||||
QStringList PlaylistModel::autoLoadFilterSuffixes() const
|
return m_autoLoadSuffixes;
|
||||||
{
|
}
|
||||||
return m_autoLoadSuffixes;
|
|
||||||
}
|
QHash<int, QByteArray> PlaylistModel::roleNames() const
|
||||||
|
{
|
||||||
QHash<int, QByteArray> PlaylistModel::roleNames() const
|
QHash<int, QByteArray> result = QAbstractListModel::roleNames();
|
||||||
{
|
result.insert(UrlRole, "url");
|
||||||
QHash<int, QByteArray> result = QAbstractListModel::roleNames();
|
return result;
|
||||||
result.insert(UrlRole, "url");
|
}
|
||||||
return result;
|
|
||||||
}
|
int PlaylistModel::rowCount(const QModelIndex &parent) const
|
||||||
|
{
|
||||||
int PlaylistModel::rowCount(const QModelIndex &parent) const
|
return m_playlist.count();
|
||||||
{
|
}
|
||||||
return m_playlist.count();
|
|
||||||
}
|
QVariant PlaylistModel::data(const QModelIndex &index, int role) const
|
||||||
|
{
|
||||||
QVariant PlaylistModel::data(const QModelIndex &index, int role) const
|
if (!index.isValid()) return {};
|
||||||
{
|
|
||||||
if (!index.isValid()) return QVariant();
|
switch (role) {
|
||||||
|
case Qt::DisplayRole:
|
||||||
switch (role) {
|
return m_playlist.at(index.row()).fileName();
|
||||||
case Qt::DisplayRole:
|
case UrlRole:
|
||||||
return m_playlist.at(index.row()).fileName();
|
return m_playlist.at(index.row());
|
||||||
case UrlRole:
|
}
|
||||||
return m_playlist.at(index.row());
|
|
||||||
}
|
return {};
|
||||||
|
}
|
||||||
return QVariant();
|
|
||||||
}
|
PlaylistManager::PlaylistManager(QObject *parent)
|
||||||
|
: QObject(parent)
|
||||||
PlaylistManager::PlaylistManager(QObject *parent)
|
{
|
||||||
: QObject(parent)
|
connect(&m_model, &PlaylistModel::rowsRemoved, this,
|
||||||
{
|
[this](const QModelIndex &, int, int) {
|
||||||
connect(&m_model, &PlaylistModel::rowsRemoved, this,
|
if (m_model.rowCount() <= m_currentIndex) {
|
||||||
[this](const QModelIndex &, int, int) {
|
setProperty("currentIndex", m_currentIndex - 1);
|
||||||
if (m_model.rowCount() <= m_currentIndex) {
|
}
|
||||||
setProperty("currentIndex", m_currentIndex - 1);
|
});
|
||||||
}
|
|
||||||
});
|
auto onRowCountChanged = [this](){
|
||||||
|
emit totalCountChanged(m_model.rowCount());
|
||||||
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::rowsInserted, this, onRowCountChanged);
|
connect(&m_model, &PlaylistModel::modelReset, this, onRowCountChanged);
|
||||||
connect(&m_model, &PlaylistModel::rowsRemoved, this, onRowCountChanged);
|
}
|
||||||
connect(&m_model, &PlaylistModel::modelReset, this, onRowCountChanged);
|
|
||||||
}
|
PlaylistManager::~PlaylistManager()
|
||||||
|
{
|
||||||
PlaylistManager::~PlaylistManager()
|
|
||||||
{
|
}
|
||||||
|
|
||||||
}
|
PlaylistModel *PlaylistManager::model()
|
||||||
|
{
|
||||||
PlaylistModel *PlaylistManager::model()
|
return &m_model;
|
||||||
{
|
}
|
||||||
return &m_model;
|
|
||||||
}
|
void PlaylistManager::setPlaylist(const QList<QUrl> &urls)
|
||||||
|
{
|
||||||
void PlaylistManager::setPlaylist(const QList<QUrl> &urls)
|
m_model.setPlaylist(urls);
|
||||||
{
|
}
|
||||||
m_model.setPlaylist(urls);
|
|
||||||
}
|
QModelIndex PlaylistManager::loadPlaylist(const QList<QUrl> &urls)
|
||||||
|
{
|
||||||
QModelIndex PlaylistManager::loadPlaylist(const QList<QUrl> &urls)
|
QModelIndex idx = m_model.loadPlaylist(urls);
|
||||||
{
|
setProperty("currentIndex", idx.row());
|
||||||
QModelIndex idx = m_model.loadPlaylist(urls);
|
return idx;
|
||||||
setProperty("currentIndex", idx.row());
|
}
|
||||||
return idx;
|
|
||||||
}
|
QModelIndex PlaylistManager::loadPlaylist(const QUrl &url)
|
||||||
|
{
|
||||||
QModelIndex PlaylistManager::loadPlaylist(const QUrl &url)
|
QModelIndex idx = m_model.loadPlaylist(url);
|
||||||
{
|
setProperty("currentIndex", idx.row());
|
||||||
QModelIndex idx = m_model.loadPlaylist(url);
|
return idx;
|
||||||
setProperty("currentIndex", idx.row());
|
}
|
||||||
return idx;
|
|
||||||
}
|
QModelIndex PlaylistManager::loadM3U8Playlist(const QUrl &url)
|
||||||
|
{
|
||||||
int PlaylistManager::totalCount() const
|
QFile file(url.toLocalFile());
|
||||||
{
|
if (file.open(QIODevice::ReadOnly | QIODevice::Text)) {
|
||||||
return m_model.rowCount();
|
QList<QUrl> urls;
|
||||||
}
|
while (!file.atEnd()) {
|
||||||
|
QString line = file.readLine();
|
||||||
QModelIndex PlaylistManager::previousIndex() const
|
if (line.startsWith('#')) {
|
||||||
{
|
continue;
|
||||||
int count = totalCount();
|
}
|
||||||
if (count == 0) return QModelIndex();
|
QFileInfo fileInfo(file);
|
||||||
|
QUrl item = QUrl::fromUserInput(line, fileInfo.absolutePath());
|
||||||
return m_model.index(m_currentIndex - 1 < 0 ? count - 1 : m_currentIndex - 1);
|
urls.append(item);
|
||||||
}
|
}
|
||||||
|
return loadPlaylist(urls);
|
||||||
QModelIndex PlaylistManager::nextIndex() const
|
} else {
|
||||||
{
|
return {};
|
||||||
int count = totalCount();
|
}
|
||||||
if (count == 0) return QModelIndex();
|
}
|
||||||
|
|
||||||
return m_model.index(m_currentIndex + 1 == count ? 0 : m_currentIndex + 1);
|
int PlaylistManager::totalCount() const
|
||||||
}
|
{
|
||||||
|
return m_model.rowCount();
|
||||||
QModelIndex PlaylistManager::curIndex() const
|
}
|
||||||
{
|
|
||||||
return m_model.index(m_currentIndex);
|
QModelIndex PlaylistManager::previousIndex() const
|
||||||
}
|
{
|
||||||
|
int count = totalCount();
|
||||||
void PlaylistManager::setCurrentIndex(const QModelIndex &index)
|
if (count == 0) return {};
|
||||||
{
|
|
||||||
if (index.isValid() && index.row() >= 0 && index.row() < totalCount()) {
|
return m_model.index(isFirstIndex() ? count - 1 : m_currentIndex - 1);
|
||||||
setProperty("currentIndex", index.row());
|
}
|
||||||
}
|
|
||||||
}
|
QModelIndex PlaylistManager::nextIndex() const
|
||||||
|
{
|
||||||
QUrl PlaylistManager::urlByIndex(const QModelIndex &index)
|
int count = totalCount();
|
||||||
{
|
if (count == 0) return {};
|
||||||
return m_model.urlByIndex(index.row());
|
|
||||||
}
|
return m_model.index(isLastIndex() ? 0 : m_currentIndex + 1);
|
||||||
|
}
|
||||||
QString PlaylistManager::localFileByIndex(const QModelIndex &index)
|
|
||||||
{
|
QModelIndex PlaylistManager::curIndex() const
|
||||||
return urlByIndex(index).toLocalFile();
|
{
|
||||||
}
|
return m_model.index(m_currentIndex);
|
||||||
|
}
|
||||||
bool PlaylistManager::removeAt(const QModelIndex &index)
|
|
||||||
{
|
bool PlaylistManager::isFirstIndex() const
|
||||||
return m_model.removeAt(index.row());
|
{
|
||||||
}
|
return m_currentIndex == 0;
|
||||||
|
}
|
||||||
void PlaylistManager::setAutoLoadFilterSuffixes(const QStringList &nameFilters)
|
|
||||||
{
|
bool PlaylistManager::isLastIndex() const
|
||||||
m_model.setProperty("autoLoadFilterSuffixes", nameFilters);
|
{
|
||||||
}
|
return m_currentIndex + 1 == totalCount();
|
||||||
|
}
|
||||||
QList<QUrl> PlaylistManager::convertToUrlList(const QStringList &files)
|
|
||||||
{
|
void PlaylistManager::setCurrentIndex(const QModelIndex &index)
|
||||||
QList<QUrl> urlList;
|
{
|
||||||
for (const QString & str : std::as_const(files)) {
|
if (index.isValid() && index.row() >= 0 && index.row() < totalCount()) {
|
||||||
QUrl url = QUrl::fromLocalFile(str);
|
setProperty("currentIndex", index.row());
|
||||||
if (url.isValid()) {
|
}
|
||||||
urlList.append(url);
|
}
|
||||||
}
|
|
||||||
}
|
QUrl PlaylistManager::urlByIndex(const QModelIndex &index)
|
||||||
|
{
|
||||||
return urlList;
|
return m_model.urlByIndex(index.row());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QString PlaylistManager::localFileByIndex(const QModelIndex &index)
|
||||||
|
{
|
||||||
|
return urlByIndex(index).toLocalFile();
|
||||||
|
}
|
||||||
|
|
||||||
|
bool PlaylistManager::removeAt(const QModelIndex &index)
|
||||||
|
{
|
||||||
|
return m_model.removeAt(index.row());
|
||||||
|
}
|
||||||
|
|
||||||
|
void PlaylistManager::setAutoLoadFilterSuffixes(const QStringList &nameFilters)
|
||||||
|
{
|
||||||
|
m_model.setProperty("autoLoadFilterSuffixes", nameFilters);
|
||||||
|
}
|
||||||
|
|
||||||
|
QList<QUrl> PlaylistManager::convertToUrlList(const QStringList &files)
|
||||||
|
{
|
||||||
|
QList<QUrl> urlList;
|
||||||
|
for (const QString & str : std::as_const(files)) {
|
||||||
|
QUrl url = QUrl::fromLocalFile(str);
|
||||||
|
if (url.isValid()) {
|
||||||
|
urlList.append(url);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return urlList;
|
||||||
|
}
|
||||||
|
@ -1,85 +1,88 @@
|
|||||||
// SPDX-FileCopyrightText: 2024 Gary Wang <git@blumia.net>
|
// SPDX-FileCopyrightText: 2025 Gary Wang <git@blumia.net>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <QUrl>
|
#include <QUrl>
|
||||||
#include <QAbstractListModel>
|
#include <QAbstractListModel>
|
||||||
|
|
||||||
class PlaylistModel : public QAbstractListModel
|
class PlaylistModel : public QAbstractListModel
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
enum PlaylistRole {
|
enum PlaylistRole {
|
||||||
UrlRole = Qt::UserRole
|
UrlRole = Qt::UserRole
|
||||||
};
|
};
|
||||||
Q_ENUM(PlaylistRole)
|
Q_ENUM(PlaylistRole)
|
||||||
Q_PROPERTY(QStringList autoLoadFilterSuffixes MEMBER m_autoLoadSuffixes NOTIFY autoLoadFilterSuffixesChanged)
|
Q_PROPERTY(QStringList autoLoadFilterSuffixes MEMBER m_autoLoadSuffixes NOTIFY autoLoadFilterSuffixesChanged)
|
||||||
|
|
||||||
explicit PlaylistModel(QObject *parent = nullptr);
|
explicit PlaylistModel(QObject *parent = nullptr);
|
||||||
~PlaylistModel();
|
~PlaylistModel() override;
|
||||||
|
|
||||||
void setPlaylist(const QList<QUrl> & urls);
|
void setPlaylist(const QList<QUrl> & urls);
|
||||||
QModelIndex loadPlaylist(const QList<QUrl> & urls);
|
QModelIndex loadPlaylist(const QList<QUrl> & urls);
|
||||||
QModelIndex loadPlaylist(const QUrl & url);
|
QModelIndex loadPlaylist(const QUrl & url);
|
||||||
QModelIndex appendToPlaylist(const QUrl & url);
|
QModelIndex appendToPlaylist(const QUrl & url);
|
||||||
bool removeAt(int index);
|
bool removeAt(int index);
|
||||||
int indexOf(const QUrl & url) const;
|
int indexOf(const QUrl & url) const;
|
||||||
QUrl urlByIndex(int index) const;
|
QUrl urlByIndex(int index) const;
|
||||||
QStringList autoLoadFilterSuffixes() const;
|
QStringList autoLoadFilterSuffixes() const;
|
||||||
|
|
||||||
QHash<int, QByteArray> roleNames() const override;
|
QHash<int, QByteArray> roleNames() const override;
|
||||||
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
|
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
|
||||||
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
|
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
void autoLoadFilterSuffixesChanged(QStringList suffixes);
|
void autoLoadFilterSuffixesChanged(QStringList suffixes);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
// model data
|
// model data
|
||||||
QList<QUrl> m_playlist;
|
QList<QUrl> m_playlist;
|
||||||
// properties
|
// properties
|
||||||
QStringList m_autoLoadSuffixes = {};
|
QStringList m_autoLoadSuffixes = {};
|
||||||
// internal
|
// internal
|
||||||
QString m_currentDir;
|
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(QStringList autoLoadFilterSuffixes WRITE setAutoLoadFilterSuffixes)
|
||||||
Q_PROPERTY(PlaylistModel * model READ model CONSTANT)
|
Q_PROPERTY(PlaylistModel * model READ model CONSTANT)
|
||||||
|
|
||||||
explicit PlaylistManager(QObject *parent = nullptr);
|
explicit PlaylistManager(QObject *parent = nullptr);
|
||||||
~PlaylistManager();
|
~PlaylistManager();
|
||||||
|
|
||||||
PlaylistModel * model();
|
PlaylistModel * model();
|
||||||
|
|
||||||
void setPlaylist(const QList<QUrl> & url);
|
void setPlaylist(const QList<QUrl> & url);
|
||||||
Q_INVOKABLE QModelIndex loadPlaylist(const QList<QUrl> & urls);
|
Q_INVOKABLE QModelIndex loadPlaylist(const QList<QUrl> & urls);
|
||||||
Q_INVOKABLE QModelIndex loadPlaylist(const QUrl & url);
|
Q_INVOKABLE QModelIndex loadPlaylist(const QUrl & url);
|
||||||
|
Q_INVOKABLE QModelIndex loadM3U8Playlist(const QUrl & url);
|
||||||
int totalCount() const;
|
|
||||||
QModelIndex previousIndex() const;
|
int totalCount() const;
|
||||||
QModelIndex nextIndex() const;
|
QModelIndex previousIndex() const;
|
||||||
QModelIndex curIndex() const;
|
QModelIndex nextIndex() const;
|
||||||
void setCurrentIndex(const QModelIndex & index);
|
QModelIndex curIndex() const;
|
||||||
QUrl urlByIndex(const QModelIndex & index);
|
bool isFirstIndex() const;
|
||||||
QString localFileByIndex(const QModelIndex & index);
|
bool isLastIndex() const;
|
||||||
bool removeAt(const QModelIndex & index);
|
void setCurrentIndex(const QModelIndex & index);
|
||||||
|
QUrl urlByIndex(const QModelIndex & index);
|
||||||
void setAutoLoadFilterSuffixes(const QStringList &nameFilters);
|
QString localFileByIndex(const QModelIndex & index);
|
||||||
|
bool removeAt(const QModelIndex & index);
|
||||||
static QList<QUrl> convertToUrlList(const QStringList & files);
|
|
||||||
|
void setAutoLoadFilterSuffixes(const QStringList &nameFilters);
|
||||||
signals:
|
|
||||||
void currentIndexChanged(int index);
|
static QList<QUrl> convertToUrlList(const QStringList & files);
|
||||||
void totalCountChanged(int count);
|
|
||||||
|
signals:
|
||||||
private:
|
void currentIndexChanged(int index);
|
||||||
int m_currentIndex = -1;
|
void totalCountChanged(int count);
|
||||||
PlaylistModel m_model;
|
|
||||||
};
|
private:
|
||||||
|
int m_currentIndex = -1;
|
||||||
|
PlaylistModel m_model;
|
||||||
|
};
|
||||||
|
395
app/settings.cpp
395
app/settings.cpp
@ -1,158 +1,237 @@
|
|||||||
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
#include "settings.h"
|
#include "settings.h"
|
||||||
|
|
||||||
#include <QApplication>
|
#include <QApplication>
|
||||||
#include <QStandardPaths>
|
#include <QStandardPaths>
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
#include <QDir>
|
#include <QDir>
|
||||||
#include <QMetaEnum>
|
#include <QAction>
|
||||||
|
#include <QWidget>
|
||||||
namespace QEnumHelper
|
#include <QKeySequence>
|
||||||
{
|
#include <QMetaEnum>
|
||||||
template <typename E>
|
|
||||||
E fromString(const QString &text, const E defaultValue)
|
namespace QEnumHelper
|
||||||
{
|
{
|
||||||
bool ok;
|
template <typename E>
|
||||||
E result = static_cast<E>(QMetaEnum::fromType<E>().keyToValue(text.toUtf8(), &ok));
|
E fromString(const QString &text, const E defaultValue)
|
||||||
if (!ok) {
|
{
|
||||||
return defaultValue;
|
bool ok;
|
||||||
}
|
E result = static_cast<E>(QMetaEnum::fromType<E>().keyToValue(text.toUtf8(), &ok));
|
||||||
return result;
|
if (!ok) {
|
||||||
}
|
return defaultValue;
|
||||||
|
}
|
||||||
template <typename E>
|
return result;
|
||||||
QString toString(E value)
|
}
|
||||||
{
|
|
||||||
const int intValue = static_cast<int>(value);
|
template <typename E>
|
||||||
return QString::fromUtf8(QMetaEnum::fromType<E>().valueToKey(intValue));
|
QString toString(E value)
|
||||||
}
|
{
|
||||||
}
|
const int intValue = static_cast<int>(value);
|
||||||
|
return QString::fromUtf8(QMetaEnum::fromType<E>().valueToKey(intValue));
|
||||||
Settings *Settings::m_settings_instance = nullptr;
|
}
|
||||||
|
}
|
||||||
Settings *Settings::instance()
|
|
||||||
{
|
Settings *Settings::m_settings_instance = nullptr;
|
||||||
if (!m_settings_instance) {
|
|
||||||
m_settings_instance = new Settings;
|
Settings *Settings::instance()
|
||||||
}
|
{
|
||||||
|
if (!m_settings_instance) {
|
||||||
return m_settings_instance;
|
m_settings_instance = new Settings;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Settings::stayOnTop()
|
return m_settings_instance;
|
||||||
{
|
}
|
||||||
return m_qsettings->value("stay_on_top", true).toBool();
|
|
||||||
}
|
bool Settings::stayOnTop() const
|
||||||
|
{
|
||||||
bool Settings::useLightCheckerboard()
|
return m_qsettings->value("stay_on_top", true).toBool();
|
||||||
{
|
}
|
||||||
return m_qsettings->value("use_light_checkerboard", false).toBool();
|
|
||||||
}
|
bool Settings::useBuiltInCloseAnimation() const
|
||||||
|
{
|
||||||
Settings::DoubleClickBehavior Settings::doubleClickBehavior() const
|
return m_qsettings->value("use_built_in_close_animation", true).toBool();
|
||||||
{
|
}
|
||||||
QString result = m_qsettings->value("double_click_behavior", "Close").toString();
|
|
||||||
|
bool Settings::useLightCheckerboard() const
|
||||||
return QEnumHelper::fromString<DoubleClickBehavior>(result, DoubleClickBehavior::Close);
|
{
|
||||||
}
|
return m_qsettings->value("use_light_checkerboard", false).toBool();
|
||||||
|
}
|
||||||
Settings::MouseWheelBehavior Settings::mouseWheelBehavior() const
|
|
||||||
{
|
bool Settings::loopGallery() const
|
||||||
QString result = m_qsettings->value("mouse_wheel_behavior", "Zoom").toString();
|
{
|
||||||
|
return m_qsettings->value("loop_gallery", true).toBool();
|
||||||
return QEnumHelper::fromString<MouseWheelBehavior>(result, MouseWheelBehavior::Zoom);
|
}
|
||||||
}
|
|
||||||
|
bool Settings::autoLongImageMode() const
|
||||||
Settings::WindowSizeBehavior Settings::initWindowSizeBehavior() const
|
{
|
||||||
{
|
return m_qsettings->value("auto_long_image_mode", true).toBool();
|
||||||
QString result = m_qsettings->value("init_window_size_behavior", "Auto").toString();
|
}
|
||||||
|
|
||||||
return QEnumHelper::fromString<WindowSizeBehavior>(result, WindowSizeBehavior::Auto);
|
Settings::DoubleClickBehavior Settings::doubleClickBehavior() const
|
||||||
}
|
{
|
||||||
|
QString result = m_qsettings->value("double_click_behavior", "Close").toString();
|
||||||
Qt::HighDpiScaleFactorRoundingPolicy Settings::hiDpiScaleFactorBehavior() const
|
|
||||||
{
|
return QEnumHelper::fromString<DoubleClickBehavior>(result, DoubleClickBehavior::Close);
|
||||||
QString result = m_qsettings->value("hidpi_scale_factor_behavior", "PassThrough").toString();
|
}
|
||||||
|
|
||||||
return QEnumHelper::fromString<Qt::HighDpiScaleFactorRoundingPolicy>(result, Qt::HighDpiScaleFactorRoundingPolicy::PassThrough);
|
Settings::MouseWheelBehavior Settings::mouseWheelBehavior() const
|
||||||
}
|
{
|
||||||
|
QString result = m_qsettings->value("mouse_wheel_behavior", "Zoom").toString();
|
||||||
void Settings::setStayOnTop(bool on)
|
|
||||||
{
|
return QEnumHelper::fromString<MouseWheelBehavior>(result, MouseWheelBehavior::Zoom);
|
||||||
m_qsettings->setValue("stay_on_top", on);
|
}
|
||||||
m_qsettings->sync();
|
|
||||||
}
|
Settings::WindowSizeBehavior Settings::initWindowSizeBehavior() const
|
||||||
|
{
|
||||||
void Settings::setUseLightCheckerboard(bool light)
|
QString result = m_qsettings->value("init_window_size_behavior", "Auto").toString();
|
||||||
{
|
|
||||||
m_qsettings->setValue("use_light_checkerboard", light);
|
return QEnumHelper::fromString<WindowSizeBehavior>(result, WindowSizeBehavior::Auto);
|
||||||
m_qsettings->sync();
|
}
|
||||||
}
|
|
||||||
|
Qt::HighDpiScaleFactorRoundingPolicy Settings::hiDpiScaleFactorBehavior() const
|
||||||
void Settings::setDoubleClickBehavior(DoubleClickBehavior dcb)
|
{
|
||||||
{
|
QString result = m_qsettings->value("hidpi_scale_factor_behavior", "PassThrough").toString();
|
||||||
m_qsettings->setValue("double_click_behavior", QEnumHelper::toString(dcb));
|
|
||||||
m_qsettings->sync();
|
return QEnumHelper::fromString<Qt::HighDpiScaleFactorRoundingPolicy>(result, Qt::HighDpiScaleFactorRoundingPolicy::PassThrough);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Settings::setMouseWheelBehavior(MouseWheelBehavior mwb)
|
void Settings::setStayOnTop(bool on)
|
||||||
{
|
{
|
||||||
m_qsettings->setValue("mouse_wheel_behavior", QEnumHelper::toString(mwb));
|
m_qsettings->setValue("stay_on_top", on);
|
||||||
m_qsettings->sync();
|
m_qsettings->sync();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Settings::setInitWindowSizeBehavior(WindowSizeBehavior wsb)
|
void Settings::setUseBuiltInCloseAnimation(bool on)
|
||||||
{
|
{
|
||||||
m_qsettings->setValue("init_window_size_behavior", QEnumHelper::toString(wsb));
|
m_qsettings->setValue("use_built_in_close_animation", on);
|
||||||
m_qsettings->sync();
|
m_qsettings->sync();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Settings::setHiDpiScaleFactorBehavior(Qt::HighDpiScaleFactorRoundingPolicy hidpi)
|
void Settings::setUseLightCheckerboard(bool light)
|
||||||
{
|
{
|
||||||
m_qsettings->setValue("hidpi_scale_factor_behavior", QEnumHelper::toString(hidpi));
|
m_qsettings->setValue("use_light_checkerboard", light);
|
||||||
m_qsettings->sync();
|
m_qsettings->sync();
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(FLAG_PORTABLE_MODE_SUPPORT) && defined(Q_OS_WIN)
|
void Settings::setLoopGallery(bool on)
|
||||||
#include <windows.h>
|
{
|
||||||
// QCoreApplication::applicationDirPath() parses the "applicationDirPath" from arg0, which...
|
m_qsettings->setValue("loop_gallery", on);
|
||||||
// 1. rely on a QApplication object instance
|
m_qsettings->sync();
|
||||||
// but we need to call QGuiApplication::setHighDpiScaleFactorRoundingPolicy() before QApplication get created
|
}
|
||||||
// 2. arg0 is NOT garanteed to be the path of execution
|
|
||||||
// see also: https://stackoverflow.com/questions/383973/is-args0-guaranteed-to-be-the-path-of-execution
|
void Settings::setAutoLongImageMode(bool on)
|
||||||
// This function is here mainly for #1.
|
{
|
||||||
QString getApplicationDirPath()
|
m_qsettings->setValue("auto_long_image_mode", on);
|
||||||
{
|
m_qsettings->sync();
|
||||||
WCHAR buffer[MAX_PATH];
|
}
|
||||||
GetModuleFileNameW(NULL, buffer, MAX_PATH);
|
|
||||||
QString appPath = QString::fromWCharArray(buffer);
|
void Settings::setDoubleClickBehavior(DoubleClickBehavior dcb)
|
||||||
|
{
|
||||||
return appPath.left(appPath.lastIndexOf('\\'));
|
m_qsettings->setValue("double_click_behavior", QEnumHelper::toString(dcb));
|
||||||
}
|
m_qsettings->sync();
|
||||||
#endif // defined(FLAG_PORTABLE_MODE_SUPPORT) && defined(Q_OS_WIN)
|
}
|
||||||
|
|
||||||
Settings::Settings()
|
void Settings::setMouseWheelBehavior(MouseWheelBehavior mwb)
|
||||||
: QObject(qApp)
|
{
|
||||||
{
|
m_qsettings->setValue("mouse_wheel_behavior", QEnumHelper::toString(mwb));
|
||||||
QString configPath;
|
m_qsettings->sync();
|
||||||
|
}
|
||||||
#if defined(FLAG_PORTABLE_MODE_SUPPORT) && defined(Q_OS_WIN)
|
|
||||||
QString portableConfigDirPath = QDir(getApplicationDirPath()).absoluteFilePath("data");
|
void Settings::setInitWindowSizeBehavior(WindowSizeBehavior wsb)
|
||||||
QFileInfo portableConfigDirInfo(portableConfigDirPath);
|
{
|
||||||
if (portableConfigDirInfo.exists() && portableConfigDirInfo.isDir() && portableConfigDirInfo.isWritable()) {
|
m_qsettings->setValue("init_window_size_behavior", QEnumHelper::toString(wsb));
|
||||||
// we can use it.
|
m_qsettings->sync();
|
||||||
configPath = portableConfigDirPath;
|
}
|
||||||
}
|
|
||||||
#endif // defined(FLAG_PORTABLE_MODE_SUPPORT) && defined(Q_OS_WIN)
|
void Settings::setHiDpiScaleFactorBehavior(Qt::HighDpiScaleFactorRoundingPolicy hidpi)
|
||||||
|
{
|
||||||
if (configPath.isEmpty()) {
|
m_qsettings->setValue("hidpi_scale_factor_behavior", QEnumHelper::toString(hidpi));
|
||||||
// Should be %LOCALAPPDATA%\<APPNAME> under Windows, ~/.config/<APPNAME> under Linux.
|
m_qsettings->sync();
|
||||||
configPath = QStandardPaths::writableLocation(QStandardPaths::AppConfigLocation);
|
}
|
||||||
}
|
|
||||||
|
void Settings::applyUserShortcuts(QWidget *widget)
|
||||||
m_qsettings = new QSettings(QDir(configPath).absoluteFilePath("config.ini"), QSettings::IniFormat, this);
|
{
|
||||||
}
|
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)
|
||||||
|
#include <windows.h>
|
||||||
|
// QCoreApplication::applicationDirPath() parses the "applicationDirPath" from arg0, which...
|
||||||
|
// 1. rely on a QApplication object instance
|
||||||
|
// but we need to call QGuiApplication::setHighDpiScaleFactorRoundingPolicy() before QApplication get created
|
||||||
|
// 2. arg0 is NOT garanteed to be the path of execution
|
||||||
|
// see also: https://stackoverflow.com/questions/383973/is-args0-guaranteed-to-be-the-path-of-execution
|
||||||
|
// This function is here mainly for #1.
|
||||||
|
QString getApplicationDirPath()
|
||||||
|
{
|
||||||
|
WCHAR buffer[MAX_PATH];
|
||||||
|
GetModuleFileNameW(NULL, buffer, MAX_PATH);
|
||||||
|
QString appPath = QString::fromWCharArray(buffer);
|
||||||
|
|
||||||
|
return appPath.left(appPath.lastIndexOf('\\'));
|
||||||
|
}
|
||||||
|
#endif // defined(FLAG_PORTABLE_MODE_SUPPORT) && defined(Q_OS_WIN)
|
||||||
|
|
||||||
|
Settings::Settings()
|
||||||
|
: QObject(qApp)
|
||||||
|
{
|
||||||
|
QString configPath;
|
||||||
|
|
||||||
|
#if defined(FLAG_PORTABLE_MODE_SUPPORT) && defined(Q_OS_WIN)
|
||||||
|
QString portableConfigDirPath = QDir(getApplicationDirPath()).absoluteFilePath("data");
|
||||||
|
QFileInfo portableConfigDirInfo(portableConfigDirPath);
|
||||||
|
if (portableConfigDirInfo.exists() && portableConfigDirInfo.isDir() && portableConfigDirInfo.isWritable()) {
|
||||||
|
// we can use it.
|
||||||
|
configPath = portableConfigDirPath;
|
||||||
|
}
|
||||||
|
#endif // defined(FLAG_PORTABLE_MODE_SUPPORT) && defined(Q_OS_WIN)
|
||||||
|
|
||||||
|
if (configPath.isEmpty()) {
|
||||||
|
// Should be %LOCALAPPDATA%\<APPNAME> under Windows, ~/.config/<APPNAME> under Linux.
|
||||||
|
configPath = QStandardPaths::writableLocation(QStandardPaths::AppConfigLocation);
|
||||||
|
}
|
||||||
|
|
||||||
|
m_qsettings = new QSettings(QDir(configPath).absoluteFilePath("config.ini"), QSettings::IniFormat, this);
|
||||||
|
|
||||||
|
qRegisterMetaType<QList<QKeySequence>>();
|
||||||
|
}
|
||||||
|
|
||||||
|
131
app/settings.h
131
app/settings.h
@ -1,60 +1,71 @@
|
|||||||
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
#include <QSettings>
|
#include <QSettings>
|
||||||
|
|
||||||
class Settings : public QObject
|
class Settings : public QObject
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
enum DoubleClickBehavior {
|
enum DoubleClickBehavior {
|
||||||
Ignore,
|
Ignore,
|
||||||
Close,
|
Close,
|
||||||
Maximize,
|
Maximize,
|
||||||
};
|
FullScreen,
|
||||||
Q_ENUM(DoubleClickBehavior)
|
};
|
||||||
|
Q_ENUM(DoubleClickBehavior)
|
||||||
enum MouseWheelBehavior {
|
|
||||||
Zoom,
|
enum MouseWheelBehavior {
|
||||||
Switch,
|
Zoom,
|
||||||
};
|
Switch,
|
||||||
Q_ENUM(MouseWheelBehavior)
|
};
|
||||||
|
Q_ENUM(MouseWheelBehavior)
|
||||||
enum WindowSizeBehavior {
|
|
||||||
Auto,
|
enum WindowSizeBehavior {
|
||||||
Maximized,
|
Auto,
|
||||||
};
|
Maximized,
|
||||||
Q_ENUM(WindowSizeBehavior)
|
Windowed,
|
||||||
|
};
|
||||||
static Settings *instance();
|
Q_ENUM(WindowSizeBehavior)
|
||||||
|
|
||||||
bool stayOnTop();
|
static Settings *instance();
|
||||||
bool useLightCheckerboard();
|
|
||||||
DoubleClickBehavior doubleClickBehavior() const;
|
bool stayOnTop() const;
|
||||||
MouseWheelBehavior mouseWheelBehavior() const;
|
bool useBuiltInCloseAnimation() const;
|
||||||
WindowSizeBehavior initWindowSizeBehavior() const;
|
bool useLightCheckerboard() const;
|
||||||
Qt::HighDpiScaleFactorRoundingPolicy hiDpiScaleFactorBehavior() const;
|
bool loopGallery() const;
|
||||||
|
bool autoLongImageMode() const;
|
||||||
void setStayOnTop(bool on);
|
DoubleClickBehavior doubleClickBehavior() const;
|
||||||
void setUseLightCheckerboard(bool light);
|
MouseWheelBehavior mouseWheelBehavior() const;
|
||||||
void setDoubleClickBehavior(DoubleClickBehavior dcb);
|
WindowSizeBehavior initWindowSizeBehavior() const;
|
||||||
void setMouseWheelBehavior(MouseWheelBehavior mwb);
|
Qt::HighDpiScaleFactorRoundingPolicy hiDpiScaleFactorBehavior() const;
|
||||||
void setInitWindowSizeBehavior(WindowSizeBehavior wsb);
|
|
||||||
void setHiDpiScaleFactorBehavior(Qt::HighDpiScaleFactorRoundingPolicy hidpi);
|
void setStayOnTop(bool on);
|
||||||
|
void setUseBuiltInCloseAnimation(bool on);
|
||||||
private:
|
void setUseLightCheckerboard(bool light);
|
||||||
Settings();
|
void setLoopGallery(bool on);
|
||||||
|
void setAutoLongImageMode(bool on);
|
||||||
static Settings *m_settings_instance;
|
void setDoubleClickBehavior(DoubleClickBehavior dcb);
|
||||||
|
void setMouseWheelBehavior(MouseWheelBehavior mwb);
|
||||||
QSettings *m_qsettings;
|
void setInitWindowSizeBehavior(WindowSizeBehavior wsb);
|
||||||
|
void setHiDpiScaleFactorBehavior(Qt::HighDpiScaleFactorRoundingPolicy hidpi);
|
||||||
signals:
|
|
||||||
|
void applyUserShortcuts(QWidget * widget);
|
||||||
public slots:
|
bool setShortcutsForAction(QWidget * widget, const QString & objectName,
|
||||||
};
|
QList<QKeySequence> shortcuts, bool writeConfig = true);
|
||||||
|
|
||||||
|
private:
|
||||||
|
Settings();
|
||||||
|
|
||||||
|
static Settings *m_settings_instance;
|
||||||
|
|
||||||
|
QSettings *m_qsettings;
|
||||||
|
|
||||||
|
signals:
|
||||||
|
|
||||||
|
public slots:
|
||||||
|
};
|
||||||
|
@ -1,128 +1,207 @@
|
|||||||
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
#include "settingsdialog.h"
|
#include "settingsdialog.h"
|
||||||
|
|
||||||
#include "settings.h"
|
#include "settings.h"
|
||||||
|
#include "shortcutedit.h"
|
||||||
#include <QCheckBox>
|
|
||||||
#include <QComboBox>
|
#include <QAction>
|
||||||
#include <QFormLayout>
|
#include <QCheckBox>
|
||||||
#include <QStringListModel>
|
#include <QComboBox>
|
||||||
|
#include <QFormLayout>
|
||||||
SettingsDialog::SettingsDialog(QWidget *parent)
|
#include <QKeySequenceEdit>
|
||||||
: QDialog(parent)
|
#include <QScrollArea>
|
||||||
, m_stayOnTop(new QCheckBox)
|
#include <QSplitter>
|
||||||
, m_useLightCheckerboard(new QCheckBox)
|
#include <QStringListModel>
|
||||||
, m_doubleClickBehavior(new QComboBox)
|
#include <QMessageBox>
|
||||||
, m_mouseWheelBehavior(new QComboBox)
|
|
||||||
, m_initWindowSizeBehavior(new QComboBox)
|
SettingsDialog::SettingsDialog(QWidget *parent)
|
||||||
, m_hiDpiRoundingPolicyBehavior(new QComboBox)
|
: QDialog(parent)
|
||||||
{
|
, m_stayOnTop(new QCheckBox)
|
||||||
this->setWindowTitle(tr("Settings"));
|
, m_useBuiltInCloseAnimation(new QCheckBox)
|
||||||
|
, m_useLightCheckerboard(new QCheckBox)
|
||||||
QFormLayout * settingsForm = new QFormLayout(this);
|
, m_loopGallery(new QCheckBox)
|
||||||
|
, m_autoLongImageMode(new QCheckBox)
|
||||||
static QList< QPair<Settings::DoubleClickBehavior, QString> > _dc_options {
|
, m_doubleClickBehavior(new QComboBox)
|
||||||
{ Settings::DoubleClickBehavior::Ignore, tr("Do nothing") },
|
, m_mouseWheelBehavior(new QComboBox)
|
||||||
{ Settings::DoubleClickBehavior::Close, tr("Close the window") },
|
, m_initWindowSizeBehavior(new QComboBox)
|
||||||
{ Settings::DoubleClickBehavior::Maximize, tr("Toggle maximize") }
|
, m_hiDpiRoundingPolicyBehavior(new QComboBox)
|
||||||
};
|
{
|
||||||
|
this->setWindowTitle(tr("Settings"));
|
||||||
static QList< QPair<Settings::MouseWheelBehavior, QString> > _mw_options {
|
|
||||||
{ Settings::MouseWheelBehavior::Zoom, tr("Zoom in and out") },
|
QHBoxLayout * mainLayout = new QHBoxLayout(this);
|
||||||
{ Settings::MouseWheelBehavior::Switch, tr("View next or previous item") }
|
QTabWidget * settingsTabs = new QTabWidget(this);
|
||||||
};
|
mainLayout->addWidget(settingsTabs);
|
||||||
|
|
||||||
static QList< QPair<Settings::WindowSizeBehavior, QString> > _iws_options {
|
QWidget * settingsFormHolder = new QWidget;
|
||||||
{ Settings::WindowSizeBehavior::Auto, tr("Auto size") },
|
QFormLayout * settingsForm = new QFormLayout(settingsFormHolder);
|
||||||
{ Settings::WindowSizeBehavior::Maximized, tr("Maximized") }
|
settingsTabs->addTab(settingsFormHolder, tr("Options"));
|
||||||
};
|
|
||||||
|
QSplitter * shortcutEditorSplitter = new QSplitter;
|
||||||
static QList< QPair<Qt::HighDpiScaleFactorRoundingPolicy, QString> > _hidpi_options {
|
shortcutEditorSplitter->setOrientation(Qt::Vertical);
|
||||||
{ Qt::HighDpiScaleFactorRoundingPolicy::Round, tr("Round (Integer scaling)", "This option means round up for .5 and above") },
|
shortcutEditorSplitter->setChildrenCollapsible(false);
|
||||||
{ Qt::HighDpiScaleFactorRoundingPolicy::Ceil, tr("Ceil (Integer scaling)", "This option means always round up") },
|
QScrollArea * shortcutScrollArea = new QScrollArea;
|
||||||
{ Qt::HighDpiScaleFactorRoundingPolicy::Floor, tr("Floor (Integer scaling)", "This option means always round down") },
|
shortcutEditorSplitter->addWidget(shortcutScrollArea);
|
||||||
{ Qt::HighDpiScaleFactorRoundingPolicy::PassThrough, tr("Follow system (Fractional scaling)", "This option means don't round") }
|
shortcutScrollArea->setWidgetResizable(true);
|
||||||
};
|
shortcutScrollArea->setMinimumHeight(200);
|
||||||
|
QWidget * shortcutsFormHolder = new QWidget;
|
||||||
QStringList dcbDropDown;
|
QFormLayout * shortcutsForm = new QFormLayout(shortcutsFormHolder);
|
||||||
for (const QPair<Settings::DoubleClickBehavior, QString> & dcOption : _dc_options) {
|
shortcutScrollArea->setWidget(shortcutsFormHolder);
|
||||||
dcbDropDown.append(dcOption.second);
|
settingsTabs->addTab(shortcutEditorSplitter, tr("Shortcuts"));
|
||||||
}
|
|
||||||
|
for (const QAction * action : parent->actions()) {
|
||||||
QStringList mwbDropDown;
|
ShortcutEdit * shortcutEdit = new ShortcutEdit;
|
||||||
for (const QPair<Settings::MouseWheelBehavior, QString> & mwOption : _mw_options) {
|
shortcutEdit->setObjectName(QLatin1String("shortcut_") + action->objectName());
|
||||||
mwbDropDown.append(mwOption.second);
|
shortcutEdit->setShortcuts(action->shortcuts());
|
||||||
}
|
shortcutsForm->addRow(action->text(), shortcutEdit);
|
||||||
|
connect(shortcutEdit, &ShortcutEdit::editButtonClicked, this, [=](){
|
||||||
QStringList iwsbDropDown;
|
if (shortcutEditorSplitter->count() == 1) shortcutEditorSplitter->addWidget(new QWidget);
|
||||||
for (const QPair<Settings::WindowSizeBehavior, QString> & iwsOption : _iws_options) {
|
ShortcutEditor * shortcutEditor = new ShortcutEditor(shortcutEdit);
|
||||||
iwsbDropDown.append(iwsOption.second);
|
shortcutEditor->setDescription(tr("Editing shortcuts for action \"%1\":").arg(action->text()));
|
||||||
}
|
QWidget * oldEditor = shortcutEditorSplitter->replaceWidget(1, shortcutEditor);
|
||||||
|
shortcutEditorSplitter->setSizes({shortcutEditorSplitter->height(), 1});
|
||||||
QStringList hidpiDropDown;
|
oldEditor->deleteLater();
|
||||||
for (const QPair<Qt::HighDpiScaleFactorRoundingPolicy, QString> & hidpiOption : _hidpi_options) {
|
});
|
||||||
hidpiDropDown.append(hidpiOption.second);
|
connect(shortcutEdit, &ShortcutEdit::applyShortcutsRequested, this, [=](QList<QKeySequence> newShortcuts){
|
||||||
}
|
bool succ = Settings::instance()->setShortcutsForAction(parent, shortcutEdit->objectName().mid(9),
|
||||||
|
newShortcuts);
|
||||||
settingsForm->addRow(tr("Stay on top when start-up"), m_stayOnTop);
|
if (!succ) {
|
||||||
settingsForm->addRow(tr("Use light-color checkerboard"), m_useLightCheckerboard);
|
QMessageBox::warning(this, tr("Failed to set shortcuts"),
|
||||||
settingsForm->addRow(tr("Double-click behavior"), m_doubleClickBehavior);
|
tr("Please check if shortcuts are duplicated with existing shortcuts."));
|
||||||
settingsForm->addRow(tr("Mouse wheel behavior"), m_mouseWheelBehavior);
|
}
|
||||||
settingsForm->addRow(tr("Default window size"), m_initWindowSizeBehavior);
|
shortcutEdit->setShortcuts(action->shortcuts());
|
||||||
settingsForm->addRow(tr("HiDPI scale factor rounding policy"), m_hiDpiRoundingPolicyBehavior);
|
});
|
||||||
|
}
|
||||||
m_stayOnTop->setChecked(Settings::instance()->stayOnTop());
|
|
||||||
m_useLightCheckerboard->setChecked(Settings::instance()->useLightCheckerboard());
|
static QList< QPair<Settings::DoubleClickBehavior, QString> > _dc_options {
|
||||||
m_doubleClickBehavior->setModel(new QStringListModel(dcbDropDown));
|
{ Settings::DoubleClickBehavior::Ignore, tr("Do nothing") },
|
||||||
Settings::DoubleClickBehavior dcb = Settings::instance()->doubleClickBehavior();
|
{ Settings::DoubleClickBehavior::Close, tr("Close the window") },
|
||||||
m_doubleClickBehavior->setCurrentIndex(static_cast<int>(dcb));
|
{ Settings::DoubleClickBehavior::Maximize, tr("Toggle maximize") },
|
||||||
m_mouseWheelBehavior->setModel(new QStringListModel(mwbDropDown));
|
{ Settings::DoubleClickBehavior::FullScreen, tr("Toggle fullscreen") }
|
||||||
Settings::MouseWheelBehavior mwb = Settings::instance()->mouseWheelBehavior();
|
};
|
||||||
m_mouseWheelBehavior->setCurrentIndex(static_cast<int>(mwb));
|
|
||||||
m_initWindowSizeBehavior->setModel(new QStringListModel(iwsbDropDown));
|
static QList< QPair<Settings::MouseWheelBehavior, QString> > _mw_options {
|
||||||
Settings::WindowSizeBehavior iwsb = Settings::instance()->initWindowSizeBehavior();
|
{ Settings::MouseWheelBehavior::Zoom, tr("Zoom in and out") },
|
||||||
m_initWindowSizeBehavior->setCurrentIndex(static_cast<int>(iwsb));
|
{ Settings::MouseWheelBehavior::Switch, tr("View next or previous item") }
|
||||||
m_hiDpiRoundingPolicyBehavior->setModel(new QStringListModel(hidpiDropDown));
|
};
|
||||||
Qt::HighDpiScaleFactorRoundingPolicy hidpi = Settings::instance()->hiDpiScaleFactorBehavior();
|
|
||||||
for (int i = 0; i < _hidpi_options.count(); i++) {
|
static QList< QPair<Settings::WindowSizeBehavior, QString> > _iws_options {
|
||||||
if (_hidpi_options.at(i).first == hidpi) {
|
{ Settings::WindowSizeBehavior::Auto, tr("Auto size") },
|
||||||
m_hiDpiRoundingPolicyBehavior->setCurrentIndex(i);
|
{ Settings::WindowSizeBehavior::Maximized, tr("Maximized") },
|
||||||
break;
|
{ Settings::WindowSizeBehavior::Windowed, tr("Windowed") }
|
||||||
}
|
};
|
||||||
}
|
|
||||||
|
static QList< QPair<Qt::HighDpiScaleFactorRoundingPolicy, QString> > _hidpi_options {
|
||||||
connect(m_stayOnTop, &QCheckBox::stateChanged, this, [ = ](int state){
|
{ Qt::HighDpiScaleFactorRoundingPolicy::Round, tr("Round (Integer scaling)", "This option means round up for .5 and above") },
|
||||||
Settings::instance()->setStayOnTop(state == Qt::Checked);
|
{ Qt::HighDpiScaleFactorRoundingPolicy::Ceil, tr("Ceil (Integer scaling)", "This option means always round up") },
|
||||||
});
|
{ Qt::HighDpiScaleFactorRoundingPolicy::Floor, tr("Floor (Integer scaling)", "This option means always round down") },
|
||||||
|
{ Qt::HighDpiScaleFactorRoundingPolicy::PassThrough, tr("Follow system (Fractional scaling)", "This option means don't round") }
|
||||||
connect(m_useLightCheckerboard, &QCheckBox::stateChanged, this, [ = ](int state){
|
};
|
||||||
Settings::instance()->setUseLightCheckerboard(state == Qt::Checked);
|
|
||||||
});
|
QStringList dcbDropDown;
|
||||||
|
for (const QPair<Settings::DoubleClickBehavior, QString> & dcOption : _dc_options) {
|
||||||
connect(m_doubleClickBehavior, QOverload<int>::of(&QComboBox::currentIndexChanged), this, [ = ](int index){
|
dcbDropDown.append(dcOption.second);
|
||||||
Settings::instance()->setDoubleClickBehavior(_dc_options.at(index).first);
|
}
|
||||||
});
|
|
||||||
|
QStringList mwbDropDown;
|
||||||
connect(m_mouseWheelBehavior, QOverload<int>::of(&QComboBox::currentIndexChanged), this, [ = ](int index){
|
for (const QPair<Settings::MouseWheelBehavior, QString> & mwOption : _mw_options) {
|
||||||
Settings::instance()->setMouseWheelBehavior(_mw_options.at(index).first);
|
mwbDropDown.append(mwOption.second);
|
||||||
});
|
}
|
||||||
|
|
||||||
connect(m_initWindowSizeBehavior, QOverload<int>::of(&QComboBox::currentIndexChanged), this, [ = ](int index){
|
QStringList iwsbDropDown;
|
||||||
Settings::instance()->setInitWindowSizeBehavior(_iws_options.at(index).first);
|
for (const QPair<Settings::WindowSizeBehavior, QString> & iwsOption : _iws_options) {
|
||||||
});
|
iwsbDropDown.append(iwsOption.second);
|
||||||
|
}
|
||||||
connect(m_hiDpiRoundingPolicyBehavior, QOverload<int>::of(&QComboBox::currentIndexChanged), this, [ = ](int index){
|
|
||||||
Settings::instance()->setHiDpiScaleFactorBehavior(_hidpi_options.at(index).first);
|
QStringList hidpiDropDown;
|
||||||
});
|
for (const QPair<Qt::HighDpiScaleFactorRoundingPolicy, QString> & hidpiOption : _hidpi_options) {
|
||||||
|
hidpiDropDown.append(hidpiOption.second);
|
||||||
adjustSize();
|
}
|
||||||
setWindowFlag(Qt::WindowContextHelpButtonHint, false);
|
|
||||||
}
|
settingsForm->addRow(tr("Stay on top when start-up"), m_stayOnTop);
|
||||||
|
settingsForm->addRow(tr("Use built-in close window animation"), m_useBuiltInCloseAnimation);
|
||||||
SettingsDialog::~SettingsDialog()
|
settingsForm->addRow(tr("Use light-color checkerboard"), m_useLightCheckerboard);
|
||||||
{
|
settingsForm->addRow(tr("Loop the loaded gallery"), m_loopGallery);
|
||||||
|
settingsForm->addRow(tr("Auto long image mode"), m_autoLongImageMode);
|
||||||
}
|
settingsForm->addRow(tr("Double-click behavior"), m_doubleClickBehavior);
|
||||||
|
settingsForm->addRow(tr("Mouse wheel behavior"), m_mouseWheelBehavior);
|
||||||
|
settingsForm->addRow(tr("Default window size"), m_initWindowSizeBehavior);
|
||||||
|
settingsForm->addRow(tr("HiDPI scale factor rounding policy"), m_hiDpiRoundingPolicyBehavior);
|
||||||
|
|
||||||
|
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_autoLongImageMode->setChecked(Settings::instance()->autoLongImageMode());
|
||||||
|
m_doubleClickBehavior->setModel(new QStringListModel(dcbDropDown));
|
||||||
|
Settings::DoubleClickBehavior dcb = Settings::instance()->doubleClickBehavior();
|
||||||
|
m_doubleClickBehavior->setCurrentIndex(static_cast<int>(dcb));
|
||||||
|
m_mouseWheelBehavior->setModel(new QStringListModel(mwbDropDown));
|
||||||
|
Settings::MouseWheelBehavior mwb = Settings::instance()->mouseWheelBehavior();
|
||||||
|
m_mouseWheelBehavior->setCurrentIndex(static_cast<int>(mwb));
|
||||||
|
m_initWindowSizeBehavior->setModel(new QStringListModel(iwsbDropDown));
|
||||||
|
Settings::WindowSizeBehavior iwsb = Settings::instance()->initWindowSizeBehavior();
|
||||||
|
m_initWindowSizeBehavior->setCurrentIndex(static_cast<int>(iwsb));
|
||||||
|
m_hiDpiRoundingPolicyBehavior->setModel(new QStringListModel(hidpiDropDown));
|
||||||
|
Qt::HighDpiScaleFactorRoundingPolicy hidpi = Settings::instance()->hiDpiScaleFactorBehavior();
|
||||||
|
for (int i = 0; i < _hidpi_options.count(); i++) {
|
||||||
|
if (_hidpi_options.at(i).first == hidpi) {
|
||||||
|
m_hiDpiRoundingPolicyBehavior->setCurrentIndex(i);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#if QT_VERSION >= QT_VERSION_CHECK(6, 7, 0)
|
||||||
|
# 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);
|
||||||
|
});
|
||||||
|
|
||||||
|
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_autoLongImageMode, &QCHECKBOX_CHECKSTATECHANGED, this, [ = ](QT_CHECKSTATE state){
|
||||||
|
Settings::instance()->setAutoLongImageMode(state == Qt::Checked);
|
||||||
|
});
|
||||||
|
|
||||||
|
connect(m_doubleClickBehavior, QOverload<int>::of(&QComboBox::currentIndexChanged), this, [ = ](int index){
|
||||||
|
Settings::instance()->setDoubleClickBehavior(_dc_options.at(index).first);
|
||||||
|
});
|
||||||
|
|
||||||
|
connect(m_mouseWheelBehavior, QOverload<int>::of(&QComboBox::currentIndexChanged), this, [ = ](int index){
|
||||||
|
Settings::instance()->setMouseWheelBehavior(_mw_options.at(index).first);
|
||||||
|
});
|
||||||
|
|
||||||
|
connect(m_initWindowSizeBehavior, QOverload<int>::of(&QComboBox::currentIndexChanged), this, [ = ](int index){
|
||||||
|
Settings::instance()->setInitWindowSizeBehavior(_iws_options.at(index).first);
|
||||||
|
});
|
||||||
|
|
||||||
|
connect(m_hiDpiRoundingPolicyBehavior, QOverload<int>::of(&QComboBox::currentIndexChanged), this, [ = ](int index){
|
||||||
|
Settings::instance()->setHiDpiScaleFactorBehavior(_hidpi_options.at(index).first);
|
||||||
|
});
|
||||||
|
|
||||||
|
adjustSize();
|
||||||
|
setWindowFlag(Qt::WindowContextHelpButtonHint, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
SettingsDialog::~SettingsDialog()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
@ -1,33 +1,36 @@
|
|||||||
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
#ifndef SETTINGSDIALOG_H
|
#ifndef SETTINGSDIALOG_H
|
||||||
#define SETTINGSDIALOG_H
|
#define SETTINGSDIALOG_H
|
||||||
|
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
|
||||||
class QCheckBox;
|
class QCheckBox;
|
||||||
class QComboBox;
|
class QComboBox;
|
||||||
class SettingsDialog : public QDialog
|
class SettingsDialog : public QDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
explicit SettingsDialog(QWidget *parent = nullptr);
|
explicit SettingsDialog(QWidget *parent = nullptr);
|
||||||
~SettingsDialog();
|
~SettingsDialog();
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
|
|
||||||
private:
|
private:
|
||||||
QCheckBox * m_stayOnTop = nullptr;
|
QCheckBox * m_stayOnTop = nullptr;
|
||||||
QCheckBox * m_useLightCheckerboard = nullptr;
|
QCheckBox * m_useBuiltInCloseAnimation = nullptr;
|
||||||
QComboBox * m_doubleClickBehavior = nullptr;
|
QCheckBox * m_useLightCheckerboard = nullptr;
|
||||||
QComboBox * m_mouseWheelBehavior = nullptr;
|
QCheckBox * m_loopGallery = nullptr;
|
||||||
QComboBox * m_initWindowSizeBehavior = nullptr;
|
QCheckBox * m_autoLongImageMode = nullptr;
|
||||||
QComboBox * m_hiDpiRoundingPolicyBehavior = nullptr;
|
QComboBox * m_doubleClickBehavior = nullptr;
|
||||||
};
|
QComboBox * m_mouseWheelBehavior = nullptr;
|
||||||
|
QComboBox * m_initWindowSizeBehavior = nullptr;
|
||||||
#endif // SETTINGSDIALOG_H
|
QComboBox * m_hiDpiRoundingPolicyBehavior = nullptr;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // SETTINGSDIALOG_H
|
||||||
|
126
app/shortcutedit.cpp
Normal file
126
app/shortcutedit.cpp
Normal file
@ -0,0 +1,126 @@
|
|||||||
|
// 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();
|
||||||
|
}
|
55
app/shortcutedit.h
Normal file
55
app/shortcutedit.h
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
// 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;
|
||||||
|
};
|
@ -1,38 +1,38 @@
|
|||||||
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
#include "toolbutton.h"
|
#include "toolbutton.h"
|
||||||
|
|
||||||
#include "actionmanager.h"
|
#include "actionmanager.h"
|
||||||
#include "opacityhelper.h"
|
#include "opacityhelper.h"
|
||||||
|
|
||||||
#include <QPainter>
|
#include <QPainter>
|
||||||
#include <QGraphicsOpacityEffect>
|
#include <QGraphicsOpacityEffect>
|
||||||
#include <QPropertyAnimation>
|
#include <QPropertyAnimation>
|
||||||
|
|
||||||
ToolButton::ToolButton(bool hoverColor, QWidget *parent)
|
ToolButton::ToolButton(bool hoverColor, QWidget *parent)
|
||||||
: QPushButton(parent)
|
: QPushButton(parent)
|
||||||
, m_opacityHelper(new OpacityHelper(this))
|
, m_opacityHelper(new OpacityHelper(this))
|
||||||
{
|
{
|
||||||
setFlat(true);
|
setFlat(true);
|
||||||
QString qss = "QPushButton {"
|
QString qss = "QPushButton {"
|
||||||
"background: transparent;"
|
"background: transparent;"
|
||||||
"}";
|
"}";
|
||||||
if (hoverColor) {
|
if (hoverColor) {
|
||||||
qss += "QPushButton:hover {"
|
qss += "QPushButton:hover {"
|
||||||
"background: red;"
|
"background: red;"
|
||||||
"}";
|
"}";
|
||||||
}
|
}
|
||||||
setStyleSheet(qss);
|
setStyleSheet(qss);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ToolButton::setIconResourcePath(const QString &iconp)
|
void ToolButton::setIconResourcePath(const QString &iconp)
|
||||||
{
|
{
|
||||||
this->setIcon(ActionManager::loadHidpiIcon(iconp, this->iconSize()));
|
this->setIcon(ActionManager::loadHidpiIcon(iconp, this->iconSize()));
|
||||||
}
|
}
|
||||||
|
|
||||||
void ToolButton::setOpacity(qreal opacity, bool animated)
|
void ToolButton::setOpacity(qreal opacity, bool animated)
|
||||||
{
|
{
|
||||||
m_opacityHelper->setOpacity(opacity, animated);
|
m_opacityHelper->setOpacity(opacity, animated);
|
||||||
}
|
}
|
||||||
|
@ -1,25 +1,25 @@
|
|||||||
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
#ifndef TOOLBUTTON_H
|
#ifndef TOOLBUTTON_H
|
||||||
#define TOOLBUTTON_H
|
#define TOOLBUTTON_H
|
||||||
|
|
||||||
#include <QPushButton>
|
#include <QPushButton>
|
||||||
|
|
||||||
class OpacityHelper;
|
class OpacityHelper;
|
||||||
class ToolButton : public QPushButton
|
class ToolButton : public QPushButton
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
ToolButton(bool hoverColor = false, QWidget * parent = nullptr);
|
ToolButton(bool hoverColor = false, QWidget * parent = nullptr);
|
||||||
void setIconResourcePath(const QString &iconp);
|
void setIconResourcePath(const QString &iconp);
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void setOpacity(qreal opacity, bool animated = true);
|
void setOpacity(qreal opacity, bool animated = true);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
OpacityHelper * m_opacityHelper;
|
OpacityHelper * m_opacityHelper;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // TOOLBUTTON_H
|
#endif // TOOLBUTTON_H
|
||||||
|
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
896
app/translations/PineapplePictures_ta.ts
Normal file
896
app/translations/PineapplePictures_ta.ts
Normal file
@ -0,0 +1,896 @@
|
|||||||
|
<?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="292"/>
|
||||||
|
<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="190"/>
|
||||||
|
<location filename="../mainwindow.cpp" line="561"/>
|
||||||
|
<source>File url list is empty</source>
|
||||||
|
<translation>கோப்பு முகவரி பட்டியல் காலியாக உள்ளது</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="461"/>
|
||||||
|
<source>&Copy</source>
|
||||||
|
<translation>நகலெடு (&c)</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="569"/>
|
||||||
|
<source>Image data is invalid</source>
|
||||||
|
<translation>படத் தரவு தவறானது</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="576"/>
|
||||||
|
<source>Not supported mimedata: %1</source>
|
||||||
|
<translation>மைமெடாட்டாவை ஆதரிக்கவில்லை: %1</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="783"/>
|
||||||
|
<source>Image From Clipboard</source>
|
||||||
|
<translation>கிளிப்போர்டிலிருந்து படம்</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="801"/>
|
||||||
|
<source>Are you sure you want to move "%1" to recycle bin?</source>
|
||||||
|
<translation>பின் மறுசுழற்சி செய்ய "%1" ஐ நகர்த்த விரும்புகிறீர்களா?</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="805"/>
|
||||||
|
<source>Failed to move file to trash</source>
|
||||||
|
<translation>கோப்பை குப்பைக்கு நகர்த்துவதில் தோல்வி</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="806"/>
|
||||||
|
<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="106"/>
|
||||||
|
<source>Copy P&ixmap</source>
|
||||||
|
<translation>பி & ஐஎக்ச்மேப்பை நகலெடுக்கவும்</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="107"/>
|
||||||
|
<source>Copy &File Path</source>
|
||||||
|
<translation>கோப்பு பாதையை நகலெடுக்கவும்</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="125"/>
|
||||||
|
<source>Properties</source>
|
||||||
|
<translation>பண்புகள்</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="110"/>
|
||||||
|
<location filename="../aboutdialog.cpp" line="41"/>
|
||||||
|
<source>Stay on top</source>
|
||||||
|
<translation>மேலே இருங்கள்</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="111"/>
|
||||||
|
<location filename="../aboutdialog.cpp" line="44"/>
|
||||||
|
<source>Protected mode</source>
|
||||||
|
<translation>பாதுகாக்கப்பட்ட பயன்முறை</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="112"/>
|
||||||
|
<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="90"/>
|
||||||
|
<source>Zoom in</source>
|
||||||
|
<translation>பெரிதாக்கு</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="91"/>
|
||||||
|
<source>Zoom out</source>
|
||||||
|
<translation>சிறிதாக்கு</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="99"/>
|
||||||
|
<source>Pause/Resume Animation</source>
|
||||||
|
<translation>இடைநிறுத்தம்/அனிமேசனை மீண்டும் தொடங்குங்கள்</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="100"/>
|
||||||
|
<source>Animation Go to Next Frame</source>
|
||||||
|
<translation>அனிமேசன் அடுத்த சட்டகத்திற்குச் செல்லுங்கள்</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="102"/>
|
||||||
|
<source>Flip &Horizontally</source>
|
||||||
|
<translation>கிடைமட்டமாக புரட்டவும்</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="103"/>
|
||||||
|
<source>Fit to view</source>
|
||||||
|
<translation>பார்க்க பொருத்தமானது</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="104"/>
|
||||||
|
<source>Fit to width</source>
|
||||||
|
<translation>அகலத்திற்கு ஏற்றது</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="105"/>
|
||||||
|
<source>Fit long image</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="108"/>
|
||||||
|
<source>&Paste</source>
|
||||||
|
<translation>ஒட்டு (&p)</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="92"/>
|
||||||
|
<source>Toggle Checkerboard</source>
|
||||||
|
<translation>செக்கர்போர்டை மாற்றவும்</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="86"/>
|
||||||
|
<source>&Open...</source>
|
||||||
|
<translation>& திறந்த ...</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="88"/>
|
||||||
|
<source>Actual size</source>
|
||||||
|
<translation>உண்மையான அளவு</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="89"/>
|
||||||
|
<source>Toggle maximize</source>
|
||||||
|
<translation>அதிகபட்சத்தை மாற்றவும்</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="93"/>
|
||||||
|
<source>Rotate right</source>
|
||||||
|
<translation>வலதுபுறம் சுழற்றுங்கள்</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="94"/>
|
||||||
|
<source>Rotate left</source>
|
||||||
|
<translation>இடதுபுறம் சுழலும்</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="96"/>
|
||||||
|
<source>Previous image</source>
|
||||||
|
<translation>முந்தைய படம்</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="97"/>
|
||||||
|
<source>Next image</source>
|
||||||
|
<translation>அடுத்த படம்</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../mainwindow.cpp" line="800"/>
|
||||||
|
<location filename="../actionmanager.cpp" line="109"/>
|
||||||
|
<source>Move to Trash</source>
|
||||||
|
<translation>குப்பைக்கு நகர்த்தவும்</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="113"/>
|
||||||
|
<source>Configure...</source>
|
||||||
|
<translation>உள்ளமைக்கவும் ...</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="114"/>
|
||||||
|
<source>Help</source>
|
||||||
|
<translation>உதவி</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="117"/>
|
||||||
|
<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="123"/>
|
||||||
|
<source>Show in directory</source>
|
||||||
|
<translation>கோப்பகத்தில் காட்டு</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../actionmanager.cpp" line="126"/>
|
||||||
|
<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="32"/>
|
||||||
|
<source>Settings</source>
|
||||||
|
<translation>அமைப்புகள்</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../settingsdialog.cpp" line="40"/>
|
||||||
|
<source>Options</source>
|
||||||
|
<translation>விருப்பங்கள்</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../settingsdialog.cpp" line="52"/>
|
||||||
|
<source>Shortcuts</source>
|
||||||
|
<translation>குறுக்குவழிகள்</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../settingsdialog.cpp" line="62"/>
|
||||||
|
<source>Editing shortcuts for action "%1":</source>
|
||||||
|
<translation>செயலுக்கான குறுக்குவழிகளைத் திருத்துதல் "%1":</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../settingsdialog.cpp" line="71"/>
|
||||||
|
<source>Failed to set shortcuts</source>
|
||||||
|
<translation>குறுக்குவழிகளை அமைப்பதில் தோல்வி</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../settingsdialog.cpp" line="72"/>
|
||||||
|
<source>Please check if shortcuts are duplicated with existing shortcuts.</source>
|
||||||
|
<translation>தற்போதுள்ள குறுக்குவழிகளுடன் குறுக்குவழிகள் நகல் செய்யப்பட்டுள்ளதா என்று சரிபார்க்கவும்.</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../settingsdialog.cpp" line="79"/>
|
||||||
|
<source>Do nothing</source>
|
||||||
|
<translation>எதுவும் செய்ய வேண்டாம்</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../settingsdialog.cpp" line="80"/>
|
||||||
|
<source>Close the window</source>
|
||||||
|
<translation>சாளரத்தை மூடு</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../settingsdialog.cpp" line="81"/>
|
||||||
|
<source>Toggle maximize</source>
|
||||||
|
<translation>அதிகபட்சத்தை மாற்றவும்</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../settingsdialog.cpp" line="82"/>
|
||||||
|
<source>Toggle fullscreen</source>
|
||||||
|
<translation>மாற்று முழுத்திரை</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../settingsdialog.cpp" line="86"/>
|
||||||
|
<source>Zoom in and out</source>
|
||||||
|
<translation>உள்ளேயும் வெளியேயும் பெரிதாக்கவும்</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../settingsdialog.cpp" line="87"/>
|
||||||
|
<source>View next or previous item</source>
|
||||||
|
<translation>அடுத்த அல்லது முந்தைய உருப்படியைக் காண்க</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../settingsdialog.cpp" line="91"/>
|
||||||
|
<source>Auto size</source>
|
||||||
|
<translation>வாகன அளவு</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../settingsdialog.cpp" line="92"/>
|
||||||
|
<source>Maximized</source>
|
||||||
|
<translation>அதிகபட்சம்</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../settingsdialog.cpp" line="93"/>
|
||||||
|
<source>Windowed</source>
|
||||||
|
<translation>சாளரம்</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../settingsdialog.cpp" line="97"/>
|
||||||
|
<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="98"/>
|
||||||
|
<source>Ceil (Integer scaling)</source>
|
||||||
|
<comment>This option means always round up</comment>
|
||||||
|
<translation>சீல் (முழு எண் அளவிடுதல்)</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../settingsdialog.cpp" line="99"/>
|
||||||
|
<source>Floor (Integer scaling)</source>
|
||||||
|
<comment>This option means always round down</comment>
|
||||||
|
<translation>மாடி (முழு எண் அளவிடுதல்)</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../settingsdialog.cpp" line="100"/>
|
||||||
|
<source>Follow system (Fractional scaling)</source>
|
||||||
|
<comment>This option means don't round</comment>
|
||||||
|
<translation>கணினியைப் பின்பற்றவும் (பகுதியளவு அளவிடுதல்)</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../settingsdialog.cpp" line="123"/>
|
||||||
|
<source>Stay on top when start-up</source>
|
||||||
|
<translation>தொடக்கத்தில் இருக்கும்போது மேலே இருங்கள்</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../settingsdialog.cpp" line="124"/>
|
||||||
|
<source>Use built-in close window animation</source>
|
||||||
|
<translation>உள்ளமைக்கப்பட்ட நெருக்கமான சாளர அனிமேஷனைப் பயன்படுத்தவும்</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../settingsdialog.cpp" line="125"/>
|
||||||
|
<source>Use light-color checkerboard</source>
|
||||||
|
<translation>ஒளி-வண்ண செக்கர்போர்டைப் பயன்படுத்தவும்</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../settingsdialog.cpp" line="126"/>
|
||||||
|
<source>Loop the loaded gallery</source>
|
||||||
|
<translation>ஏற்றப்பட்ட கேலரியை சுற்றுங்கள்</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../settingsdialog.cpp" line="127"/>
|
||||||
|
<source>Auto long image mode</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../settingsdialog.cpp" line="128"/>
|
||||||
|
<source>Double-click behavior</source>
|
||||||
|
<translation>நடத்தை இருமுறை சொடுக்கு செய்யவும்</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../settingsdialog.cpp" line="129"/>
|
||||||
|
<source>Mouse wheel behavior</source>
|
||||||
|
<translation>சுட்டி சக்கர நடத்தை</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../settingsdialog.cpp" line="130"/>
|
||||||
|
<source>Default window size</source>
|
||||||
|
<translation>இயல்புநிலை சாளர அளவு</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../settingsdialog.cpp" line="131"/>
|
||||||
|
<source>HiDPI scale factor rounding policy</source>
|
||||||
|
<translation>HIDPI அளவிலான காரணி ரவுண்டிங் கொள்கை</translation>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>ShortcutEdit</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../shortcutedit.cpp" line="104"/>
|
||||||
|
<source>No shortcuts</source>
|
||||||
|
<translation>குறுக்குவழிகள் இல்லை</translation>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>ShortcutEditor</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../shortcutedit.cpp" line="70"/>
|
||||||
|
<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
20
appveyor.yml
20
appveyor.yml
@ -8,22 +8,14 @@ environment:
|
|||||||
LIBEXIV2: C:\projects\exiv2
|
LIBEXIV2: C:\projects\exiv2
|
||||||
PPKG: C:\projects\ppkg
|
PPKG: C:\projects\ppkg
|
||||||
matrix:
|
matrix:
|
||||||
- job_name: mingw_64_qt6_7
|
- job_name: mingw_64_qt6_8
|
||||||
QTDIR: C:\Qt\6.7\mingw_64
|
QTDIR: C:\Qt\6.8\mingw_64
|
||||||
MINGW64: C:\Qt\Tools\mingw1120_64
|
MINGW64: C:\Qt\Tools\mingw1310_64
|
||||||
KF_BRANCH: master
|
KF_BRANCH: master
|
||||||
EXIV2_VERSION: "0.28.3"
|
EXIV2_VERSION: "0.28.5"
|
||||||
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 --skip-plugin-types tls,networkinformation"
|
||||||
- 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: "-DPREFER_QT_5=ON"
|
|
||||||
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%
|
||||||
@ -98,7 +90,7 @@ 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 -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=%CMAKE_INSTALL_PREFIX%
|
- cmake .. -G "Ninja" -DBUILD_TESTING=OFF -DWITH_LIBZSTD=OFF -DWITH_BZIP2=OFF -DWITH_LIBLZMA=OFF -DWITH_OPENSSL=OFF -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%
|
||||||
@ -125,7 +117,7 @@ build_script:
|
|||||||
- cd kimageformats
|
- cd kimageformats
|
||||||
- mkdir build
|
- mkdir build
|
||||||
- cd build
|
- cd build
|
||||||
- cmake .. -G "Ninja" -DCMAKE_BUILD_TYPE=Release -DKDE_INSTALL_QTPLUGINDIR=%QTDIR%\plugins
|
- cmake .. -G "Ninja" -DBUILD_TESTING=OFF -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%
|
||||||
|
BIN
assets/icons/app-icon.icns
Normal file
BIN
assets/icons/app-icon.icns
Normal file
Binary file not shown.
@ -1,17 +1,18 @@
|
|||||||
IDI_ICON1 ICON DISCARDABLE "icons/app-icon.ico"
|
IDI_ICON1 ICON DISCARDABLE "@CMAKE_CURRENT_SOURCE_DIR@/assets/icons/app-icon.ico"
|
||||||
1 VERSIONINFO
|
1 VERSIONINFO
|
||||||
BEGIN
|
BEGIN
|
||||||
BLOCK "StringFileInfo"
|
BLOCK "StringFileInfo"
|
||||||
BEGIN
|
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) 2024 Gary Wang"
|
||||||
VALUE "ProductName", "Pineapple Pictures"
|
VALUE "ProductName", "Pineapple Pictures"
|
||||||
END
|
VALUE "ProductVersion", "@PROJECT_VERSION@"
|
||||||
END
|
END
|
||||||
BLOCK "VarFileInfo"
|
END
|
||||||
BEGIN
|
BLOCK "VarFileInfo"
|
||||||
VALUE "Translation", 0x409, 1200
|
BEGIN
|
||||||
END
|
VALUE "Translation", 0x409, 1200
|
||||||
END
|
END
|
||||||
|
END
|
@ -13,6 +13,7 @@
|
|||||||
<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, volkov, Сергій</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
136
dist/MacOSXBundleInfo.plist.in
vendored
Normal file
136
dist/MacOSXBundleInfo.plist.in
vendored
Normal file
@ -0,0 +1,136 @@
|
|||||||
|
<?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>
|
@ -6,6 +6,7 @@
|
|||||||
<name xml:lang="ja">Pineapple Pictures</name>
|
<name xml:lang="ja">Pineapple Pictures</name>
|
||||||
<name xml:lang="nl">Pineapple Afbeeldingen</name>
|
<name xml:lang="nl">Pineapple Afbeeldingen</name>
|
||||||
<name xml:lang="ru">Pineapple Pictures</name>
|
<name xml:lang="ru">Pineapple Pictures</name>
|
||||||
|
<name xml:lang="ta">அன்னாசி படங்கள்</name>
|
||||||
<name xml:lang="uk">Pineapple Pictures</name>
|
<name xml:lang="uk">Pineapple Pictures</name>
|
||||||
<name xml:lang="zh-CN">菠萝看图</name>
|
<name xml:lang="zh-CN">菠萝看图</name>
|
||||||
<summary>Image Viewer</summary>
|
<summary>Image Viewer</summary>
|
||||||
@ -13,6 +14,7 @@
|
|||||||
<summary xml:lang="ja">画像ビューアー</summary>
|
<summary xml:lang="ja">画像ビューアー</summary>
|
||||||
<summary xml:lang="nl">Afbeeldingsweergave</summary>
|
<summary xml:lang="nl">Afbeeldingsweergave</summary>
|
||||||
<summary xml:lang="ru">Просмотр изображений</summary>
|
<summary xml:lang="ru">Просмотр изображений</summary>
|
||||||
|
<summary xml:lang="ta">பட பார்வையாளர்</summary>
|
||||||
<summary xml:lang="uk">Переглядач зображень</summary>
|
<summary xml:lang="uk">Переглядач зображень</summary>
|
||||||
<summary xml:lang="zh-CN">图像查看器</summary>
|
<summary xml:lang="zh-CN">图像查看器</summary>
|
||||||
<metadata_license>CC0-1.0</metadata_license>
|
<metadata_license>CC0-1.0</metadata_license>
|
||||||
@ -23,6 +25,7 @@
|
|||||||
<p xml:lang="ja">Pineapple Picturesは、ズームイン時に便利なナビゲーションサムネイルを備えた軽量で使いやすい画像ビューアです。画像管理のサポートは含まれていません。</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="uk">Pineapple Pictures – це легкий і простий у використанні переглядач зображень, який постачається зі зручною навігаційною мініатюрою при збільшенні масштабу і не містить жодної підтримки керування зображеннями.</p>
|
||||||
<p xml:lang="zh-CN">菠萝看图是一个轻量级易用的图像查看器,在图片放大时提供了方便的鸟瞰导航功能,且不包含任何图片管理功能。</p>
|
<p xml:lang="zh-CN">菠萝看图是一个轻量级易用的图像查看器,在图片放大时提供了方便的鸟瞰导航功能,且不包含任何图片管理功能。</p>
|
||||||
</description>
|
</description>
|
||||||
@ -48,6 +51,7 @@
|
|||||||
<caption xml:lang="ja">画像ファイル読み込み時のメインウィンドウ</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="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>
|
||||||
@ -58,6 +62,7 @@
|
|||||||
<caption xml:lang="ja">ラスター画像の拡大</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="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>
|
||||||
@ -68,12 +73,122 @@
|
|||||||
<caption xml:lang="ja">ベクター画像の拡大</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="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>
|
<releases>
|
||||||
|
<release type="stable" version="1.1.1" date="2025-08-02T00:00:00Z">
|
||||||
|
<description>
|
||||||
|
<p>This release adds the following feature:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Click dock icon should show window when it's hidden on macOS</li>
|
||||||
|
</ul>
|
||||||
|
<p>This release fixes the following bug:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Ensure "Fit by Width" position the view to the beginning of the image</li>
|
||||||
|
</ul>
|
||||||
|
<p>This release includes the following changes:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Update translations</li>
|
||||||
|
<li>Update Exiv2 version for Windows binary build</li>
|
||||||
|
</ul>
|
||||||
|
<p>With contributions from:</p>
|
||||||
|
<p>Heimen Stoffels, VenusGirl, தமிழ்நேரம்</p>
|
||||||
|
</description>
|
||||||
|
</release>
|
||||||
|
<release type="stable" version="1.1.0" date="2025-07-06T00:00:00Z">
|
||||||
|
<description>
|
||||||
|
<p>This release adds the following features:</p>
|
||||||
|
<ul>
|
||||||
|
<li>New option to disable built-in close window animation</li>
|
||||||
|
<li>New option to disable gallery looping</li>
|
||||||
|
<li>Support load m3u8 as image gallery playlist</li>
|
||||||
|
</ul>
|
||||||
|
<p>This release includes the following change:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Drop Qt 5 support</li>
|
||||||
|
</ul>
|
||||||
|
<p>With contributions from:</p>
|
||||||
|
<p>Heimen Stoffels, albanobattistella, தமிழ்நேரம்</p>
|
||||||
|
</description>
|
||||||
|
</release>
|
||||||
|
<release type="stable" version="1.0.0" date="2025-05-03T00:00:00Z">
|
||||||
|
<description>
|
||||||
|
<p>This release adds the following features:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Support enforces windowed mode on start-up</li>
|
||||||
|
<li>Reload image automatically when current image gets updated</li>
|
||||||
|
</ul>
|
||||||
|
<p>This release fixes the following bug:</p>
|
||||||
|
<ul>
|
||||||
|
<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">
|
<release type="stable" version="0.8.2.1" date="2024-10-27T00:00:00Z">
|
||||||
<description>
|
<description>
|
||||||
<p>This release fixes the following bug:</p>
|
<p>This release fixes the following bug:</p>
|
||||||
@ -151,7 +266,7 @@
|
|||||||
<description>
|
<description>
|
||||||
<p>This release adds the following features:</p>
|
<p>This release adds the following features:</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>TIF and TIFF format files in the same folder will now be automatedly added to the gallery</li>
|
<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>
|
<li>Built-in window resizing now also supports Linux desktop. (macOS might also works as well)</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p>This release fixes the following bugs:</p>
|
<p>This release fixes the following bugs:</p>
|
||||||
|
52
dist/appstream/po/net.blumia.pineapple-pictures.metainfo.ta.po
vendored
Normal file
52
dist/appstream/po/net.blumia.pineapple-pictures.metainfo.ta.po
vendored
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
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,94 +1,101 @@
|
|||||||
# SPDX-FileCopyrightText: 2024 Gary Wang <git@blumia.net>
|
# SPDX-FileCopyrightText: 2025 Gary Wang <git@blumia.net>
|
||||||
#
|
#
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
QT += core widgets gui svg
|
QT += core widgets gui svg svgwidgets
|
||||||
greaterThan(QT_MAJOR_VERSION, 5): QT += svgwidgets
|
|
||||||
|
TARGET = ppic
|
||||||
TARGET = ppic
|
TEMPLATE = app
|
||||||
TEMPLATE = app
|
DEFINES += PPIC_VERSION_STRING=\\\"x.y.z\\\"
|
||||||
DEFINES += PPIC_VERSION_STRING=\\\"x.y.z\\\"
|
|
||||||
|
win32 {
|
||||||
# The following define makes your compiler emit warnings if you use
|
DEFINES += FLAG_PORTABLE_MODE_SUPPORT=1
|
||||||
# any feature of Qt which has been marked as deprecated (the exact warnings
|
}
|
||||||
# depend on your compiler). Please consult the documentation of the
|
|
||||||
# deprecated API in order to know how to port your code away from it.
|
# The following define makes your compiler emit warnings if you use
|
||||||
DEFINES += QT_DEPRECATED_WARNINGS
|
# any feature of Qt which has been marked as deprecated (the exact warnings
|
||||||
|
# depend on your compiler). Please consult the documentation of the
|
||||||
# You can also make your code fail to compile if you use deprecated APIs.
|
# deprecated API in order to know how to port your code away from it.
|
||||||
# In order to do so, uncomment the following line.
|
DEFINES += QT_DEPRECATED_WARNINGS
|
||||||
# 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
|
# You can also make your code fail to compile if you use deprecated APIs.
|
||||||
|
# In order to do so, uncomment the following line.
|
||||||
CONFIG += c++17 lrelease embed_translations
|
# 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
|
||||||
SOURCES += \
|
|
||||||
app/aboutdialog.cpp \
|
CONFIG += c++17 lrelease embed_translations
|
||||||
app/main.cpp \
|
|
||||||
app/framelesswindow.cpp \
|
SOURCES += \
|
||||||
app/mainwindow.cpp \
|
app/aboutdialog.cpp \
|
||||||
app/graphicsview.cpp \
|
app/main.cpp \
|
||||||
app/bottombuttongroup.cpp \
|
app/framelesswindow.cpp \
|
||||||
app/graphicsscene.cpp \
|
app/mainwindow.cpp \
|
||||||
app/navigatorview.cpp \
|
app/graphicsview.cpp \
|
||||||
app/opacityhelper.cpp \
|
app/bottombuttongroup.cpp \
|
||||||
app/toolbutton.cpp \
|
app/graphicsscene.cpp \
|
||||||
app/settings.cpp \
|
app/navigatorview.cpp \
|
||||||
app/settingsdialog.cpp \
|
app/opacityhelper.cpp \
|
||||||
app/metadatamodel.cpp \
|
app/toolbutton.cpp \
|
||||||
app/metadatadialog.cpp \
|
app/settings.cpp \
|
||||||
app/exiv2wrapper.cpp \
|
app/settingsdialog.cpp \
|
||||||
app/actionmanager.cpp \
|
app/metadatamodel.cpp \
|
||||||
app/playlistmanager.cpp
|
app/metadatadialog.cpp \
|
||||||
|
app/exiv2wrapper.cpp \
|
||||||
HEADERS += \
|
app/actionmanager.cpp \
|
||||||
app/aboutdialog.h \
|
app/playlistmanager.cpp \
|
||||||
app/framelesswindow.h \
|
app/shortcutedit.cpp \
|
||||||
app/mainwindow.h \
|
app/fileopeneventhandler.cpp
|
||||||
app/graphicsview.h \
|
|
||||||
app/bottombuttongroup.h \
|
HEADERS += \
|
||||||
app/graphicsscene.h \
|
app/aboutdialog.h \
|
||||||
app/navigatorview.h \
|
app/framelesswindow.h \
|
||||||
app/opacityhelper.h \
|
app/mainwindow.h \
|
||||||
app/toolbutton.h \
|
app/graphicsview.h \
|
||||||
app/settings.h \
|
app/bottombuttongroup.h \
|
||||||
app/settingsdialog.h \
|
app/graphicsscene.h \
|
||||||
app/metadatamodel.h \
|
app/navigatorview.h \
|
||||||
app/metadatadialog.h \
|
app/opacityhelper.h \
|
||||||
app/exiv2wrapper.h \
|
app/toolbutton.h \
|
||||||
app/actionmanager.h \
|
app/settings.h \
|
||||||
app/playlistmanager.h
|
app/settingsdialog.h \
|
||||||
|
app/metadatamodel.h \
|
||||||
TRANSLATIONS = \
|
app/metadatadialog.h \
|
||||||
app/translations/PineapplePictures.ts \
|
app/exiv2wrapper.h \
|
||||||
app/translations/PineapplePictures_zh_CN.ts \
|
app/actionmanager.h \
|
||||||
app/translations/PineapplePictures_de.ts \
|
app/playlistmanager.h \
|
||||||
app/translations/PineapplePictures_es.ts \
|
app/shortcutedit.h \
|
||||||
app/translations/PineapplePictures_fr.ts \
|
app/fileopeneventhandler.h
|
||||||
app/translations/PineapplePictures_nb_NO.ts \
|
|
||||||
app/translations/PineapplePictures_nl.ts \
|
TRANSLATIONS = \
|
||||||
app/translations/PineapplePictures_ru.ts \
|
app/translations/PineapplePictures_en.ts \
|
||||||
app/translations/PineapplePictures_si.ts \
|
app/translations/PineapplePictures_zh_CN.ts \
|
||||||
app/translations/PineapplePictures_id.ts
|
app/translations/PineapplePictures_de.ts \
|
||||||
|
app/translations/PineapplePictures_es.ts \
|
||||||
# Default rules for deployment.
|
app/translations/PineapplePictures_fr.ts \
|
||||||
qnx: target.path = /tmp/$${TARGET}/bin
|
app/translations/PineapplePictures_nb_NO.ts \
|
||||||
else: unix:!android: target.path = /opt/$${TARGET}/bin
|
app/translations/PineapplePictures_nl.ts \
|
||||||
!isEmpty(target.path): INSTALLS += target
|
app/translations/PineapplePictures_ru.ts \
|
||||||
|
app/translations/PineapplePictures_si.ts \
|
||||||
RESOURCES += \
|
app/translations/PineapplePictures_id.ts
|
||||||
assets/resources.qrc
|
|
||||||
|
# Default rules for deployment.
|
||||||
# Generate from svg:
|
qnx: target.path = /tmp/$${TARGET}/bin
|
||||||
# magick convert -density 512x512 -background none app-icon.svg -define icon:auto-resize app-icon.ico
|
else: unix:!android: target.path = /opt/$${TARGET}/bin
|
||||||
RC_ICONS = assets/icons/app-icon.ico
|
!isEmpty(target.path): INSTALLS += target
|
||||||
|
|
||||||
# Windows only, for rc file (we're not going to use the .rc file in this repo)
|
RESOURCES += \
|
||||||
QMAKE_TARGET_PRODUCT = Pineapple Pictures
|
assets/resources.qrc
|
||||||
QMAKE_TARGET_DESCRIPTION = Pineapple Pictures - Image Viewer
|
|
||||||
QMAKE_TARGET_COPYRIGHT = MIT/Expat License - Copyright (C) 2024 Gary Wang
|
# Generate from svg:
|
||||||
|
# magick convert -density 512x512 -background none app-icon.svg -define icon:auto-resize app-icon.ico
|
||||||
# MSVC only, since QMake doesn't have a CMAKE_CXX_STANDARD_LIBRARIES or cpp_winlibs similar thing
|
RC_ICONS = assets/icons/app-icon.ico
|
||||||
win32-msvc* {
|
|
||||||
LIBS += -luser32
|
# Windows only, for rc file (we're not going to use the .rc file in this repo)
|
||||||
}
|
QMAKE_TARGET_PRODUCT = Pineapple Pictures
|
||||||
|
QMAKE_TARGET_DESCRIPTION = Pineapple Pictures - Image Viewer
|
||||||
|
QMAKE_TARGET_COPYRIGHT = MIT/Expat License - Copyright (C) 2024 Gary Wang
|
||||||
|
|
||||||
|
# MSVC only, since QMake doesn't have a CMAKE_CXX_STANDARD_LIBRARIES or cpp_winlibs similar thing
|
||||||
|
win32-msvc* {
|
||||||
|
LIBS += -luser32
|
||||||
|
}
|
||||||
|
Reference in New Issue
Block a user