summaryrefslogtreecommitdiffstats
path: root/kbabel/kbabeldict/modules/dbsearchengine/preferenceswidget.cpp
blob: 4effd2cc7cd4e1608e406c869c659e8f2eb2d645 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
#include <tqradiobutton.h>
#include <tqslider.h>
#include <tqspinbox.h>  
#include <tqcheckbox.h>
#include <tqlabel.h>
#include <tqlayout.h>
#include <klocale.h>
#include <kfiledialog.h>
#include <kurlrequester.h>
#include <tqtoolbutton.h>
#include <klineedit.h>
#include <kstandarddirs.h>

#include "dbseprefwidget.h"
#include "preferenceswidget.h"

PreferencesWidget::PreferencesWidget(TQWidget *parent, const char* name)
		: PrefWidget(parent,name)
{
	TQVBoxLayout *tqlayout = new TQVBoxLayout(this);
//	TQLabel *label = new TQLabel(i18n("Settings for KDE database search engine"),this);
//	tqlayout->addWidget(label);

	dbpw = new DBSearchEnginePref(this);
	dbpw->dirInput->setMode(KFile::Directory | KFile::LocalOnly);
	
	tqlayout->addWidget(dbpw);
	resize(TQSize(200,200).expandedTo(minimumSizeHint()));

//    connect(dbpw->browseTB_3,TQT_SIGNAL(clicked()),TQT_SLOT(browse1()));

    emit restoreNow();   //Fill with actual params.			

}

PreferencesWidget::~PreferencesWidget()
{
}

void PreferencesWidget::apply()
{
emit applyNow();
}

void PreferencesWidget::cancel()
{
emit restoreNow();
}

void PreferencesWidget::standard()
{


dbpw->caseSensitiveCB->setChecked(false);
dbpw->normalizeCB->setChecked(true);
dbpw->removeContextCB->setChecked(true);

dbpw->oneWordSubCB->setChecked(true);
dbpw->twoWordSubCB->setChecked(false);


dbpw->RegExpRB->setChecked(false);
dbpw->normalTextRB->setChecked(true);
dbpw->equalCB->setChecked( true );
dbpw->containsCB->setChecked( true);
dbpw->containedCB->setChecked( true );
 
 
dbpw->oneWordSubSB->setValue(20);
dbpw->twoWordSubSB->setValue(8);

dbpw->maxSB->setValue(500);
dbpw->thresholdSL->setValue(50);
dbpw->thresholdOrigSL->setValue(50);

dbpw->allRB->setChecked( false);
dbpw->slistRB->setChecked( true);
dbpw->rlistRB->setChecked( false );
	
dbpw->nothingCB->setChecked(true); 
dbpw->freqSB->setValue(300);
 
dbpw->ignoreLE->setText("&.:");
 
dbpw->autoAddCB_2->setChecked(true);

TQString defaultDir;
 KStandardDirs * dirs = KGlobal::dirs();
 if(dirs)
 {
     defaultDir = dirs->saveLocation("data");
     if(defaultDir.right(1)!="/")
         defaultDir+="/";
     defaultDir += "kbabeldict/dbsearchengine";
 }
 
 dbpw->dirInput->setURL(defaultDir); 
}

void PreferencesWidget::setName(TQString n)
{
dbpw->filenameLB->setText(i18n("Scanning file: %1").arg(n));
}

void PreferencesWidget::setEntries(int i)
{
dbpw->entriesLB->setText(i18n("Entries added: %1").arg(i));

}

#include "preferenceswidget.moc"