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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
|
/* This file is part of the KDE libraries
Copyright (C) 2001,2002 Rolf Magnus <ramagnus@kde.org>
library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License version 2 as published by the Free Software Foundation.
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.
$Id$
*/
#include "kfilemetainfowidget.h"
#include <keditcl.h>
#include <klocale.h>
#include <knuminput.h>
#include <kcombobox.h>
#include <klineedit.h>
#include <kstringvalidator.h>
#include <kdebug.h>
#include <qlabel.h>
#include <qcheckbox.h>
#include <qspinbox.h>
#include <qdatetimeedit.h>
#include <qpixmap.h>
#include <qimage.h>
#include <qlayout.h>
#include <qvalidator.h>
/*
Widgets used for different types:
bool : QCheckBox
int : QSpinBox
QString : KComboBox if the validator is a KStringListValidator, else lineedit
QDateTime : QDateTimeEdit
*/
KFileMetaInfoWidget::KFileMetaInfoWidget(KFileMetaInfoItem item,
QValidator* val,
QWidget* parent, const char* name)
: QWidget(parent, name),
m_value(item.value()),
m_item(item),
m_validator(val)
{
init(item, ReadWrite);
}
KFileMetaInfoWidget::KFileMetaInfoWidget(KFileMetaInfoItem item,
Mode mode,
QValidator* val,
QWidget* parent, const char* name)
: QWidget(parent, name),
m_value(item.value()),
m_item(item),
m_validator(val)
{
init(item, mode);
}
void KFileMetaInfoWidget::init(KFileMetaInfoItem item, Mode mode)
{
kdDebug(7033) << "*** item " << m_item.key()
<< " is a " << value().typeName() << endl;
if (m_item.isEditable() && !(mode & ReadOnly))
m_widget = makeWidget();
else
switch (m_value.type())
{
case QVariant::Image :
m_widget = new QLabel(this, "info image");
static_cast<QLabel*>(m_widget)->setPixmap(QPixmap(m_value.toImage()));
break;
case QVariant::Pixmap :
m_widget = new QLabel(this, "info pixmap");
static_cast<QLabel*>(m_widget)->setPixmap(m_value.toPixmap());
break;
default:
m_widget = new QLabel(item.string(true), this, "info label");
}
(new QHBoxLayout(this))->addWidget(m_widget);
}
KFileMetaInfoWidget::~KFileMetaInfoWidget()
{
}
QWidget* KFileMetaInfoWidget::makeWidget()
{
QString valClass;
QWidget* w;
switch (m_value.type())
{
case QVariant::Invalid: // no type
// just make a label
w = new QLabel(i18n("<Error>"), this, "label");
break;
case QVariant::Int: // an int
case QVariant::UInt: // an unsigned int
w = makeIntWidget();
break;
case QVariant::Bool: // a bool
w = makeBoolWidget();
break;
case QVariant::Double: // a double
w = makeDoubleWidget();
break;
case QVariant::Date: // a QDate
w = makeDateWidget();
break;
case QVariant::Time: // a QTime
w = makeTimeWidget();
break;
case QVariant::DateTime: // a QDateTime
w = makeDateTimeWidget();
break;
#if 0
case QVariant::Size: // a QSize
case QVariant::String: // a QString
case QVariant::List: // a QValueList
case QVariant::Map: // a QMap
case QVariant::StringList: // a QStringList
case QVariant::Font: // a QFont
case QVariant::Pixmap: // a QPixmap
case QVariant::Brush: // a QBrush
case QVariant::Rect: // a QRect
case QVariant::Color: // a QColor
case QVariant::Palette: // a QPalette
case QVariant::ColorGroup: // a QColorGroup
case QVariant::IconSet: // a QIconSet
case QVariant::Point: // a QPoint
case QVariant::Image: // a QImage
case QVariant::CString: // a QCString
case QVariant::PointArray: // a QPointArray
case QVariant::Region: // a QRegion
case QVariant::Bitmap: // a QBitmap
case QVariant::Cursor: // a QCursor
case QVariant::ByteArray: // a QByteArray
case QVariant::BitArray: // a QBitArray
case QVariant::SizePolicy: // a QSizePolicy
case QVariant::KeySequence: // a QKeySequence
#endif
default:
w = makeStringWidget();
}
kdDebug(7033) << "*** item " << m_item.key()
<< "is a " << m_item.value().typeName() << endl;
if (m_validator)
kdDebug(7033) << " and validator is a " << m_validator->className() << endl;
kdDebug(7033) << "*** created a " << w->className() << " for it\n";
return w;
}
// ****************************************************************
// now the different methods to make the widgets for specific types
// ****************************************************************
QWidget* KFileMetaInfoWidget::makeBoolWidget()
{
QCheckBox* cb = new QCheckBox(this, "metainfo bool widget");
cb->setChecked(m_item.value().toBool());
connect(cb, SIGNAL(toggled(bool)), this, SLOT(slotChanged(bool)));
return cb;
}
QWidget* KFileMetaInfoWidget::makeIntWidget()
{
QSpinBox* sb = new QSpinBox(this, "metainfo integer widget");
sb->setValue(m_item.value().toInt());
if (m_validator)
{
if (m_validator->inherits("QIntValidator"))
{
sb->setMinValue(static_cast<QIntValidator*>(m_validator)->bottom());
sb->setMaxValue(static_cast<QIntValidator*>(m_validator)->top());
}
reparentValidator(sb, m_validator);
sb->setValidator(m_validator);
}
// make sure that an uint cannot be set to a value < 0
if (m_item.type() == QVariant::UInt)
sb->setMinValue(QMAX(sb->minValue(), 0));
connect(sb, SIGNAL(valueChanged(int)), this, SLOT(slotChanged(int)));
return sb;
}
QWidget* KFileMetaInfoWidget::makeDoubleWidget()
{
KDoubleNumInput* dni = new KDoubleNumInput(m_item.value().toDouble(),
this, "metainfo double widget");
if (m_validator)
{
if (m_validator->inherits("QDoubleValidator"))
{
dni->setMinValue(static_cast<QDoubleValidator*>(m_validator)->bottom());
dni->setMaxValue(static_cast<QDoubleValidator*>(m_validator)->top());
}
reparentValidator(dni, m_validator);
}
connect(dni, SIGNAL(valueChanged(double)), this, SLOT(slotChanged(double)));
return dni;
}
QWidget* KFileMetaInfoWidget::makeStringWidget()
{
if (m_validator && m_validator->inherits("KStringListValidator"))
{
KComboBox* b = new KComboBox(true, this, "metainfo combobox");
KStringListValidator* val = static_cast<KStringListValidator*>
(m_validator);
b->insertStringList(val->stringList());
b->setCurrentText(m_item.value().toString());
connect(b, SIGNAL(activated(const QString &)), this, SLOT(slotComboChanged(const QString &)));
b->setValidator(val);
reparentValidator(b, val);
return b;
}
if ( m_item.attributes() & KFileMimeTypeInfo::MultiLine ) {
KEdit *edit = new KEdit( this );
edit->setText( m_item.value().toString() );
connect( edit, SIGNAL( textChanged() ),
this, SLOT( slotMultiLineEditChanged() ));
// can't use a validator with a QTextEdit, but we may need to delete it
if ( m_validator )
reparentValidator( edit, m_validator );
return edit;
}
KLineEdit* e = new KLineEdit(m_item.value().toString(), this);
if (m_validator)
{
e->setValidator(m_validator);
reparentValidator(e, m_validator);
}
connect(e, SIGNAL(textChanged(const QString&)),
this, SLOT(slotLineEditChanged(const QString&)));
return e;
}
QWidget* KFileMetaInfoWidget::makeDateWidget()
{
QWidget *e = new QDateEdit(m_item.value().toDate(), this);
connect(e, SIGNAL(valueChanged(const QDate&)),
this, SLOT(slotDateChanged(const QDate&)));
return e;
}
QWidget* KFileMetaInfoWidget::makeTimeWidget()
{
return new QTimeEdit(m_item.value().toTime(), this);
}
QWidget* KFileMetaInfoWidget::makeDateTimeWidget()
{
return new QDateTimeEdit(m_item.value().toDateTime(), this);
}
void KFileMetaInfoWidget::reparentValidator( QWidget *widget,
QValidator *validator )
{
if ( !validator->parent() )
widget->insertChild( validator );
}
// ****************************************************************
// now the slots that let us get notified if the value changed in the child
// ****************************************************************
void KFileMetaInfoWidget::slotChanged(bool value)
{
Q_ASSERT(m_widget->inherits("QComboBox"));
m_value = QVariant(value);
emit valueChanged(m_value);
m_dirty = true;
}
void KFileMetaInfoWidget::slotChanged(int value)
{
Q_ASSERT(m_widget->inherits("QSpinBox"));
m_value = QVariant(value);
emit valueChanged(m_value);
m_dirty = true;
}
void KFileMetaInfoWidget::slotChanged(double value)
{
Q_ASSERT(m_widget->inherits("KDoubleNumInput"));
m_value = QVariant(value);
emit valueChanged(m_value);
m_dirty = true;
}
void KFileMetaInfoWidget::slotComboChanged(const QString &value)
{
Q_ASSERT(m_widget->inherits("KComboBox"));
m_value = QVariant(value);
emit valueChanged(m_value);
m_dirty = true;
}
void KFileMetaInfoWidget::slotLineEditChanged(const QString& value)
{
Q_ASSERT(m_widget->inherits("KLineEdit"));
m_value = QVariant(value);
emit valueChanged(m_value);
m_dirty = true;
}
// that may be a little expensive for long texts, but what can we do?
void KFileMetaInfoWidget::slotMultiLineEditChanged()
{
Q_ASSERT(m_widget->inherits("QTextEdit"));
m_value = QVariant( static_cast<const QTextEdit*>( sender() )->text() );
emit valueChanged(m_value);
m_dirty = true;
}
void KFileMetaInfoWidget::slotDateChanged(const QDate& value)
{
Q_ASSERT(m_widget->inherits("QDateEdit"));
m_value = QVariant(value);
emit valueChanged(m_value);
m_dirty = true;
}
void KFileMetaInfoWidget::slotTimeChanged(const QTime& value)
{
Q_ASSERT(m_widget->inherits("QTimeEdit"));
m_value = QVariant(value);
emit valueChanged(m_value);
m_dirty = true;
}
void KFileMetaInfoWidget::slotDateTimeChanged(const QDateTime& value)
{
Q_ASSERT(m_widget->inherits("QDateTimeEdit"));
m_value = QVariant(value);
emit valueChanged(m_value);
m_dirty = true;
}
#include "kfilemetainfowidget.moc"
|