summaryrefslogtreecommitdiffstats
path: root/src/progs/direct/gui/direct_config_widget.h
blob: 3060a891627fad1252572af28737b23ee6f03778 (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 *parent) const;
  virtual bool hasAdvancedDialog() const { return false; }
  virtual ::Programmer::AdvancedDialog *createAdvancedDialog(::Programmer::Base &, TQWidget *) const { return 0; }
};

//-----------------------------------------------------------------------------
class HConfigWidget : public ::Hardware::HConfigWidget
{
TQ_OBJECT
  
public:
  HConfigWidget(::Programmer::Base &base, TQWidget *parent, 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 updateTestStatus(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
{
TQ_OBJECT
  
public:
  ConfigWidget(const ::Programmer::Group &group, TQWidget *parent);
  virtual ::Hardware::HConfigWidget *createHardwareConfigWidget(TQWidget *parent, bool edit) const;
};

} // namespace

#endif