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
|
#include <QtGui>
#include "rootpartition.h"
#include "../listdelegate.h"
#include "../listitem.h"
#include "../mainwizard.h"
wpRootPartition::wpRootPartition(QWidget *parent) : QWizardPage(parent)
{
setupUi(this);
backend = Backend::instance();
connect(backend, SIGNAL(receivedDataLine(QString,QString)), this, SLOT(receivedDataLine(QString,QString)));
connect(rootPartitionDev, SIGNAL(currentItemChanged(QListWidgetItem*,QListWidgetItem*)), this, SLOT(updateComplete()));
connect(chkAdvanced, SIGNAL(stateChanged(int)), this, SLOT(updateComplete()));
}
void wpRootPartition::initializePage()
{
clearPage();
}
void wpRootPartition::clearPage()
{
backend->exec("send_possible_root_partitions");
rootPartitionDev->clear();
backend->exec("send_possible_root_filesystems");
rootPartitionFs->clear();
}
void wpRootPartition::receivedDataLine(QString data, QString line)
{
if(data == "possible_root_partitions")
{
QListWidgetItem *item = new QListWidgetItem(QIcon::fromTheme("drive-harddisk"), line);
rootPartitionDev->addItem(item);
}
if(data == "possible_root_filesystems")
{
rootPartitionFs->addItem(line);
}
}
void wpRootPartition::updateComplete()
{
emit completeChanged();
}
bool wpRootPartition::isComplete() const
{
if(!chkAdvanced->isChecked() && !rootPartitionDev->currentItem()) return false;
return true;
}
bool wpRootPartition::validatePage()
{
if(!isComplete()) return false;
if(rootPartitionDev->currentItem())
backend->exec(QString("hdmap_set %1:/:%2:auto")
.arg(rootPartitionDev->currentItem()->text().section(" ",0,0))
.arg(chkFormat->isChecked() ? rootPartitionFs->currentText() : ""));
return true;
}
int wpRootPartition::nextId() const
{
if(chkAdvanced->isChecked())
return MainWizard::Page_HdMap;
else
return MainWizard::Page_Bootloader;
}
|