blob: 093e9faff5c35d859b51a8c688da773bef0b6423 (
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
|
/***************************************************************************
* Copyright (C) 2005 Nicolas Hadacek <hadacek@kde.org> *
* Copyright (C) 2003-2004 Alain Gibaud <alain.gibaud@free.fr> *
* *
* 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. *
***************************************************************************/
#ifndef DIRECT_CONFIG_WIDGET
#define DIRECT_CONFIG_WIDGET
#include <knuminput.h>
#include "progs/gui/prog_group_ui.h"
#include "progs/gui/hardware_config_widget.h"
#include "progs/direct/base/direct.h"
namespace Direct
{
//----------------------------------------------------------------------------
class GroupUI : public ::Programmer::GroupUI
{
public:
virtual ::Programmer::ConfigWidget *createConfigWidget(TQWidget *tqparent) const;
virtual bool hasAdvancedDialog() const { return false; }
virtual ::Programmer::AdvancedDialog *createAdvancedDialog(::Programmer::Base &, TQWidget *) const { return 0; }
};
//-----------------------------------------------------------------------------
class HConfigWidget : public ::Hardware::HConfigWidget
{
Q_OBJECT
TQ_OBJECT
public:
HConfigWidget(::Programmer::Base &base, TQWidget *tqparent, bool edit);
virtual bool set(const Port::Description &pd, const ::Hardware::Data &data);
virtual ::Hardware::Data *data() const;
private slots:
void slotTestPin();
void slotPinChanged();
void updateDataIn();
void sendBits();
void slotSendBits();
private:
TQComboBox *_combos[Nb_PinTypes];
TQCheckBox *_invcbs[Nb_PinTypes];
TQCheckBox *_testcbs[Nb_PinTypes];
TQLabel *_testLabels[Nb_PinTypes];
KIntNumInput *_delay;
TQPushButton *_sendBitsButton;
TQTimer *_timerSendBits, *_timerPollDataOut;
void sendBits(uint d, int nbb);
void updateTestPin(PinType ptype);
void updateTesttqStatus(PinType ptype, bool on);
uint pin(PinType ptype) const;
void updatePin(PinType ptype);
Hardware *hardware() { return static_cast<Hardware *>(_hardware); }
};
//-----------------------------------------------------------------------------
class ConfigWidget : public ::Hardware::ConfigWidget
{
Q_OBJECT
TQ_OBJECT
public:
ConfigWidget(const ::Programmer::Group &group, TQWidget *tqparent);
virtual ::Hardware::HConfigWidget *createHardwareConfigWidget(TQWidget *tqparent, bool edit) const;
};
} // namespace
#endif
|