blob: 261dafc7a9296dab479aed91051c9309def3ea12 (
plain)
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
|
#include "data.h"
void WizardBase::setAppName( TQString n )
{
TQPixmap tmp;
tmp.convertFromImage(qembed_findImage("packageIcon"));
appIcon->setPixmap(tmp);
tmp.convertFromImage(qembed_findImage("splash"));
splash->setPixmap(tmp);
setCaption("Installing "+n);
titleLabel->setText("<b>Installing "+n+"</b>");
appNameLabel->setText("<b>"+n+"</b>");
shortcutBox->setText("Place a shortcut to "+n+" on the desktop");
}
void WizardBase::nextPressed()
{
}
void WizardBase::previousPressed()
{
}
void WizardBase::cancelPressed()
{
}
void WizardBase::browsePressed()
{
}
void WizardBase::runPressed()
{
}
void WizardBase::logPressed()
{
}
void WizardBase::componentSelected( TQListViewItem * )
{
}
|