blob: e56c59fc175d10969e060775af9ae3ff179c3046 (
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
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
|
/****************************************************************************
** ui.h extension file, included from the uic-generated form implementation.
**
** If you want to add, delete, or rename functions or slots, use
** Qt Designer to update this file, preserving your code.
**
** You should not define a constructor or destructor in this file.
** Instead, write your code in functions called init() and destroy().
** These will automatically be called by the form's constructor and
** destructor.
*****************************************************************************/
#include "config.h"
#include "klamav.h"
#include <kapplication.h>
#include <klocale.h>
#include <qpushbutton.h>
#include <qpixmap.h>
#include <stdlib.h>
#include <kstandarddirs.h>
#include <kurl.h>
QString databasepath;
QString quarantinepath;
void
FirstRunWizard::init()
{
//aesthetics
cancelButton()->setFixedSize( cancelButton()->sizeHint() );
helpButton()->hide();
QString homepath = getenv("HOME");
databasepath = homepath + "/.klamav/database";
DatabaseLocation->setURL(databasepath);
quarantinepath = homepath + "/.klamav/quarantine";
QuarantineLocation->setURL(quarantinepath);
preview->setPixmap( QPixmap(locate("data", "klamav/about/klam.png")) );
// picture1->setPixmap( getJPG( "amarok_rocks" ) );
// picture4->setPixmap( *picture1->pixmap() );
ClamBanner->setText(QString("<a href=\"http://ads.clamav.net/adclick.php?n=a9141dd1\" target=\"_blank\"><img src=\"%1\" border=\"0\" alt=\"ClamAV banner\" /></a>").arg(locate("data", "klamav/about/tshirt.png")));
setFinishEnabled ( WizardPage_1, true );
}
void
FirstRunWizard::showPage( QWidget *w ) //virtual
{
QWizard::showPage( w );
cancelButton()->setText( w == WizardPage ? i18n("&Skip") : i18n("&Cancel") );
}
// void
// FirstRunWizard::destroy()
// {
//
//
// KConfig* config = klamav->KGlobal::config();
// config->setGroup("Freshklam");
//
// //Configure Database Path
// QStringList lastDownloadPaths;
// if (DatabaseLocation->url() != "")
// lastDownloadPaths.prepend( QString("%1").arg(DatabaseLocation->url()));
// else
// lastDownloadPaths.prepend( QString("%1").arg(databasepath));
// config->writeEntry("lastDownloadPaths", lastDownloadPaths);
// config->sync();
//
// //Configure Quarantine Path
// QStringList lastQuarLocations;
//
// config->setGroup("Kuarantine");
//
// if (QuarantineLocation->url() != "")
// lastQuarLocations.prepend( QString("%1").arg(QuarantineLocation->url()));
// else
// lastQuarLocations.prepend( QString("%1").arg(quarantinepath));
// config->writeEntry("KuarantineLocations", lastQuarLocations);
// config->sync();
//
// //Download an updated database?
// if (CheckForDatabaseUpdates->isChecked())
// kmain->firstDownload = true;
// }
KURL
FirstRunWizard::databasePath( ) //virtual
{
return DatabaseLocation->url();
}
KURL
FirstRunWizard::quarantinePath( ) //virtual
{
return QuarantineLocation->url();
}
QString
FirstRunWizard::defaultDatabasePath( ) //virtual
{
return databasepath;
}
QString
FirstRunWizard::defaultQuarantinePath( ) //virtual
{
return quarantinepath;
}
bool
FirstRunWizard::downloadDatabase( ) //virtual
{
if (CheckForDatabaseUpdates->isChecked())
return true;
return false;
}
bool
FirstRunWizard::downloadClamAV( ) //virtual
{
if (CheckForClamAVUpdates->isChecked())
return true;
return false;
}
|