summaryrefslogtreecommitdiffstats
path: root/kbabel/kbabeldict/modules/dbsearchengine/preferenceswidget.h
blob: 5cd1fed86114fd008cb705e8b022cc7b78d1c0b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#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