summaryrefslogtreecommitdiffstats
path: root/src/progs/gui/prog_config_center.h
blob: 83508785131e95dc27074dd611e1cbbaddaf9d45 (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
/***************************************************************************
 *   Copyright (C) 2005 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.                                   *
 ***************************************************************************/
#ifndef PROG_CONFIG_CENTER_H
#define PROG_CONFIG_CENTER_H

#include <tqcheckbox.h>

#include "common/gui/config_widget.h"
#include "common/gui/key_gui.h"
#include "progs/base/prog_config.h"
class Container;
class PortSelector;

namespace Programmer
{
BEGIN_DECLARE_CONFIG_WIDGET(Config, OptionsConfigWidget)
  virtual TQString header() const { return i18n("Programmer Options"); }
  virtual TQString title() const { return i18n("Programmer Options"); }
  virtual TQPixmap pixmap() const;
END_DECLARE_CONFIG_WIDGET

//----------------------------------------------------------------------------
class SelectConfigWidget : public ::ConfigWidget
{
Q_OBJECT
  
public:
  SelectConfigWidget();
  virtual void loadConfig() {}
  virtual TQString header() const { return i18n("Programmer Selection"); }
  virtual TQString title() const { return i18n("Programmer Selection"); }
  virtual TQPixmap pixmap() const;

public slots:
  virtual void saveConfig();

private slots:
  void programmerChanged();
  void portChanged();

private:
  KeyComboBox<TQString> *_combo;
  PortSelector   *_portSelector;
  KeyWidgetStack<TQString> *_stack;
  Container      *_portSelectorContainer;
  TQTabWidget     *_tabWidget;
};

} // namespace

#endif