summaryrefslogtreecommitdiffstats
path: root/lib/kofficecore/KoDocumentInfo.h
blob: f6467768c1175f675b1bf3b04a5af4186d26d206 (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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
/* This file is part of the KDE project
   Copyright (C) 1998, 1999, 2000 Torben Weis <weis@kde.org>
   Copyright (C) 2004 David Faure <faure@kde.org>

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public
   License as published by the Free Software Foundation; either
   version 2 of the License, or (at your option) any later version.

   This library 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
   Library General Public License for more details.

   You should have received a copy of the GNU Library General Public License
   along with this library; see the file COPYING.LIB.  If not, write to
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
*/

#ifndef KO_DOCUMENT_INFO_H
#define KO_DOCUMENT_INFO_H

#include <tqobject.h>
#include <tqmap.h>
#include <tdeconfig.h>
#include <koffice_export.h>

class TQString;
class TQStringList;
class TQDomDocument;
class TQDomElement;
class TQDomNode;
class TQDateTime;
class KoStore;
class KoDocumentInfoPage;
class KoXmlWriter;

class KOFFICECORE_EXPORT KoDocumentInfo : public TQObject
{
    Q_OBJECT
  
public:
    KoDocumentInfo( TQObject* parent = 0, const char* name = 0 );
    virtual ~KoDocumentInfo();

    bool load( const TQDomDocument& doc );
    bool loadOasis( const TQDomDocument& metaDoc );

    TQDomDocument save();
    bool saveOasis( KoStore* store );

    /**
     * This info has an accessor because it's the most commonly used.
     * Equivalent to page("about")->title() (but checking that the page exists)
     */
    TQString title() const;
    TQString creator() const;

    KoDocumentInfoPage* page( const TQString& name ) const;
    TQStringList pages() const;
    void documentInfochanged() { emit sigDocumentInfoModifed();}
 signals:
    void sigDocumentInfoModifed();
};

class KOFFICECORE_EXPORT KoDocumentInfoPage : public TQObject
{
public:
    KoDocumentInfoPage( TQObject *parent, const char* name );

    virtual bool load( const TQDomElement& e ) = 0;
    virtual TQDomElement save( TQDomDocument& doc ) = 0;
    virtual bool loadOasis( const TQDomNode& metaDoc ) = 0;
    virtual bool saveOasis( KoXmlWriter &xmlWriter ) = 0;
};

class KOFFICECORE_EXPORT KoDocumentInfoAuthor : public KoDocumentInfoPage
{
    Q_OBJECT
  
public:
    KoDocumentInfoAuthor( KoDocumentInfo* info );
    ~KoDocumentInfoAuthor();

    virtual bool load( const TQDomElement& e );
    virtual TQDomElement save( TQDomDocument& doc );
    virtual bool loadOasis( const TQDomNode& metaDoc );
    virtual bool saveOasis( KoXmlWriter &xmlWriter );

    TQString fullName() const;
    TQString initial() const;
    TQString title() const;
    TQString company() const;
    TQString email() const;
    TQString telephoneHome() const;
    TQString telephoneWork() const;
    TQString fax() const;
    TQString country() const;
    TQString postalCode() const;
    TQString city() const;
    TQString street() const;
    TQString position() const;

    void setFullName( const TQString& n );
    void setTitle( const TQString& n );
    void setCompany( const TQString& n );
    void setEmail( const TQString& n );
    void setTelephoneHome( const TQString& n );
    void setTelephoneWork( const TQString& n );
    void setFax( const TQString& n );
    void setCountry( const TQString& n );
    void setPostalCode( const TQString& n );
    void setCity( const TQString& n );
    void setStreet( const TQString& n );
    void setInitial( const TQString& n );
    void setPosition( const TQString& n );
    void initParameters();

private:
    TQString m_fullName;
    TQString m_title;
    TQString m_company;
    TQString m_email;
    TQString m_telephoneHome;
    TQString m_telephoneWork;
    TQString m_fax;
    TQString m_country;
    TQString m_postalCode;
    TQString m_city;
    TQString m_street;
    TQString m_initial;
    TQString m_position;
    TDEConfig *m_emailCfg;
};

class KOFFICECORE_EXPORT KoDocumentInfoAbout : public KoDocumentInfoPage
{
    Q_OBJECT
  
public:
    KoDocumentInfoAbout( KoDocumentInfo* info );

    virtual bool load( const TQDomElement& e );
    virtual TQDomElement save( TQDomDocument& doc );
    virtual bool loadOasis( const TQDomNode& metaDoc );
    virtual bool saveOasis( KoXmlWriter &xmlWriter );

    TQString title() const;
    TQString abstract() const;
    TQString subject() const;
    TQString keywords() const;
    TQString initialCreator() const;
    TQString editingCycles() const;
    TQString creationDate() const;
    TQString modificationDate() const;

    void setKeywords( const TQString &n );
    void setSubject( const TQString& n );

    void setTitle( const TQString& n );
    void setAbstract( const TQString& n );
    void saveParameters();

public slots:
    void resetMetaData();

private:
    KoDocumentInfo* m_docInfo;
    TQString m_title;
    TQString m_abstract;
    TQString m_keywords;
    TQString m_subject;
    TQString m_initialCreator;
    TQDateTime m_creationDate;
    TQDateTime m_modificationDate;
    int m_editingCycles;
    bool m_firstSave;
};

class KOFFICECORE_EXPORT KoDocumentInfoUserMetadata : public KoDocumentInfoPage
{
    Q_OBJECT
  
public:
    KoDocumentInfoUserMetadata( KoDocumentInfo* info );

    virtual bool load( const TQDomElement& e );
    virtual TQDomElement save( TQDomDocument& doc );
    virtual bool loadOasis( const TQDomNode& metaDoc );
    virtual bool saveOasis( KoXmlWriter &xmlWriter );

    TQMap<TQString, TQString>* metadataList() { return &m_metaList; }

private:
    TQMap<TQString, TQString>  m_metaList;
    TQStringList             m_reserved;
};

#endif