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