|
a/src/qtgui/confgui/confguiindex.cpp |
|
b/src/qtgui/confgui/confguiindex.cpp |
|
... |
|
... |
112 |
m_widgets.push_back(w);
|
112 |
m_widgets.push_back(w);
|
113 |
tabWidget->addTab(w, QObject::tr("Local parameters"));
|
113 |
tabWidget->addTab(w, QObject::tr("Local parameters"));
|
114 |
|
114 |
|
115 |
w = new ConfBeaglePanelW(this, m_conf);
|
115 |
w = new ConfBeaglePanelW(this, m_conf);
|
116 |
m_widgets.push_back(w);
|
116 |
m_widgets.push_back(w);
|
117 |
tabWidget->addTab(w, QObject::tr("Beagle web history"));
|
117 |
tabWidget->addTab(w, QObject::tr("Web history"));
|
118 |
|
118 |
|
119 |
w = new ConfSearchPanelW(this, m_conf);
|
119 |
w = new ConfSearchPanelW(this, m_conf);
|
120 |
m_widgets.push_back(w);
|
120 |
m_widgets.push_back(w);
|
121 |
tabWidget->addTab(w, QObject::tr("Search parameters"));
|
121 |
tabWidget->addTab(w, QObject::tr("Search parameters"));
|
122 |
}
|
122 |
}
|
|
... |
|
... |
126 |
{
|
126 |
{
|
127 |
QVBoxLayout *vboxLayout = new QVBoxLayout(this);
|
127 |
QVBoxLayout *vboxLayout = new QVBoxLayout(this);
|
128 |
vboxLayout->setSpacing(spacing);
|
128 |
vboxLayout->setSpacing(spacing);
|
129 |
vboxLayout->setMargin(margin);
|
129 |
vboxLayout->setMargin(margin);
|
130 |
|
130 |
|
131 |
ConfLink lnk1(new ConfLinkRclRep(config, "processbeaglequeue"));
|
131 |
ConfLink lnk1(new ConfLinkRclRep(config, "processwebqueue"));
|
132 |
ConfParamBoolW* cp1 =
|
132 |
ConfParamBoolW* cp1 =
|
133 |
new ConfParamBoolW(this, lnk1, tr("Steal Beagle indexing queue"),
|
133 |
new ConfParamBoolW(this, lnk1, tr("Process the WEB history queue"),
|
134 |
tr("Beagle MUST NOT be running. Enables processing "
|
134 |
tr("Enables indexing Firefox visited pages.<br>"
|
135 |
"the beagle queue to index Firefox web history.<br>"
|
135 |
"(you need also install the Firefox Recoll plugin)"
|
136 |
"(you should also install the Firefox Beagle plugin)"
|
|
|
137 |
));
|
136 |
));
|
138 |
vboxLayout->addWidget(cp1);
|
137 |
vboxLayout->addWidget(cp1);
|
139 |
|
138 |
|
140 |
ConfLink lnk2(new ConfLinkRclRep(config, "webcachedir"));
|
139 |
ConfLink lnk2(new ConfLinkRclRep(config, "webcachedir"));
|
141 |
ConfParamFNW* cp2 =
|
140 |
ConfParamFNW* cp2 =
|