summaryrefslogtreecommitdiffstats
path: root/kfile-plugins/pdf/kfile_pdf.cpp
blob: 89e462970fe100aa1c73eed4c8a56c002f6b3a5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/* This file is part of the KDE project
 * Copyright (C) 2001, 2002 Rolf Magnus <ramagnus@kde.org>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public
 * License as published by the Free Software Foundation version 2.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; see the file COPYING.  If not, write to
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 *
 *  $Id$
 */

#include "kfile_pdf.h"

#include <kgenericfactory.h>
#include <kdebug.h>

typedef KGenericFactory<KPdfPlugin> PdfFactory;

K_EXPORT_COMPONENT_FACTORY(kfile_pdf, PdfFactory("kfile_pdf"))

KPdfPlugin::KPdfPlugin(TQObject *parent, const char *name, const TQStringList &preferredItems)
    : KFilePlugin(parent, name, preferredItems)
{
    kdDebug(7034) << "pdf plugin\n";

    // set up our mime type
    KFileMimeTypeInfo* info = addMimeTypeInfo( "application/pdf" );

    // general group
    KFileMimeTypeInfo::GroupInfo* group = addGroupInfo(info, "General", i18n("General"));

    KFileMimeTypeInfo::ItemInfo* item;

    item = addItemInfo(group, "Title", i18n("Title"), TQVariant::String);
    setHint(item, KFileMimeTypeInfo::Name);
    item = addItemInfo(group, "Subject", i18n("Subject"), TQVariant::String);
    setHint(item, KFileMimeTypeInfo::Description);
    item = addItemInfo(group, "Author", i18n("Author"), TQVariant::String);
    setHint(item, KFileMimeTypeInfo::Author);
    addItemInfo(group, "Keywords", i18n("Key Words"), TQVariant::String);
    addItemInfo(group, "Creator", i18n("Creator"), TQVariant::String);
    addItemInfo(group, "Producer", i18n("Producer"), TQVariant::String);
    addItemInfo(group, "CreationDate", i18n("Creation Date"), TQVariant::DateTime);
    addItemInfo(group, "ModificationDate", i18n("Modified"), TQVariant::DateTime);
    addItemInfo(group, "Pages", i18n("Pages"), TQVariant::Int);
    addItemInfo(group, "Protected", i18n("Protected"), TQVariant::String);
    addItemInfo(group, "Linearized", i18n("Linearized"), TQVariant::String);
    addItemInfo(group, "Version", i18n("Version"), TQVariant::String);
}

bool KPdfPlugin::readInfo( KFileMetaInfo& info, uint /* what */)
{
    Poppler::Document *doc = Poppler::Document::load(info.path());
    if (!doc || doc->isLocked())
    {
        delete doc;
        return false;
    }

    KFileMetaInfoGroup generalGroup = appendGroup(info, "General");

    appendItem(generalGroup, "Title", doc->getInfo("Title") );
    appendItem(generalGroup, "Subject", doc->getInfo("Subject") );
    appendItem(generalGroup, "Author", doc->getInfo("Author") );
    appendItem(generalGroup, "Keywords", doc->getInfo("Keywords") );
    appendItem(generalGroup, "Creator", doc->getInfo("Creator") );
    appendItem(generalGroup, "Producer", doc->getInfo("Producer") );

    appendItem(generalGroup, "CreationDate", doc->getDate("CreationDate") );
    appendItem(generalGroup, "ModificationDate", doc->getDate("ModDate") );
    appendItem(generalGroup, "Pages", doc->getNumPages() );
    
    TQString enc;
    if (doc->isEncrypted())
    {
    	enc = i18n("Yes (Can Print:%1 Can Copy:%2 Can Change:%3 Can Add notes:%4)")
    	.tqarg(doc->okToPrint() ? i18n("Yes") : i18n("No"))
    	.tqarg(doc->okToCopy() ? i18n("Yes") : i18n("No"))
    	.tqarg(doc->okToChange() ? i18n("Yes") : i18n("No"))
    	.tqarg(doc->okToAddNotes() ? i18n("Yes") : i18n("No"));
    }
    else enc = i18n("No");
    
    appendItem(generalGroup, "Protected", enc );
    appendItem(generalGroup, "Linearized", doc->isLinearized() ? i18n("Yes") : i18n("No") );
    TQString versionString = TQString("%1").tqarg( doc->getPDFVersion(), 0, 'f', 1 );
    appendItem(generalGroup, "Version", versionString );

    delete doc;

    return true;
}

#include "kfile_pdf.moc"