blob: cad205c54472704695927aff144688e6978c7bbd (
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
|
/*
$ Author: Mirko Boehm $
$ License: This code is licensed under the LGPL $
$ Copyright: (C) 1996-2003, Mirko Boehm $
$ Contact: Mirko Boehm <mirko@kde.org>
http://www.kde.org
http://www.hackerbuero.org $
*/
#ifndef KWIRELESS_PROPERTYTABLE_H
#define KWIRELESS_PROPERTYTABLE_H
#include <kdialogbase.h>
#include <tqptrlist.h>
#include "propertytablebase.h"
class DeviceInfo;
class TQTimer;
class PropertyTable : public PropertyTableBase
{
Q_OBJECT
public:
PropertyTable(TQWidget *parent = 0, const char* name = 0);
~PropertyTable();
};
class PropertiesDialog : public KDialogBase
{
Q_OBJECT
public:
PropertiesDialog(TQWidget *parent = 0, const char *name = 0);
protected:
PropertyTable *table;
TQPtrList<DeviceInfo> *info;
bool wait;
TQTimer *timer;
public slots:
void update(TQPtrList<DeviceInfo> *);
void timeout();
void selected(int);
};
#endif // KWIRELESS_PROPERTYTABLE_H
|