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.
28 lines
449 B
28 lines
449 B
#ifndef PREFERENCESWIDGET_H
|
|
#define PREFERENCESWIDGET_H
|
|
|
|
#include "searchengine.h"
|
|
#include "dbse2.h"
|
|
|
|
class KDB2PreferencesWidget : public PrefWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
KDB2PreferencesWidget(TQWidget *parent=0, const char* name=0);
|
|
virtual ~KDB2PreferencesWidget();
|
|
|
|
virtual void apply();
|
|
virtual void cancel();
|
|
virtual void standard();
|
|
DBSearchEnginePrefWidget *dbpw;
|
|
|
|
signals:
|
|
void applyNow();
|
|
void restoreNow();
|
|
|
|
};
|
|
|
|
#endif
|