Albert Astals Cid
e9e3d4a435
Make documentInfo be Hash based instead of XML based
12 years ago
Albert Astals Cid
3f3f82afa1
Fix my email address
13 years ago
Thomas Fischer
2e18b64a64
Properties dialog: switch to QFormLayout and showing icon for mime type
...
REVIEW: 107357
13 years ago
Albert Astals Cid
6d9c889422
orderedProperties should contain keys (i.e. tagnames) not titles
...
Otherwise we are not showing "custom" generator properties like PDF format version number, encryption, etc
14 years ago
Albert Astals Cid
e338160109
orderedProperties should contain keys (i.e. tagnames) not titles
...
Otherwise we are not showing "custom" generator properties like PDF format version number, encryption, etc
14 years ago
Montel Laurent
f9f65979f5
Normalize signals/slots
15 years ago
Luigi Toscano
b3eda791f4
Document properties: remove toggle button
...
Simply shows the full path, file name can be extracted from it.
The button did not toggle between title and file path, also
because title is always shown if found.
svn path=/trunk/KDE/kdegraphics/okular/; revision=1152390
16 years ago
Pino Toscano
b025b4113a
activate the overwriting confirmation in all the other file save dialogs
...
svn path=/trunk/KDE/kdegraphics/okular/; revision=1066352
16 years ago
Luigi Toscano
4fbb5676c1
Add support for DVI fonts (TeX font type) to FontInfo, as they can not mapped
...
to the existing ones.
Remove human-readable descriptions of fonts from TeXFontDefinition, this is
something that belongs to the PropertiesDialog.
svn path=/trunk/KDE/kdegraphics/okular/; revision=1052191
17 years ago
Albert Astals Cid
2b7265066b
add a tooltip to the button
...
svn path=/trunk/KDE/kdegraphics/okular/; revision=1050253
17 years ago
Albert Astals Cid
b9d749bc0d
Commit "Document information" patch by Luigi Toscano, 8 months without a nack from any devel and i like it, so let's commit it
...
Luigi's mail says
********
The attached patch changes a bit the handling of document informations
and the informations shown in the info page.
- document path is added to the information and a button allows you to
toggle between to file name (default) and the complete path;
- the number of the page is added to the information set by
documentInfo() and not by the properties dialog (so the latter will not
modify datas);
- the order of the information shown is the fixed now (see
orderedProperties).
*********
Then there are a few things of my own since some const here and there and adding three values to Key enum
Also it fixes wish 208999
BUGS: 208999
svn path=/trunk/KDE/kdegraphics/okular/; revision=1049872
17 years ago
Albert Astals Cid
2ca70770dd
add a stretch at the end of the dialog so making it bigger is less ugly
...
BUG: 206856
svn path=/trunk/KDE/kdegraphics/okular/; revision=1023064
17 years ago
Albert Astals Cid
61964b930f
And now okular coupled with poppler from 5 minutes ago has the hability to let you save to file fonts embedded into a pdf file
...
svn path=/trunk/KDE/kdegraphics/okular/; revision=840789
18 years ago
Tobias Koenig
72b469b712
Don't set the minimumSize manually, let QLayout do the job,
...
now that KPageView has been fixed in kdelibs.
BUG: 158570
svn path=/trunk/KDE/kdegraphics/okular/; revision=782913
18 years ago
Pino Toscano
cea186978f
Add a tooltip with the embedded status of the font, and the visual preview of it if it is not embedded.
...
(Columns were simplified by a previous commit.)
BUG: 155568
svn path=/trunk/KDE/kdegraphics/okular/; revision=779697
18 years ago
Pino Toscano
4622f7df85
Font information view:
...
- merge the Embedded and the File columns, showing the file name of the font if not embedded, or the kind of embedding
- add a better placeholder string for empty font names
svn path=/trunk/KDE/kdegraphics/okular/; revision=779695
18 years ago
Pino Toscano
d6b22c270d
reindent and add a switch for the role
...
svn path=/trunk/KDE/kdegraphics/okular/; revision=779693
18 years ago
Pino Toscano
6862247d3c
page is in -1..n-1 now
...
svn path=/trunk/KDE/kdegraphics/okular/; revision=753871
18 years ago
Pino Toscano
8f40bfdb21
If the font name is not available, show '-' to the user (instead of nothing).
...
TODO for the string unfreeze: add a better string.
svn path=/trunk/KDE/kdegraphics/okular/; revision=752578
18 years ago
Pino Toscano
b30621c8ed
put a better icon here
...
svn path=/trunk/KDE/kdegraphics/okular/; revision=746522
19 years ago
Pino Toscano
36e6e85b46
Make the text of the values in the Properties dialog selectable using mouse.
...
BUG: 150293
svn path=/trunk/KDE/kdegraphics/okular/; revision=723800
19 years ago
Pino Toscano
f1d5e478ba
init fix
...
svn path=/trunk/KDE/kdegraphics/okular/; revision=685658
19 years ago
Pino Toscano
964424d62f
stop gracefully the font extraction thread when closing a document or the properties dialog; make the thread deleting itself when finished
...
svn path=/trunk/KDE/kdegraphics/okular/; revision=685437
19 years ago
Pino Toscano
ff308d7f83
hopefully fix the sorting of the fonts
...
svn path=/trunk/KDE/kdegraphics/okular/; revision=685398
19 years ago
Pino Toscano
d746b667a4
minor renamings in the EmbedType enum:
...
- EmbeddedSubSet -> EmbbededSubset
- Embedded -> FullyEmbedded
svn path=/trunk/KDE/kdegraphics/okular/; revision=685329
19 years ago
Pino Toscano
3fd552ef21
Extend the FontInfo class to distinguish the different types of font embedding.
...
svn path=/trunk/KDE/kdegraphics/okular/; revision=685317
19 years ago
Pino Toscano
e5037f45b1
Refator a bit the way Document and the generators use to read the font information from a document.
...
Instead of having a synchronous function that extracts all the information at once, use a function to read the fonts of a single page.
This way, we can get all the result step by step (aka page by page), and possibly in an asynchronous way.
The resuls of the font "scanning" are sent via signals, as well the end of the work.
So, instead of block waiting for the results of all the document at once, the Fonts tab in the properties dialog can have a progress bar with the progress, and the results (the fonts) that are added incrementally to the list.
Only two minor things are left:
- the process is always asynchronous at the moment, as the only generator that can provide this kind of information is the Poppler one (safe)
- there is no check for duplicate fonts
But they should be easy to solve.
svn path=/trunk/KDE/kdegraphics/okular/; revision=685002
19 years ago
Albert Astals Cid
0d47b62715
krazy include order issues
...
svn path=/trunk/KDE/kdegraphics/okular/; revision=655893
19 years ago
Pino Toscano
9ccf6d520d
adapt the icon names to the icon naming spec
...
svn path=/trunk/playground/graphics/okular/; revision=640710
19 years ago
Pino Toscano
7bebb16619
make the sorting model working correctly, thanks to icefox!
...
svn path=/trunk/playground/graphics/okular/; revision=589657
20 years ago
Pino Toscano
71933af682
show something in case of documents with no fonts
...
svn path=/trunk/playground/graphics/okular/; revision=589094
20 years ago
Tobias Koenig
df7d144c10
Moved all classes in core/ into the 'Okular' namespace and removed
...
nearly all references to kpdf (knewstuff still missing).
svn path=/trunk/playground/graphics/okular/; revision=586993
20 years ago
Pino Toscano
14b1e51907
assign shortcuts and icons to the tabs
...
svn path=/trunk/playground/graphics/okular/; revision=563360
20 years ago
Pino Toscano
aafa09c535
for some strange reason the QSortFilterProxyModel seems crashy - so #ifdef it for the moment
...
svn path=/trunk/playground/graphics/okular/; revision=563356
20 years ago
Pino Toscano
0efdeb7d42
don't give them an initial parent
...
svn path=/branches/work/kde4/playground/graphics/okular/; revision=551106
20 years ago
Pino Toscano
d2c5882a27
Port to the new KDialog / KPageDialog API
...
svn path=/branches/work/kde4/playground/graphics/okular/; revision=550944
20 years ago
Pino Toscano
3cdaa5bcb1
do not differentiate the # of pages automatically calculated from the one we get from the generator
...
svn path=/branches/work/kde4/playground/graphics/okular/; revision=550297
20 years ago
Pino Toscano
a3202b9bf0
prettier
...
svn path=/branches/work/kde4/playground/graphics/okular/; revision=540503
20 years ago
Stephan Kulow
2805d4cb34
deprecated--
...
svn path=/trunk/KDE/kdegraphics/kpdf/; revision=537038
20 years ago
Pino Toscano
e3994658b6
make it compile with the new snapshot
...
port to the new i18n api
svn path=/branches/work/kde4/playground/graphics/okular/; revision=528345
20 years ago
Chusslove Illich
87280f3da1
Conversion to new i18n API (see KDE4PORTING.html->I18N->i18n calls).
...
svn path=/trunk/KDE/kdegraphics/kpdf/; revision=528186
20 years ago
Pino Toscano
a27212eee9
- less qt3_support
...
- reactivating the review tab
- use the sizepolicy instead of stretchfactor
svn path=/branches/work/kde4/playground/graphics/okular/; revision=526095
20 years ago
Pino Toscano
c6753bdd39
Convert the font list view in the property dialog to model/view.
...
svn path=/branches/work/kde4/playground/graphics/okular/; revision=524699
20 years ago
Pino Toscano
4bd3b60d6c
less qt3_support
...
svn path=/branches/work/kde4/playground/graphics/okular/; revision=524083
20 years ago
Pino Toscano
80f7e6b596
a bit of qt3/kde3 support less
...
svn path=/branches/work/kde4/playground/graphics/okular/; revision=523922
20 years ago
Pino Toscano
8b41489e2f
porting
...
svn path=/branches/work/kde4/playground/graphics/okular/; revision=522251
20 years ago
Albert Astals Cid
ec923ec701
compile some more files
...
svn path=/branches/work/kde4/playground/graphics/okular/; revision=521912
20 years ago
Laurent Montel
ce8715fb8c
adapt to new kdelibs api
...
svn path=/trunk/KDE/kdegraphics/kpdf/; revision=518219
20 years ago
Laurent Montel
b734531e6f
qt3support-- / warning--
...
svn path=/trunk/KDE/kdegraphics/kpdf/; revision=479237
21 years ago
Enrico Ros
8f4104a99a
merge (refactored) patch_050,051,060
...
svn path=/branches/kpdf/annotations/kdegraphics/kpdf/; revision=424991
21 years ago