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.
|
#ifndef KS_FIELD_H
|
|
#define KS_FIELD_H
|
|
|
|
#include "common/field.h"
|
|
#include "common/misc_ui.h"
|
|
|
|
|
|
class KSField : public Field
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
KSField(TQWidget *parent);
|
|
|
|
private slots:
|
|
virtual void removedUpdated();
|
|
virtual void settingsChanged();
|
|
};
|
|
|
|
#endif
|