Montel Laurent
e03e6f6863
Use Q_DECL_OVERRIDE
11 years ago
Montel Laurent
a8c13a9e1d
Add Q_DECL_OVERRIDE
11 years ago
Montel Laurent
26e4f8de60
Use QVector here too
11 years ago
Montel Laurent
3c8daf3068
Use QVector
11 years ago
Montel Laurent
3102cd8665
Add explicit
11 years ago
Marco Martin
2d21f8a6b5
restore page shadows
11 years ago
Marco Martin
511054c423
set the contents size as the full size
...
crash--
11 years ago
David Faure
d5bad89a51
Fix crash on startup when okularpart can't be found
11 years ago
Marco Martin
2533561418
uncomment add_subdirectory(doc)
...
was disabled by mistake
11 years ago
Marco Martin
73d1d3bea2
remove nonexistent property
11 years ago
Marco Martin
f3698b6d69
port away from ViewSearch
11 years ago
Montel Laurent
13ad9aa53b
Add Q_DECL_OVERRIDE
11 years ago
Montel Laurent
70159dc61f
Add ';'
11 years ago
Montel Laurent
adde882203
increase version
11 years ago
Montel Laurent
4a1c9687cf
Port QCursor. Use QStringLiteral
11 years ago
Montel Laurent
49ce3fc4d2
Merge remote-tracking branch 'origin/master' into frameworks
...
Conflicts:
core/version.h
11 years ago
David Faure
94b95d8fda
Print out better error message if a plugin can't be loaded.
...
(turns out that poppler installs into lib/ rather than lib64/)
11 years ago
Albert Astals Cid
f063b94be3
More TODOs
11 years ago
Albert Astals Cid
dafd8f6972
Bring QPageSize from Qt5
...
Allows us to not use a dummy printer for knowing page size
Which is nice since it won't block because Qt4 QPrinter is a bit weird sometimes
BUGS: 334708
FIXED-IN: KDE Applications 15.08
11 years ago
Albert Astals Cid
6195d6b7f5
Merge remote-tracking branch 'origin/Applications/15.08'
11 years ago
Albert Astals Cid
1da3c424d1
Allow for the deletion of Caret annotations
...
Seems poppler just renders them fine, so we set them to externally rendered and allow annotation
FIXED-IN: KDE Applications 15.08
BUGS: 350740
11 years ago
David Faure
8eb8cfcf1a
set cmake_min_req to match kdelibs policy and enable newer cmake policies
11 years ago
Yuri Chornoivan
793b8ee3f2
Fix my typo
11 years ago
Michel Ludwig
f98eb936d5
Fix url creation in 'Document::processSourceReference'
...
This commit fixes the error message "<url> is not a local file" when processing
source references. 'giveAbsolutePath(QString)' returns a local file name, so we
create the corresponding url using 'QUrl::fromLocalFile'.
11 years ago
Marco Martin
991e11e81b
generate settings.cpp from the kcfgc file
11 years ago
Albert Astals Cid
ade9fe5bdb
Increase version number
11 years ago
Albert Astals Cid
f50d504d24
Merge remote-tracking branch 'origin/Applications/15.08'
11 years ago
Albert Astals Cid
be793983eb
Increase version number
11 years ago
Marco Martin
43e6d63e96
a simple file browser ui
...
a file browser ui shown when no files are passed to commandline,
just lists files from ~/Documents
11 years ago
Marco Martin
9c9a928e12
directly use needed files from ui
...
don't link to okularpart, it won't be able to find it where
it's installed (under plugins)
11 years ago
Yuri Chornoivan
5a13bf8b1d
Remove extra requirements for Poppler in docs according to Burkhard's request
11 years ago
Yuri Chornoivan
d6ea3e17f7
Explain difference between 'Save as...' and 'Save copy as...' in the handbook
...
BUG: 348644
11 years ago
l10n daemon script
1d36cd158f
SVN_SILENT made messages (.desktop file) - always resolve ours
...
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
11 years ago
Jan Kundrát
abd30fb774
s/auto_ptr/unique_ptr/
...
The old auto_ptr was used for simple RAII. None of the auto_ptr flaws
were apparent in that context, but given that that class is actively
deprecated and that compilers warn about its use, it's better to switch
to its drop-in replacement.
My reason for not using QScopedPointer is that the C++11 version works
well enough, Okular is being built in C++11 mode anyway, unique_ptr
works on the KF5-minimal-mandated-compilers according to their docs, and
therefore there's no point in using something with a different API
(QScopedPointer) just because its name begins with a Q.
REVIEW: 124027
11 years ago
Alex Richardson
5ecffc246b
Set the CMake target name from Okular::okularcore to Okular::Core
...
REVIEW: 124381
11 years ago
Alex Richardson
f9b90348ec
Make the KF5 okular library coinstallable with the KDE4 version
...
The KF5 based library has been renamed to libOkular5Core.so so that
both can coexist in /usr/lib(64)
REVIEW: 124381
11 years ago
Alex Richardson
ed352a06fb
Install Okular5Config.cmake instead of OkularConfig.cmake
...
Otherwise Qt4 projects that have a find_package(Okular) can break
because CMake then selects moc from Qt5 which won't work
REVIEW: 124381
11 years ago
Saheb Preet Singh
48905cf16b
Support Fade transition in presentation mode
...
REVIEW: 115532
BUGS: 317073
11 years ago
Albert Astals Cid
3e77904f31
Compile++
11 years ago
Albert Astals Cid
69afbeeee2
Multiply by ~10 the memory values
...
Since we did something similar for the maximum per request value
11 years ago
Albert Astals Cid
8bbe773b23
Increase the number of pixels we're going to let render even if we don't have the pixmap
...
Also always allow for downscaling
11 years ago
Albert Astals Cid
b088001a7c
Increase the per request limit from ~80M to ~800M
...
Unless you're in greedy mode that we won't protect you from yourself :D
CCMAIL: 349863
11 years ago
l10n daemon script
9b6e42ea29
SVN_SILENT made messages (.desktop file) - always resolve ours
...
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
11 years ago
Alex Richardson
c2fc0199b8
Use KPluginFactory::createInstance<Okular::Generator>()
...
Now that all generators have the necessary Q_INTERFACES() it works again
This restores the behaviour from before commit e4a4d400c3
REVIEW: 123466
11 years ago
Alex Richardson
1049dc188a
Add Q_INTERFACES( Okular::Generator ) to all plugins
...
This seems to be required with KPluginFactory and Qt5 since without it
KPluginFactory::create<Okular::Generator>() always returns null.
For some reason this requires a complete rebuild before generatorstest
passes.
REVIEW: 123466
11 years ago
Alex Richardson
8059e5b686
Add a test to see whether generators can be loaded
...
REVIEW: 123466
11 years ago
Alex Richardson
0ef5903c73
Use ecm_add_test correctly
...
The first argument is not the target name but one of the source files.
11 years ago
Albert Astals Cid
6ac112ef84
Merge remote-tracking branch 'origin/Applications/15.04'
...
Conflicts:
VERSION
core/version.h
11 years ago
Albert Astals Cid
6a8a266d3c
0.22.2
...
For Applications 15.04.2
SVN_SILENT
11 years ago
Albert Astals Cid
3f55cc1e90
Try to fix Mac/clang build
11 years ago