blob: 377903b9553e91a0798346fac39294b779266687 (
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
{
TQ_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
|