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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
|
/*
For general Scribus (>=1.3.2) copyright and licensing information please refer
to the COPYING file provided with the program. Following this notice may exist
a copyright and/or license notice that predates the release of Scribus 1.3.2
for which a new license (GPL+exception) is in place.
*/
#include <QPixmap>
#include <QGridLayout>
#include <QLineEdit>
#include <QTextEdit>
#include <QLabel>
#include <QToolTip>
#include "docinfo.h"
#include "documentinformation.h"
#include "util_icon.h"
/*
* Constructs a DocInfos which is a child of 'parent', with the
* name 'name' and widget flags set to 'f'
*
* The dialog will by default be modeless, unless you set 'modal' to
* TRUE to construct a modal dialog.
*/
DocInfos::DocInfos( QWidget* parent, DocumentInformation& docInfo ) : QTabWidget( parent )
{
infos = docInfo;
setMaximumSize( QSize( 32767, 32767 ) );
setWindowTitle( tr( "Document Information" ) );
setWindowIcon(QIcon(loadIcon ( "AppIcon.png" )));
page1 = new QWidget( this );
layout1 = new QGridLayout(page1);
layout1->setSpacing( 5 );
layout1->setMargin( 5 );
titleEdit = new QLineEdit( page1 );
titleLabel = new QLabel( tr("&Title:"), page1);
titleLabel->setBuddy(titleEdit);
titleLabel->resize( titleLabel->sizeHint() );
layout1->addWidget( titleLabel, 0, 0 );
layout1->addWidget( titleEdit, 0, 1 );
authorEdit = new QLineEdit( page1 );
authorLabel = new QLabel( tr("&Author:"), page1 );
authorLabel->setBuddy(authorEdit);
authorLabel->resize( authorLabel->sizeHint() );
layout1->addWidget( authorLabel, 1, 0 );
layout1->addWidget( authorEdit, 1, 1 );
subjectEdit = new QLineEdit( page1 );
subjectLabel = new QLabel( tr("&Subject:"), page1);
subjectLabel->setBuddy(subjectEdit);
subjectLabel->resize( subjectLabel->sizeHint() );
layout1->addWidget( subjectLabel, 2, 0 );
layout1->addWidget( subjectEdit, 2, 1 );
keywordsEdit = new QTextEdit( page1 );
keywordsLabel = new QLabel( tr("&Keywords:"), page1 );
keywordsLabel->setBuddy(keywordsEdit);
keywordsLabel->setAlignment(Qt::AlignTop | Qt::AlignLeft);
keywordsEdit->setMinimumSize(QSize(200, 105));
layout1->addWidget( keywordsLabel, 3, 0 );
layout1->addWidget( keywordsEdit, 3, 1 );
descriptionEdit = new QTextEdit( page1 );
descriptionLabel = new QLabel( tr("Descri&ption:"), page1 );
descriptionLabel->setBuddy(descriptionEdit);
descriptionLabel->setAlignment(Qt::AlignTop | Qt::AlignLeft);
descriptionEdit->setMinimumSize(QSize(200, 105));
layout1->addWidget( descriptionLabel, 4, 0 );
layout1->addWidget( descriptionEdit, 4, 1 );
page2 = new QWidget( this );
layout2 = new QGridLayout(page2);
layout2->setSpacing( 5 );
layout2->setMargin( 5 );
publisherEdit = new QLineEdit( page2 );
publisherLabel = new QLabel( tr("P&ublisher:") , page2);
publisherLabel->setBuddy(publisherEdit);
publisherLabel->resize( publisherLabel->sizeHint() );
layout2->addWidget( publisherLabel, 0, 0 );
layout2->addWidget( publisherEdit, 0, 1 );
contributorsEdit = new QTextEdit( page2 );
contributorsLabel = new QLabel( tr("&Contributors:"), page2 );
contributorsLabel->setBuddy(contributorsEdit);
contributorsLabel->setAlignment(Qt::AlignTop | Qt::AlignLeft);
contributorsEdit->setMinimumSize(QSize(200, 105));
layout2->addWidget( contributorsLabel, 1, 0 );
layout2->addWidget( contributorsEdit, 1, 1 );
dateEdit = new QLineEdit( page2 );
dateLabel = new QLabel( tr("Dat&e:") , page2);
dateLabel->setBuddy(dateEdit);
dateLabel->resize( dateLabel->sizeHint() );
layout2->addWidget( dateLabel, 2, 0 );
layout2->addWidget( dateEdit, 2, 1 );
typeEdit = new QLineEdit( page2 );
typeLabel = new QLabel( tr("T&ype:") , page2);
typeLabel->setBuddy(typeEdit);
typeLabel->resize( typeLabel->sizeHint() );
layout2->addWidget( typeLabel, 3, 0 );
layout2->addWidget( typeEdit, 3, 1 );
formatEdit = new QLineEdit( page2 );
formatLabel = new QLabel( tr("F&ormat:") , page2);
formatLabel->setBuddy(formatEdit);
formatLabel->resize( formatLabel->sizeHint() );
layout2->addWidget( formatLabel, 4, 0 );
layout2->addWidget( formatEdit, 4, 1 );
identifierEdit = new QLineEdit( page2 );
identifierLabel = new QLabel( tr("Identi&fier:") , page2);
identifierLabel->setBuddy(identifierEdit);
identifierLabel->resize( identifierLabel->sizeHint() );
layout2->addWidget( identifierLabel, 5, 0 );
layout2->addWidget( identifierEdit, 5, 1 );
sourceEdit = new QLineEdit( page2 );
sourceLabel = new QLabel( tr("&Source:") , page2);
sourceLabel->setBuddy(sourceEdit);
sourceLabel->resize( sourceLabel->sizeHint() );
layout2->addWidget( sourceLabel, 6, 0 );
layout2->addWidget( sourceEdit, 6, 1 );
languageEdit = new QLineEdit( page2 );
languageLabel = new QLabel( tr("&Language:") , page2);
languageLabel->setBuddy(languageEdit);
languageLabel->resize( languageLabel->sizeHint() );
layout2->addWidget( languageLabel, 7, 0 );
layout2->addWidget( languageEdit, 7, 1 );
relationEdit = new QLineEdit( page2 );
relationLabel = new QLabel( tr("&Relation:") , page2);
relationLabel->setBuddy(relationEdit);
relationLabel->resize( relationLabel->sizeHint() );
layout2->addWidget( relationLabel, 8, 0 );
layout2->addWidget( relationEdit, 8, 1 );
coverageEdit = new QLineEdit( page2 );
coverageLabel = new QLabel( tr("Co&verage:") , page2);
coverageLabel->setBuddy(coverageEdit);
coverageLabel->resize( coverageLabel->sizeHint() );
layout2->addWidget( coverageLabel, 9, 0 );
layout2->addWidget( coverageEdit, 9, 1 );
rightsEdit = new QLineEdit( page2 );
rightsLabel = new QLabel( tr("Ri&ghts:") , page2);
rightsLabel->setBuddy(rightsEdit);
rightsLabel->resize( rightsLabel->sizeHint() );
layout2->addWidget( rightsLabel, 10, 0 );
layout2->addWidget( rightsEdit, 10, 1 );
addTab( page1, tr("Documen&t") );
addTab( page2, tr("Further &Information") );
// switched off as it's called in main prefs classes - PV
//restoreDefaults();
//tooltips
authorEdit->setToolTip( "<qt>" + tr( "The person or organisation primarily responsible for making the content of the document. This field can be embedded in the Scribus document for reference, as well as in the metadata of a PDF" ) );
titleEdit->setToolTip( "<qt>" + tr( "A name given to the document. This field can be embedded in the Scribus document for reference, as well as in the metadata of a PDF" ) + "</qt>");
descriptionEdit->setToolTip( "<qt>" + tr( "An account of the content of the document. This field is for a brief description or abstract of the document. It is embedded in the PDF on export" ) + "</qt>" );
keywordsEdit->setToolTip( "<qt>" + tr( "The topic of the content of the document. This field is for document keywords you wish to embed in a PDF, to assist searches and indexing of PDF files" ) + "</qt>" );
publisherEdit->setToolTip( "<qt>" + tr( "A person or organisation responsible for making the document available" ) + "</qt>" );
contributorsEdit->setToolTip( "<qt>" + tr( "A person or organisation responsible for making contributions to the content of the document" ) + "</qt>" );
dateEdit->setToolTip( "<qt>" + tr( "A date associated with an event in the life cycle of the document, in YYYY-MM-DD format, as per ISO 8601" ) + "</qt>" );
typeEdit->setToolTip( "<qt>" + tr( "The nature or genre of the content of the document, eg. categories, functions, genres, etc" ) + "</qt>");
formatEdit->setToolTip( "<qt>" + tr( "The physical or digital manifestation of the document. Media type and dimensions would be worth noting. RFC2045,RFC2046 for MIME types are also useful here" ) + "</qt>" );
identifierEdit->setToolTip( "<qt>" + tr( "An unambiguous reference to the document within a given context such as ISBN or URI" ) + "</qt>" );
sourceEdit->setToolTip( "<qt>" + tr( "A reference to a document from which the present document is derived, eg. ISBN or URI" ) + "</qt>" );
languageEdit->setToolTip( "<qt>" + tr( "The language in which the content of the document is written, usually a ISO-639 language code optionally suffixed with a hypen and an ISO-3166 country code, eg. en-GB, fr-CH" ) + "</qt>" );
relationEdit->setToolTip( "<qt>" + tr( "A reference to a related document, possibly using a formal identifier such as a ISBN or URI" ) + "</qt>" );
coverageEdit->setToolTip( "<qt>" + tr( "The extent or scope of the content of the document, possibly including location, time and jurisdiction ranges" ) + "</qt>" );
rightsEdit->setToolTip( "<qt>" + tr( "Information about rights held in and over the document, eg. copyright, patent or trademark" ) + "</qt>" );
}
DocumentInformation DocInfos::getDocInfo()
{
DocumentInformation docInfo;
docInfo.setAuthor(authorEdit->text());
docInfo.setComments(descriptionEdit->toPlainText());
docInfo.setContrib(contributorsEdit->toPlainText());
docInfo.setCover(coverageEdit->text());
docInfo.setDate(dateEdit->text());
docInfo.setFormat(formatEdit->text());
docInfo.setIdent(identifierEdit->text());
docInfo.setKeywords(keywordsEdit->toPlainText());
docInfo.setLangInfo(languageEdit->text());
docInfo.setPublisher(publisherEdit->text());
docInfo.setRelation(relationEdit->text());
docInfo.setRights(rightsEdit->text());
docInfo.setSource(sourceEdit->text());
docInfo.setSubject(subjectEdit->text());
docInfo.setTitle(titleEdit->text());
docInfo.setType(typeEdit->text());
return docInfo;
}
void DocInfos::restoreDefaults()
{
titleEdit->setText(infos.getTitle());
authorEdit->setText(infos.getAuthor());
subjectEdit->setText(infos.getSubject());
descriptionEdit->setPlainText(infos.getComments());
keywordsEdit->setPlainText(infos.getKeywords());
publisherEdit->setText(infos.getPublisher());
dateEdit->setText(infos.getDate());
typeEdit->setText(infos.getType());
formatEdit->setText(infos.getFormat());
identifierEdit->setText(infos.getIdent());
sourceEdit->setText(infos.getSource());
languageEdit->setText(infos.getLangInfo());
relationEdit->setText(infos.getRelation());
coverageEdit->setText(infos.getCover());
rightsEdit->setText(infos.getRights());
contributorsEdit->setPlainText(infos.getContrib());
}
|