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.
30 lines
514 B
30 lines
514 B
#ifndef PREFERENCESWIDGET_H
|
|
#define PREFERENCESWIDGET_H
|
|
|
|
#include "searchengine.h"
|
|
#include "dbseprefwidget.h"
|
|
|
|
class PreferencesWidget : public PrefWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
PreferencesWidget(TQWidget *parent=0, const char* name=0);
|
|
virtual ~PreferencesWidget();
|
|
|
|
virtual void apply();
|
|
virtual void cancel();
|
|
virtual void standard();
|
|
DBSearchEnginePref *dbpw;
|
|
public slots:
|
|
void setName(TQString);
|
|
void setEntries(int);
|
|
signals:
|
|
void applyNow();
|
|
void restoreNow();
|
|
|
|
};
|
|
|
|
#endif
|