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
|
/***************************************************************************
* Copyright (C) 2007 Nicolas Hadacek <hadacek@kde.org> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
***************************************************************************/
#include "picdem_bootloader_ui.h"
#include "progs/picdem_bootloader/base/picdem_bootloader.h"
//-----------------------------------------------------------------------------
PicdemBootloader::ConfigWidget::ConfigWidget(const ::Programmer::Group &group, TQWidget *tqparent)
: ::Programmer::ConfigWidget(group, tqparent)
{
uint row = numRows();
TQLabel *label = new TQLabel(i18n("USB Vendor Id:"), this);
addWidget(label, row,row, 0,0);
_vendorId = new HexWordEditor(4, this);
addWidget(_vendorId, row,row, 1,1);
row++;
label = new TQLabel(i18n("USB Product Id:"), this);
addWidget(label, row,row, 0,0);
_productId = new HexWordEditor(4, this);
addWidget(_productId, row,row, 1,1);
row++;
}
void PicdemBootloader::ConfigWidget::saveConfig()
{
Config::writeVendorId(_vendorId->value().toUInt());
Config::writeProductId(_productId->value().toUInt());
}
void PicdemBootloader::ConfigWidget::loadConfig()
{
_vendorId->setValue(Config::readVendorId());
_productId->setValue(Config::readProductId());
}
//-----------------------------------------------------------------------------
::Programmer::ConfigWidget *PicdemBootloader::GroupUI::createConfigWidget(TQWidget *tqparent) const
{
return new ConfigWidget(static_cast<const ::Programmer::Group &>(group()), tqparent);
}
|