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
|
/*
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 "shadebutton.h"
#include "query.h"
ShadeButton::ShadeButton(QWidget* parent) : QToolButton(parent)
{
QString tmp[] = {"0 %", "10 %", "20 %", "30 %", "40 %", "50 %", "60 %", "70 %", "80 %", "90 %", "100 %"};
size_t array = sizeof(tmp) / sizeof(*tmp);
FillSh = new QMenu();
FillSh->addAction( tr("Other..."))->setCheckable(true);
for (uint a = 0; a < array; ++a)
FillSh->addAction(tmp[a])->setCheckable(true);
setMenu(FillSh);
setPopupMode(QToolButton::InstantPopup);
setText("100 %");
FillSh->actions()[11]->setChecked(true);
connect( FillSh, SIGNAL(triggered(QAction *)), this, SLOT(setShade(QAction *)));
}
void ShadeButton::setShade(QAction *act)
{
bool ok = false;
int a;
int c;
int b = 100;
for (a = 0; a < FillSh->actions().count(); ++a)
{
FillSh->actions()[a]->setChecked(false);
}
act->setChecked(true);
QList<QAction*> actList = FillSh->actions();
c = actList.indexOf(act);
if (c < 0)
return;
if (c > 0)
b = (c-1) * 10;
if (b > 100)
return; // no need for > 100%, fix needed by SM, Riku
if (c == 0)
{
Query dia(this, "New", 1, 0, tr("&Shade:"), tr("Shade"));
if (dia.exec())
{
c = dia.getEditText().toInt(&ok);
if (ok)
b = qMax(qMin(c, 100),0);
else
b = 100;
}
else
return;
}
setText(QString::number(b)+" %");
emit clicked();
}
int ShadeButton::getValue()
{
int l = text().length();
QString tx = text().remove(l-2,2);
return tx.toInt();
}
void ShadeButton::setValue(int val)
{
for (int a = 0; a < FillSh->actions().count(); ++a)
{
FillSh->actions()[a]->setChecked(false);
}
if ((val % 10) == 0)
FillSh->actions()[val/10+1]->setChecked(true);
else
FillSh->actions()[0]->setChecked(true);
setText(QString::number(val)+" %");
}
|