You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
963 B
48 lines
963 B
/*
|
|
$ 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
|