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
|
/*
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 "alignselect.h"
#include <QEvent>
#include <QPixmap>
#include <QToolTip>
#include "util_icon.h"
AlignSelect::AlignSelect(QWidget* parent) : QWidget(parent)
{
buttonGroup = new QButtonGroup(this);
GroupAlignLayout = new QHBoxLayout( this );
GroupAlignLayout->setSpacing( 0 );
GroupAlignLayout->setMargin( 0 );
TextL = new QToolButton( this );
TextL->setMaximumSize( QSize( 22, 22 ) );
TextL->setIcon(QIcon(loadIcon("16/format-justify-left.png")));
TextL->setCheckable( true );
TextL->setChecked( true );
GroupAlignLayout->addWidget( TextL );
buttonGroup->addButton(TextL, 0);
TextC = new QToolButton( this );
TextC->setMaximumSize( QSize( 22, 22 ) );
TextC->setIcon(QIcon(loadIcon("16/format-justify-center.png")));
TextC->setCheckable( true );
GroupAlignLayout->addWidget( TextC );
buttonGroup->addButton(TextC, 1);
TextR = new QToolButton( this );
TextR->setMaximumSize( QSize( 22, 22 ) );
TextR->setIcon(QIcon(loadIcon("16/format-justify-right.png")));
TextR->setCheckable( true );
GroupAlignLayout->addWidget( TextR );
buttonGroup->addButton(TextR, 2);
TextB = new QToolButton( this );
TextB->setMaximumSize( QSize( 22, 22 ) );
TextB->setIcon(QIcon(loadIcon("16/format-justify-fill-block.png")));
TextB->setCheckable( true );
GroupAlignLayout->addWidget( TextB );
buttonGroup->addButton(TextB, 3);
TextF = new QToolButton( this );
TextF->setMaximumSize( QSize( 22, 22 ) );
TextF->setIcon(QIcon(loadIcon("16/format-justify-fill.png")));
TextF->setCheckable( true );
GroupAlignLayout->addWidget( TextF );
buttonGroup->addButton(TextF, 4);
resize(minimumSizeHint());
connect(buttonGroup, SIGNAL(buttonClicked(int)), this, SLOT(setTypeStyle(int)));
}
void AlignSelect::setStyle(int s)
{
if ((s >= 0) && (s < 5))
buttonGroup->button(s)->setChecked(true);
}
int AlignSelect::getStyle()
{
int ret = 0;
if (TextL->isChecked())
ret = 0;
if (TextR->isChecked())
ret = 2;
if (TextC->isChecked())
ret = 1;
if (TextB->isChecked())
ret = 3;
if (TextF->isChecked())
ret = 4;
return ret;
}
void AlignSelect::setTypeStyle(int a)
{
selected = a;
emit State(a);
}
int AlignSelect::selectedId()
{
return selected;
}
void AlignSelect::changeEvent(QEvent *e)
{
if (e->type() == QEvent::LanguageChange)
{
languageChange();
}
}
void AlignSelect::languageChange()
{
TextL->setToolTip("");
TextR->setToolTip("");
TextC->setToolTip("");
TextB->setToolTip("");
TextF->setToolTip("");
TextL->setToolTip( tr("Align Text Left"));
TextR->setToolTip( tr("Align Text Right"));
TextC->setToolTip( tr("Align Text Center"));
TextB->setToolTip( tr("Align Text Justified"));
TextF->setToolTip( tr("Align Text Forced Justified"));
}
|