summaryrefslogtreecommitdiffstats
path: root/kbabel/kbabeldict/modules/dbsearchengine/preferenceswidget.h
blob: ab88096e85326039692240bd14b7b6cc63bdc2ae (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
29
#ifndef PREFERENCESWIDGET_H
#define PREFERENCESWIDGET_H

#include "searchengine.h"
#include "dbseprefwidget.h"

class PreferencesWidget : public PrefWidget
{
	TQ_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