This repository has been archived by the owner on Sep 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
DockStyles.cpp
554 lines (473 loc) · 16 KB
/
DockStyles.cpp
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
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
/***************************************************************************//**
* @brief Thumbnail me 3.0
* Thumbnail me is a user interface for Movie thumbnailer.
* Generate thumbnails from any movie is now easier !
*
* @file DockStyles.cpp
* @class DockStyles
* Cette classe permet la génération du dock qui met en place les styles à appliquer à la vignette.
* @attention QtColorPicker required - http://qt.nokia.com/products/appdev/add-on-products/catalog/4/Widgets/qtcolorpicker/
*
* @author Quentin Rousseau\n
* @note Copyright (C) 2011-2012 Quentin Rousseau\n
* License: GNU General Public License version 2 (GPLv2) - http://www.gnu.org/licenses/gpl-2.0.html\n
* Site web: www.thumbnailme.com\n
* Email: [email protected]
*
* @since 2.0
* @version 3.0
* @date 2011-2012
*******************************************************************************/
#include "DockStyles.h"
#include "MainWindow.h"
#include "FontMapComboBox.h"
#include "QtHelper.h"
#include "Qtcolorpicker/qtcolorpicker.h"
#include <QGridLayout>
#include <QLineEdit>
#include <QStackedWidget>
/**
*@brief Constructeur.
*@param *main_window Fenêtre principale de Thumbnail me.
*/
DockStyles::DockStyles(QWidget *main_window) : QFrame(main_window)
{
this->setFrameStyle(QFrame::StyledPanel);
this->setStyleSheet("DockStyles{border-style: solid;border-width: 1px;border-radius: 10px;border-color: grey;padding: 6px;}");
titleWidgetLabel = new QLabel(this);
QGridLayout *stylesLayout = new QGridLayout;
titleLineEdit = new QLineEdit(this);
titleLineEdit->setCursorPosition(0);
infoTextCheckBox = new QCheckBox( this );
infoTextCheckBox->setChecked(true);
timestampCheckBox = new QCheckBox( this );
timestampCheckBox->setChecked(true);
fontInfoTextComboBox = new FontMapComboBox(this);
fontTimestampComboBox = new FontMapComboBox(this);
QMovie *loadingMovie = new QMovie(":/sprites/refresh_fonts.gif");
loadingMovie->start();
loadingFontsLabel1 = new QLabel(this);
loadingFontsLabel2 = new QLabel(this);
QLabel *loadingFontsMovie1 = new QLabel(this);
loadingFontsMovie1->setMovie(loadingMovie);
QLabel *loadingFontsMovie2 = new QLabel(this);
loadingFontsMovie2->setMovie(loadingMovie);
QWidget *loadingFontsWidget1 = new QWidget(this);
QWidget *loadingFontsWidget2 = new QWidget(this);
QHBoxLayout *loadingFontsLayout1 = new QHBoxLayout;
loadingFontsLayout1->addWidget(loadingFontsMovie1);
loadingFontsLayout1->addWidget(loadingFontsLabel1, Qt::AlignLeft);
loadingFontsLayout1->setContentsMargins(0,0,0,0);
QHBoxLayout *loadingFontsLayout2 = new QHBoxLayout;
loadingFontsLayout2->addWidget(loadingFontsMovie2);
loadingFontsLayout2->addWidget(loadingFontsLabel2, Qt::AlignLeft);
loadingFontsLayout2->setContentsMargins(0,0,0,0);
loadingFontsWidget1->setLayout(loadingFontsLayout1);
loadingFontsWidget2->setLayout(loadingFontsLayout2);
fontInfoTextStackedWidget = new QStackedWidget(this);
fontInfoTextStackedWidget->addWidget(fontInfoTextComboBox);
fontInfoTextStackedWidget->addWidget(loadingFontsWidget1);
fontTimestampStackedWidget = new QStackedWidget(this);
fontTimestampStackedWidget->addWidget(fontTimestampComboBox);
fontTimestampStackedWidget->addWidget(loadingFontsWidget2);
infoTextSizeSpinBox = new QSpinBox(this);
infoTextSizeSpinBox->setRange(6,72);
infoTextSizeSpinBox->setValue(12);
timestampSizeSpinBox = new QSpinBox(this);
timestampSizeSpinBox->setRange(6,72);
timestampSizeSpinBox->setValue(10);
infoTextLocationComboBox = new QComboBox(this);
infoTextLocationComboBox->addItems(location);
infoTextLocationComboBox->setCurrentIndex(3);
timestampLocationComboBox = new QComboBox(this);
timestampLocationComboBox->addItems(location);
timestampLocationComboBox->setCurrentIndex(1);
titleLabel= new QLabel( this );
titleLabel->setAlignment(Qt::AlignCenter);
backgroundColorLabel= new QLabel( this );
backgroundColorLabel->setAlignment(Qt::AlignCenter);
shadowColorLabel= new QLabel( this );
shadowColorLabel->setAlignment(Qt::AlignCenter);
backgroundColorpicker = new QtColorPicker(this);
backgroundColorpicker->setStandardColors();
backgroundColorpicker->setCurrentColor(QColor(Qt::black));
infoTextColorpicker = new QtColorPicker(this);
infoTextColorpicker->setStandardColors();
infoTextColorpicker->setCurrentColor(QColor(Qt::white));
timeStampColorpicker = new QtColorPicker(this);
timeStampColorpicker->setStandardColors();
timeStampColorpicker->setCurrentColor(QColor(Qt::white));
shadowColorpicker = new QtColorPicker(this);
shadowColorpicker->setStandardColors();
shadowColorpicker->setCurrentColor(QColor(Qt::black));
stylesLayout->addWidget(titleWidgetLabel,0,0,1,4,Qt::AlignCenter);
stylesLayout->addWidget(QtHelper::addHSeparator(),1,0,1,4);
stylesLayout->addWidget(titleLabel,2,0);
stylesLayout->addWidget(titleLineEdit,2,1);
stylesLayout->addWidget(backgroundColorLabel,3,0);
stylesLayout->addWidget(backgroundColorpicker,3,1);
stylesLayout->addWidget(QtHelper::addHSeparator(),4,0,1,2);
stylesLayout->addWidget(infoTextCheckBox,5,0);
stylesLayout->addWidget(fontInfoTextStackedWidget,6,0);
stylesLayout->addWidget(infoTextSizeSpinBox,6,1);
stylesLayout->addWidget(infoTextLocationComboBox,7,0);
stylesLayout->addWidget(infoTextColorpicker,7,1);
stylesLayout->addWidget(QtHelper::addHSeparator(),8,0,1,2);
stylesLayout->addWidget(timestampCheckBox,9,0);
stylesLayout->addWidget(fontTimestampStackedWidget,10,0);
stylesLayout->addWidget(timestampSizeSpinBox,10,1);
stylesLayout->addWidget(timestampLocationComboBox,11,0);
stylesLayout->addWidget(timeStampColorpicker,11,1);
stylesLayout->addWidget(shadowColorLabel,12,0);
stylesLayout->addWidget(shadowColorpicker,12,1);
this->setLayout(stylesLayout);
this->retranslate();
/*Connections*/
connect(infoTextCheckBox, SIGNAL(stateChanged(int)), this, SLOT(disabledInfoTextSection(int)));
connect(timestampCheckBox, SIGNAL(stateChanged(int)), this, SLOT(disabledTimeStampSection(int)));
connect(fontInfoTextComboBox, SIGNAL(loadFontsFinished()),this, SLOT(stackedWidgetsToComboBox()));
}
/**
*@brief Destructeur.
*/
DockStyles::~DockStyles()
{
}
/**
*@brief Retourne la position des détails techniques.
*@return QString - Index de la position séléctionnée.
*/
int DockStyles::getInfoTextLocation()
{
return infoTextLocationComboBox->currentIndex()+1;
}
/**
*@brief Retourne la position du timestamp.
*@return QString - Index de la position séléctionnée.
*/
int DockStyles::getTimeStampLocation()
{
return timestampLocationComboBox->currentIndex()+1;
}
/**
*@brief Retourne le titre additionnel.
*@return QString - Titre additionnel.
*/
QString DockStyles::getTitleEdit()
{
return titleLineEdit->displayText();
}
/**
*@brief Retourne un QColor de "Couleur d'arrière-plan".
*@return QColor - Couleur.
*/
QColor DockStyles::getColorBackground()
{
return backgroundColorpicker->currentColor();
}
/**
*@brief Retourne un QColor de "Détails techniques".
*@return QColor - Couleur.
*/
QColor DockStyles::getColorInfoText()
{
return infoTextColorpicker->currentColor();
}
/**
*@brief Retourne un QColor de "Pas".
*@return QColor - Couleur.
*/
QColor DockStyles::getColorTimeStamp()
{
return timeStampColorpicker->currentColor();
}
/**
*@brief Retourne un QColor de "Couleur d'ombre".
*@return QColor - Couleur.
*/
QColor DockStyles::getColorShadow()
{
return shadowColorpicker->currentColor();
}
/**
*@brief Retourne le nom de la police sélectionné pour "Détails techniques".
*@param type 0 = AbsoluthPath | 1 = FamilyName | 2 = FileName.
*@return QString - Nom de la police séléctionné (TrueType Font).
*/
QString DockStyles::getFontInfoText(int type)
{
switch(type)
{
case 0:
return fontInfoTextComboBox->currentFontPath(); break;
case 1:
return fontInfoTextComboBox->currentText(); break;
case 2:
return fontTimestampComboBox->currentFontFileName(); break;
default:
return QString();
}
}
/**
*@brief Retourne le nom de la police sélectionné pour "Pas".
*@param type 0 = AbsoluthPath | 1 = FamilyName | 2 = FileName.
*@return QString - Nom de la police séléctionné (TrueType Font).
*/
QString DockStyles::getFontTimeStamp(int type)
{
switch(type)
{
case 0:
return fontTimestampComboBox->currentFontPath(); break;
case 1:
return fontTimestampComboBox->currentText(); break;
case 2:
return fontTimestampComboBox->currentFontFileName(); break;
default:
return QString();
}
}
/**
*@brief Retourne la taille de la police sélectionnée pour "Détails techniques".
*@return QString - Taille de la police séléctionnée. Range: [6-72].
*/
double DockStyles::getSizeInfoText()
{
return (double) infoTextSizeSpinBox->value();
}
/**
*@brief Retourne la taille de la police sélectionnée pour "Pas".
*@return QString - Taille de la police séléctionnée. Range: [6-72].
*/
double DockStyles::getSizeTimeStamp()
{
return (double) timestampSizeSpinBox->value();
}
/**
@brief Retourne vrai si la checkbox "Détails techniques" est cochée sinon faux.
@return bool - Vrai ou faux.
*/
bool DockStyles::isInfoTextChecked()
{
return infoTextCheckBox->isChecked();
}
/**
*@brief Retourne vrai si la checkbox "Pas" est cochée sinon faux.
*@return bool - Vrai ou faux.
*/
bool DockStyles::isTimeStampChecked()
{
return timestampCheckBox->isChecked();
}
/**
*@brief Retourne un pointeur vers la QComboBox "Détails techniques" qui contient les polices.
*@return FontMapComboBox* - Pointeur.
*/
FontMapComboBox* DockStyles::getInfoTextComboBox()
{
return fontInfoTextComboBox;
}
/**
*@brief Retourne un pointeur vers la QComboBox "Pas" qui contient les polices.
*@return FontMapComboBox* - Pointeur.
*/
FontMapComboBox* DockStyles::getTimestampComboBox()
{
return fontTimestampComboBox;
}
/**
*@brief Place l'index courant de la QComboBox à index - Change la position de "Détails techniques".
*@param index Nouvel index.
*/
void DockStyles::setInfoTextLocation(int index)
{
infoTextLocationComboBox->setCurrentIndex(index -1);
}
/**
*@brief Place l'index courant de la QComboBox à index - Change la position de "Pas".
*@param index Nouvel index.
*/
void DockStyles::setTimeStampLocation(int index)
{
timestampLocationComboBox->setCurrentIndex(index -1);
}
/**
*@brief Change le QLineEdit "Titre additionnel".
*@param title Nouveau titre.
*/
void DockStyles::setTitleEdit(QString title)
{
titleLineEdit->setText(title);
titleLineEdit->setCursorPosition(0);
}
/**
*@brief Vrai: Coche la QCheckBox "Détails techniques".
*@param check Vrai ou faux.
*/
void DockStyles::setCheckedInfoText(bool check)
{
infoTextCheckBox->setChecked(check);
}
/**
*@brief Vrai: Coche la QCheckBox "Pas".
*@param check Vrai ou faux.
*/
void DockStyles::setCheckedTimeStamp(bool check)
{
timestampCheckBox->setChecked(check);
}
/**
*@brief Setter de la taille de la police pour les "Détails techniques".
*@param size Nouvelle taille.
*/
void DockStyles::setSizeInfoText(int size)
{
infoTextSizeSpinBox->setValue(size);
}
/**
*@brief Setter de la taille de la police pour "Pas".
*@param size Nouvelle taille.
*/
void DockStyles::setSizeTimeStamp(int size)
{
timestampSizeSpinBox->setValue(size);
}
/**
*@brief Setter de police pour le comboBox "Détails techniques".
*@param font Nom de la police.
*/
void DockStyles::setFontInfoText(QString font)
{
int index = fontInfoTextComboBox->findText(font,Qt::MatchExactly);
if(index != -1)
fontInfoTextComboBox->setCurrentIndex(index);
else fontInfoTextComboBox->setCurrentFont(QApplication::font());
}
/**
*@brief Setter de police sur le comboBox "Pas".
*@param font Nom de la police.
*/
void DockStyles::setFontTimeStamp(QString font)
{
int index = fontTimestampComboBox->findText(font,Qt::MatchExactly);
if(index != -1)
fontTimestampComboBox->setCurrentIndex(index);
else fontInfoTextComboBox->setCurrentFont(QApplication::font());
}
/**
*@brief Setter de couleur pour l'arrière plan de la vignette.
*@param color Couleur.
*/
void DockStyles::setColorBackground(QColor color)
{
backgroundColorpicker->setCurrentColor(color);
}
/**
*@brief Setter de couleur de la police concernant les "Détails techniques".
*@param color Couleur.
*/
void DockStyles::setColorInfoText(QColor color)
{
infoTextColorpicker->setCurrentColor(color);
}
/**
*@brief Setter de couleur de la police concernant le "Pas".
*@param color Couleur.
*/
void DockStyles::setColorTimeStamp(QColor color)
{
timeStampColorpicker->setCurrentColor(color);
}
/**
*@brief Setter de couleur de la police concernant la "Couleur d'ombre" du "Pas".
*@param color Couleur.
*/
void DockStyles::setColorShadow(QColor color)
{
shadowColorpicker->setCurrentColor(color);
}
/**
*@brief Active ou désactive la section "Détails techniques" selon l'état de la QCheckBox correspondante.
*@param state Etat de la QCheckBox.
*/
void DockStyles::disabledInfoTextSection(int state)
{
bool stateBis = (state == Qt::Checked) ? true : false;
infoTextLocationComboBox->setEnabled(stateBis);
infoTextSizeSpinBox->setEnabled(stateBis);
fontInfoTextStackedWidget->setEnabled(stateBis);
infoTextColorpicker->setEnabled(stateBis);
}
/**
*@brief Active ou désactive la section "Pas" selon l'état de la QCheckBox correspondante.
*@param state Etat de la QCheckBox.
*/
void DockStyles::disabledTimeStampSection(int state)
{
bool stateBis = (state == Qt::Checked) ? true : false;
timestampLocationComboBox->setEnabled(stateBis);
timestampSizeSpinBox->setEnabled(stateBis);
fontTimestampStackedWidget->setEnabled(stateBis);
timeStampColorpicker->setEnabled(stateBis);
shadowColorpicker->setEnabled(stateBis);
}
/**
*@brief Affiche les QFontComboBox.
*/
void DockStyles::stackedWidgetsToComboBox()
{
this->fontInfoTextStackedWidget->setCurrentIndex(0);
this->fontTimestampStackedWidget->setCurrentIndex(0);
}
/**
*@brief Affiche les QFontComboBox en état de chargement.
*/
void DockStyles::setStackedWidgetToLoadingState()
{
this->fontInfoTextStackedWidget->setCurrentIndex(1);
this->fontTimestampStackedWidget->setCurrentIndex(1);
}
/**
*@brief Si aucune police définie -> Vrai.
*@return bool - Vrai ou faux.
*/
bool DockStyles::isNoFontDefined()
{
if(fontInfoTextComboBox->isNoFontDefined() && fontTimestampComboBox->isNoFontDefined())
return true;
else return false;
}
/**
*@brief ChangeEvent.
*@param *event Evenement.
*/
void DockStyles::changeEvent(QEvent* event)
{
if (event->type() == QEvent::LanguageChange)
retranslate();
QWidget::changeEvent(event);
}
/**
*@brief Fonction de traduction dynamique.
*/
void DockStyles::retranslate()
{
this->setWindowTitle( tr( "Styles" ) );
titleWidgetLabel->setText( "<b>" + tr( "Styles" ) + "</b>" );
titleLineEdit->setText( tr( "Generated by Thumbnail me" ) );
infoTextCheckBox->setText( tr( "Info Text" ) + " :" );
timestampCheckBox->setText( tr( "Timestamp" ) + " :" );
titleLabel->setText( tr( "Additional Title" ) + " :" );
backgroundColorLabel->setText( tr( "Background Color" ) + " :" );
shadowColorLabel->setText( tr( "Shadow Color" ) + " :" );
loadingFontsLabel1->setText( tr( "Building Font Cache..." ) );
loadingFontsLabel2->setText( tr( "Building Font Cache..." ) );
location.clear();
location << tr("Lower Left") << tr("Lower Right") << tr("Upper Right") << tr("Upper Left");
infoTextLocationComboBox->clear();
infoTextLocationComboBox->addItems(location);
infoTextLocationComboBox->setCurrentIndex(3);
timestampLocationComboBox->clear();
timestampLocationComboBox->addItems(location);
timestampLocationComboBox->setCurrentIndex(1);
}