Add search and grouping facility to Crossref dialog (bug #6304).

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33268 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2010-01-30 10:51:24 +00:00
parent c0d42b97ee
commit e0d2a2adff
4 changed files with 372 additions and 188 deletions

View File

@ -27,8 +27,8 @@
#include <QLineEdit> #include <QLineEdit>
#include <QCheckBox> #include <QCheckBox>
#include <QListWidget> #include <QTreeWidget>
#include <QListWidgetItem> #include <QTreeWidgetItem>
#include <QPushButton> #include <QPushButton>
#include <QToolTip> #include <QToolTip>
#include <QCloseEvent> #include <QCloseEvent>
@ -52,9 +52,12 @@ GuiRef::GuiRef(GuiView & lv)
sortCB->setEnabled(false); sortCB->setEnabled(false);
caseSensitiveCB->setEnabled(false); caseSensitiveCB->setEnabled(false);
caseSensitiveCB->setChecked(false); caseSensitiveCB->setChecked(false);
refsLW->setEnabled(false); refsTW->setEnabled(false);
gotoPB->setEnabled(false); gotoPB->setEnabled(false);
refsTW->setColumnCount(1);
refsTW->header()->setVisible(false);
connect(okPB, SIGNAL(clicked()), this, SLOT(slotOK())); connect(okPB, SIGNAL(clicked()), this, SLOT(slotOK()));
connect(applyPB, SIGNAL(clicked()), this, SLOT(slotApply())); connect(applyPB, SIGNAL(clicked()), this, SLOT(slotApply()));
connect(closePB, SIGNAL(clicked()), this, SLOT(slotClose())); connect(closePB, SIGNAL(clicked()), this, SLOT(slotClose()));
@ -65,18 +68,24 @@ GuiRef::GuiRef(GuiView & lv)
this, SLOT(changed_adaptor())); this, SLOT(changed_adaptor()));
connect(referenceED, SIGNAL(textChanged(QString)), connect(referenceED, SIGNAL(textChanged(QString)),
this, SLOT(changed_adaptor())); this, SLOT(changed_adaptor()));
connect(findLE, SIGNAL(returnPressed()),
this, SLOT(on_searchPB_clicked()));
connect(csFindCB, SIGNAL(clicked()),
this, SLOT(on_searchPB_clicked()));
connect(nameED, SIGNAL(textChanged(QString)), connect(nameED, SIGNAL(textChanged(QString)),
this, SLOT(changed_adaptor())); this, SLOT(changed_adaptor()));
connect(refsLW, SIGNAL(itemClicked(QListWidgetItem *)), connect(refsTW, SIGNAL(itemClicked(QTreeWidgetItem *, int)),
this, SLOT(refHighlighted(QListWidgetItem *))); this, SLOT(refHighlighted(QTreeWidgetItem *)));
connect(refsLW, SIGNAL(itemSelectionChanged()), connect(refsTW, SIGNAL(itemSelectionChanged()),
this, SLOT(selectionChanged())); this, SLOT(selectionChanged()));
connect(refsLW, SIGNAL(itemDoubleClicked(QListWidgetItem *)), connect(refsTW, SIGNAL(itemDoubleClicked(QTreeWidgetItem *, int)),
this, SLOT(refSelected(QListWidgetItem *))); this, SLOT(refSelected(QTreeWidgetItem *)));
connect(sortCB, SIGNAL(clicked()), connect(sortCB, SIGNAL(clicked()),
this, SLOT(sortToggled())); this, SLOT(sortToggled()));
connect(caseSensitiveCB, SIGNAL(clicked()), connect(caseSensitiveCB, SIGNAL(clicked()),
this, SLOT(caseSensitiveToggled())); this, SLOT(caseSensitiveToggled()));
connect(groupCB, SIGNAL(clicked()),
this, SLOT(groupToggled()));
connect(gotoPB, SIGNAL(clicked()), connect(gotoPB, SIGNAL(clicked()),
this, SLOT(gotoClicked())); this, SLOT(gotoClicked()));
connect(updatePB, SIGNAL(clicked()), connect(updatePB, SIGNAL(clicked()),
@ -88,7 +97,7 @@ GuiRef::GuiRef(GuiView & lv)
bc().setOK(okPB); bc().setOK(okPB);
bc().setApply(applyPB); bc().setApply(applyPB);
bc().setCancel(closePB); bc().setCancel(closePB);
bc().addReadOnly(refsLW); bc().addReadOnly(refsTW);
bc().addReadOnly(sortCB); bc().addReadOnly(sortCB);
bc().addReadOnly(caseSensitiveCB); bc().addReadOnly(caseSensitiveCB);
bc().addReadOnly(nameED); bc().addReadOnly(nameED);
@ -118,50 +127,55 @@ void GuiRef::selectionChanged()
if (isBufferReadonly()) if (isBufferReadonly())
return; return;
QList<QListWidgetItem *> selections = refsLW->selectedItems(); QList<QTreeWidgetItem *> selections = refsTW->selectedItems();
if (selections.isEmpty()) if (selections.isEmpty())
return; return;
QListWidgetItem * sel = selections.first(); QTreeWidgetItem * sel = selections.first();
refHighlighted(sel); refHighlighted(sel);
return; return;
} }
void GuiRef::refHighlighted(QListWidgetItem * sel) void GuiRef::refHighlighted(QTreeWidgetItem * sel)
{ {
if (isBufferReadonly()) if (isBufferReadonly())
return; return;
/* int const cur_item = refsLW->currentRow(); if (sel->childCount() > 0) {
sel->setExpanded(true);
return;
}
/* int const cur_item = refsTW->currentRow();
bool const cur_item_selected = cur_item >= 0 ? bool const cur_item_selected = cur_item >= 0 ?
refsLB->isSelected(cur_item) : false;*/ refsLB->isSelected(cur_item) : false;*/
bool const cur_item_selected = refsLW->isItemSelected(sel); bool const cur_item_selected = refsTW->isItemSelected(sel);
if (cur_item_selected) if (cur_item_selected)
referenceED->setText(sel->text()); referenceED->setText(sel->text(0));
if (at_ref_) if (at_ref_)
gotoRef(); gotoRef();
gotoPB->setEnabled(true); gotoPB->setEnabled(true);
if (typeAllowed()) if (typeAllowed())
typeCO->setEnabled(true); typeCO->setEnabled(true);
if (nameAllowed()) nameED->setHidden(!nameAllowed());
nameED->setEnabled(true); nameL->setHidden(!nameAllowed());
} }
void GuiRef::refSelected(QListWidgetItem * sel) void GuiRef::refSelected(QTreeWidgetItem * sel)
{ {
if (isBufferReadonly()) if (isBufferReadonly())
return; return;
/* int const cur_item = refsLW->currentRow(); /* int const cur_item = refsTW->currentRow();
bool const cur_item_selected = cur_item >= 0 ? bool const cur_item_selected = cur_item >= 0 ?
refsLB->isSelected(cur_item) : false;*/ refsLB->isSelected(cur_item) : false;*/
bool const cur_item_selected = refsLW->isItemSelected(sel); bool const cur_item_selected = refsTW->isItemSelected(sel);
if (cur_item_selected) if (cur_item_selected)
referenceED->setText(sel->text()); referenceED->setText(sel->text(0));
// <enter> or double click, inserts ref and closes dialog // <enter> or double click, inserts ref and closes dialog
slotOK(); slotOK();
} }
@ -180,8 +194,15 @@ void GuiRef::caseSensitiveToggled()
} }
void GuiRef::groupToggled()
{
redoRefs();
}
void GuiRef::updateClicked() void GuiRef::updateClicked()
{ {
findLE->clear();
updateRefs(); updateRefs();
} }
@ -217,7 +238,8 @@ void GuiRef::updateContents()
referenceED->setText(toqstr(params_["reference"])); referenceED->setText(toqstr(params_["reference"]));
nameED->setText(toqstr(params_["name"])); nameED->setText(toqstr(params_["name"]));
nameED->setReadOnly(!nameAllowed() && !isBufferReadonly()); nameED->setHidden(!nameAllowed() && !isBufferReadonly());
nameL->setHidden(!nameAllowed() && !isBufferReadonly());
// restore type settings for new insets // restore type settings for new insets
if (params_["reference"].empty()) if (params_["reference"].empty())
@ -321,20 +343,29 @@ void GuiRef::redoRefs()
{ {
// Prevent these widgets from emitting any signals whilst // Prevent these widgets from emitting any signals whilst
// we modify their state. // we modify their state.
refsLW->blockSignals(true); refsTW->blockSignals(true);
referenceED->blockSignals(true); referenceED->blockSignals(true);
refsLW->setUpdatesEnabled(false); refsTW->setUpdatesEnabled(false);
refsLW->clear(); refsTW->clear();
// need this because Qt will send a highlight() here for // need this because Qt will send a highlight() here for
// the first item inserted // the first item inserted
QString const oldSelection(referenceED->text()); QString const oldSelection(referenceED->text());
QStringList refsStrings; QStringList refsStrings;
QStringList refsCategories;
refsCategories.append(qt_("No prefix"));
vector<docstring>::const_iterator iter; vector<docstring>::const_iterator iter;
for (iter = refs_.begin(); iter != refs_.end(); ++iter) for (iter = refs_.begin(); iter != refs_.end(); ++iter) {
refsStrings.append(toqstr(*iter)); QString const lab = toqstr(*iter);
refsStrings.append(lab);
if (groupCB->isChecked() && lab.contains(":")) {
QString const pref = lab.split(':')[0];
if (!pref.isEmpty() && !refsCategories.contains(pref))
refsCategories.append(pref);
}
}
if (sortCB->isEnabled() && sortCB->isChecked()) { if (sortCB->isEnabled() && sortCB->isChecked()) {
if(caseSensitiveCB->isEnabled() && caseSensitiveCB->isChecked()) if(caseSensitiveCB->isEnabled() && caseSensitiveCB->isChecked())
@ -344,7 +375,35 @@ void GuiRef::redoRefs()
caseInsensitiveLessThan /*defined above*/); caseInsensitiveLessThan /*defined above*/);
} }
refsLW->addItems(refsStrings); if (groupCB->isChecked()) {
QList<QTreeWidgetItem *> refsCats;
for (int i = 0; i < refsCategories.size(); ++i) {
QString const cat = refsCategories.at(i);
QTreeWidgetItem * item = new QTreeWidgetItem(refsTW);
item->setText(0, cat);
for (int i = 0; i < refsStrings.size(); ++i) {
QString const ref = refsStrings.at(i);
if ((ref.startsWith(cat + QString(":")))
|| (cat == qt_("No prefix")
&& !ref.contains(":"))) {
QTreeWidgetItem * child =
new QTreeWidgetItem(item);
child->setText(0, ref);
item->addChild(child);
}
}
refsCats.append(item);
}
refsTW->addTopLevelItems(refsCats);
} else {
QList<QTreeWidgetItem *> refsItems;
for (int i = 0; i < refsStrings.size(); ++i) {
QTreeWidgetItem * item = new QTreeWidgetItem(refsTW);
item->setText(0, refsStrings.at(i));
refsItems.append(item);
}
refsTW->addTopLevelItems(refsItems);
}
referenceED->setText(oldSelection); referenceED->setText(oldSelection);
@ -354,23 +413,24 @@ void GuiRef::redoRefs()
bool const newInset = oldSelection.isEmpty(); bool const newInset = oldSelection.isEmpty();
QString textToFind = newInset ? last_reference_ : oldSelection; QString textToFind = newInset ? last_reference_ : oldSelection;
last_reference_.clear(); last_reference_.clear();
for (int i = 0; i != refsLW->count(); ++i) { QTreeWidgetItemIterator it(refsTW);
QListWidgetItem * item = refsLW->item(i); while (*it) {
if (textToFind == item->text()) { if ((*it)->text(0) == textToFind) {
refsLW->setCurrentItem(item); refsTW->setCurrentItem(*it);
refsLW->setItemSelected(item, !newInset); refsTW->setItemSelected(*it, !newInset);
//Make sure selected item is visible //Make sure selected item is visible
refsLW->scrollToItem(item); refsTW->scrollToItem(*it);
last_reference_ = textToFind; last_reference_ = textToFind;
break; break;
} }
++it;
} }
} }
refsLW->setUpdatesEnabled(true); refsTW->setUpdatesEnabled(true);
refsLW->update(); refsTW->update();
// Re-activate the emission of signals by these widgets. // Re-activate the emission of signals by these widgets.
refsLW->blockSignals(false); refsTW->blockSignals(false);
referenceED->blockSignals(false); referenceED->blockSignals(false);
} }
@ -386,9 +446,9 @@ void GuiRef::updateRefs()
} }
sortCB->setEnabled(!refs_.empty()); sortCB->setEnabled(!refs_.empty());
caseSensitiveCB->setEnabled(sortCB->isEnabled() && sortCB->isChecked()); caseSensitiveCB->setEnabled(sortCB->isEnabled() && sortCB->isChecked());
refsLW->setEnabled(!refs_.empty()); refsTW->setEnabled(!refs_.empty());
// refsLW should only be the focus proxy when it is enabled // refsTW should only be the focus proxy when it is enabled
setFocusProxy(refs_.empty() ? 0 : refsLW); setFocusProxy(refs_.empty() ? 0 : refsTW);
gotoPB->setEnabled(!refs_.empty()); gotoPB->setEnabled(!refs_.empty());
redoRefs(); redoRefs();
} }
@ -413,6 +473,27 @@ void GuiRef::gotoBookmark()
} }
void GuiRef::on_findLE_textChanged(const QString & text)
{
searchPB->setDisabled(text.isEmpty());
}
void GuiRef::on_searchPB_clicked()
{
QTreeWidgetItemIterator it(refsTW);
Qt::CaseSensitivity cs = csFindCB->isChecked() ?
Qt::CaseSensitive : Qt::CaseInsensitive;
while (*it) {
(*it)->setHidden(
(*it)->childCount() == 0
&& !(*it)->text(0).contains(findLE->text(), cs)
);
++it;
}
}
bool GuiRef::initialiseParams(std::string const & data) bool GuiRef::initialiseParams(std::string const & data)
{ {
InsetCommand::string2params("ref", data, params_); InsetCommand::string2params("ref", data, params_);

View File

@ -19,7 +19,7 @@
#include <vector> #include <vector>
class QListWidgetItem; class QTreeWidgetItem;
namespace lyx { namespace lyx {
namespace frontend { namespace frontend {
@ -34,11 +34,14 @@ public:
private Q_SLOTS: private Q_SLOTS:
void changed_adaptor(); void changed_adaptor();
void gotoClicked(); void gotoClicked();
void refHighlighted(QListWidgetItem *); void on_findLE_textChanged(const QString &);
void on_searchPB_clicked();
void refHighlighted(QTreeWidgetItem *);
void selectionChanged(); void selectionChanged();
void refSelected(QListWidgetItem *); void refSelected(QTreeWidgetItem *);
void sortToggled(); void sortToggled();
void caseSensitiveToggled(); void caseSensitiveToggled();
void groupToggled();
void updateClicked(); void updateClicked();
void resetDialog(); void resetDialog();
void dialogRejected(); void dialogRejected();

View File

@ -205,7 +205,7 @@ public:
Kind kind() const { return kind_; } Kind kind() const { return kind_; }
/// the action (if relevant) /// the action (if relevant)
FuncRequest const & func() const { return func_; } FuncRequest const & func() const { return func_; }
/// returns true if the entry should be ommited when disabled /// returns true if the entry should be omitted when disabled
bool optional() const { return optional_; } bool optional() const { return optional_; }
/// returns the status of the lfun associated with this entry /// returns the status of the lfun associated with this entry
FuncStatus const & status() const { return status_; } FuncStatus const & status() const { return status_; }

View File

@ -6,7 +6,7 @@
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>386</width> <width>386</width>
<height>423</height> <height>479</height>
</rect> </rect>
</property> </property>
<property name="windowTitle" > <property name="windowTitle" >
@ -16,35 +16,108 @@
<bool>true</bool> <bool>true</bool>
</property> </property>
<layout class="QGridLayout" > <layout class="QGridLayout" >
<item row="0" column="0" colspan="2" > <property name="margin" >
<widget class="QLabel" name="refsL" > <number>9</number>
<property name="text" >
<string>La&amp;bels in:</string>
</property> </property>
<property name="buddy" > <property name="spacing" >
<cstring>bufferCO</cstring> <number>6</number>
</property> </property>
</widget> <item row="7" column="0" colspan="3" >
</item> <layout class="QHBoxLayout" >
<item row="0" column="2" > <property name="margin" >
<widget class="QComboBox" name="bufferCO" > <number>0</number>
</property>
<property name="spacing" >
<number>6</number>
</property>
<item>
<widget class="QPushButton" name="updatePB" >
<property name="sizePolicy" > <property name="sizePolicy" >
<sizepolicy> <sizepolicy>
<hsizetype>7</hsizetype> <hsizetype>3</hsizetype>
<vsizetype>0</vsizetype> <vsizetype>0</vsizetype>
<horstretch>0</horstretch> <horstretch>0</horstretch>
<verstretch>0</verstretch> <verstretch>0</verstretch>
</sizepolicy> </sizepolicy>
</property> </property>
<property name="toolTip" >
<string>Update the label list</string>
</property>
<property name="text" >
<string>&amp;Update</string>
</property>
</widget> </widget>
</item> </item>
<item row="1" column="0" colspan="3" > <item>
<widget class="QListWidget" name="refsLW" /> <spacer>
<property name="orientation" >
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeType" >
<enum>QSizePolicy::Expanding</enum>
</property>
<property name="sizeHint" >
<size>
<width>31</width>
<height>30</height>
</size>
</property>
</spacer>
</item> </item>
<item row="2" column="0" colspan="3" > <item>
<widget class="QPushButton" name="okPB" >
<property name="text" >
<string>&amp;OK</string>
</property>
<property name="autoDefault" >
<bool>true</bool>
</property>
<property name="default" >
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="applyPB" >
<property name="text" >
<string>&amp;Apply</string>
</property>
<property name="autoDefault" >
<bool>false</bool>
</property>
<property name="default" >
<bool>false</bool>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="closePB" >
<property name="text" >
<string>&amp;Close</string>
</property>
<property name="autoDefault" >
<bool>false</bool>
</property>
</widget>
</item>
</layout>
</item>
<item row="3" column="0" colspan="3" >
<layout class="QHBoxLayout" > <layout class="QHBoxLayout" >
<property name="margin" >
<number>0</number>
</property>
<property name="spacing" >
<number>6</number>
</property>
<item> <item>
<layout class="QHBoxLayout" > <layout class="QHBoxLayout" >
<property name="margin" >
<number>0</number>
</property>
<property name="spacing" >
<number>6</number>
</property>
<item> <item>
<widget class="QCheckBox" name="sortCB" > <widget class="QCheckBox" name="sortCB" >
<property name="toolTip" > <property name="toolTip" >
@ -68,27 +141,30 @@
</property> </property>
</widget> </widget>
</item> </item>
<item>
<widget class="QCheckBox" name="groupCB" >
<property name="toolTip" >
<string>Group labels by prefix (e.g. "sec:")</string>
</property>
<property name="text" >
<string>Grou&amp;p</string>
</property>
</widget>
</item>
</layout> </layout>
</item> </item>
<item> <item>
<layout class="QHBoxLayout" > <spacer>
<item> <property name="orientation" >
<widget class="QPushButton" name="updatePB" > <enum>Qt::Horizontal</enum>
<property name="sizePolicy" >
<sizepolicy>
<hsizetype>3</hsizetype>
<vsizetype>0</vsizetype>
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property> </property>
<property name="toolTip" > <property name="sizeHint" >
<string>Update the label list</string> <size>
<width>20</width>
<height>20</height>
</size>
</property> </property>
<property name="text" > </spacer>
<string>&amp;Update</string>
</property>
</widget>
</item> </item>
<item> <item>
<widget class="QPushButton" name="gotoPB" > <widget class="QPushButton" name="gotoPB" >
@ -107,25 +183,52 @@
</item> </item>
</layout> </layout>
</item> </item>
</layout> <item row="0" column="0" colspan="2" >
</item> <widget class="QLabel" name="refsL" >
<item row="3" column="0" >
<widget class="QLabel" name="referenceL" >
<property name="text" > <property name="text" >
<string>&amp;Label:</string> <string>La&amp;bels in:</string>
</property>
<property name="buddy" >
<cstring>bufferCO</cstring>
</property>
</widget>
</item>
<item row="0" column="2" >
<widget class="QComboBox" name="bufferCO" >
<property name="sizePolicy" >
<sizepolicy>
<hsizetype>7</hsizetype>
<vsizetype>0</vsizetype>
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
</widget>
</item>
<item row="6" column="0" >
<widget class="QLabel" name="nameL" >
<property name="enabled" >
<bool>false</bool>
</property>
<property name="text" >
<string>&amp;Name:</string>
</property> </property>
<property name="alignment" > <property name="alignment" >
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set> <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
</property> </property>
<property name="buddy" > <property name="buddy" >
<cstring>referenceED</cstring> <cstring>nameED</cstring>
</property> </property>
</widget> </widget>
</item> </item>
<item row="3" column="1" colspan="2" > <item row="6" column="1" colspan="2" >
<widget class="QLineEdit" name="referenceED" /> <widget class="QLineEdit" name="nameED" >
<property name="enabled" >
<bool>false</bool>
</property>
</widget>
</item> </item>
<item row="4" column="0" > <item row="5" column="0" >
<widget class="QLabel" name="typeLA" > <widget class="QLabel" name="typeLA" >
<property name="text" > <property name="text" >
<string>&amp;Format:</string> <string>&amp;Format:</string>
@ -138,7 +241,7 @@
</property> </property>
</widget> </widget>
</item> </item>
<item row="4" column="1" colspan="2" > <item row="5" column="1" colspan="2" >
<widget class="QComboBox" name="typeCO" > <widget class="QComboBox" name="typeCO" >
<property name="sizePolicy" > <property name="sizePolicy" >
<sizepolicy> <sizepolicy>
@ -183,96 +286,93 @@
</item> </item>
</widget> </widget>
</item> </item>
<item row="5" column="0" > <item row="4" column="0" >
<widget class="QLabel" name="nameL" > <widget class="QLabel" name="referenceL" >
<property name="enabled" >
<bool>false</bool>
</property>
<property name="text" > <property name="text" >
<string>&amp;Name:</string> <string>&amp;Label:</string>
</property> </property>
<property name="alignment" > <property name="alignment" >
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set> <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
</property> </property>
<property name="buddy" > <property name="buddy" >
<cstring>nameED</cstring> <cstring>referenceED</cstring>
</property> </property>
</widget> </widget>
</item> </item>
<item row="5" column="1" colspan="2" > <item row="4" column="1" colspan="2" >
<widget class="QLineEdit" name="nameED" > <widget class="QLineEdit" name="referenceED" />
<property name="enabled" >
<bool>false</bool>
</property>
</widget>
</item> </item>
<item row="6" column="0" colspan="3" > <item row="1" column="0" colspan="3" >
<layout class="QHBoxLayout" > <widget class="QTreeWidget" name="refsTW" />
</item>
<item row="2" column="0" colspan="3" >
<widget class="QFrame" name="frame" >
<property name="frameShape" >
<enum>QFrame::StyledPanel</enum>
</property>
<property name="frameShadow" >
<enum>QFrame::Plain</enum>
</property>
<layout class="QGridLayout" >
<property name="margin" >
<number>9</number>
</property>
<property name="spacing" > <property name="spacing" >
<number>6</number> <number>6</number>
</property> </property>
<property name="margin" > <item row="1" column="1" >
<number>0</number> <widget class="QCheckBox" name="csFindCB" >
</property>
<item>
<spacer>
<property name="orientation" >
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeType" >
<enum>QSizePolicy::Expanding</enum>
</property>
<property name="sizeHint" stdset="0" >
<size>
<width>20</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QPushButton" name="okPB" >
<property name="text" > <property name="text" >
<string>&amp;OK</string> <string>Case-sensiti&amp;ve</string>
</property>
<property name="autoDefault">
<bool>true</bool>
</property>
<property name="default" >
<bool>true</bool>
</property> </property>
</widget> </widget>
</item> </item>
<item> <item row="0" column="1" >
<widget class="QPushButton" name="applyPB" > <widget class="QLineEdit" name="findLE" >
<property name="text" > <property name="toolTip" >
<string>&amp;Apply</string> <string>Enter the text to search for and press Enter or click the button to search</string>
</property> </property>
<property name="autoDefault" > <property name="text" >
<string/>
</property>
</widget>
</item>
<item row="0" column="2" >
<widget class="QPushButton" name="searchPB" >
<property name="enabled" >
<bool>false</bool> <bool>false</bool>
</property> </property>
<property name="default"> <property name="toolTip" >
<string>Click or press Enter in the search box to search</string>
</property>
<property name="text" >
<string>&amp;Search</string>
</property>
<property name="autoDefault" >
<bool>false</bool> <bool>false</bool>
</property> </property>
</widget> </widget>
</item> </item>
<item> <item row="0" column="0" >
<widget class="QPushButton" name="closePB" > <widget class="QLabel" name="findKeysLA" >
<property name="text" > <property name="text" >
<string>&amp;Close</string> <string>Searc&amp;h:</string>
</property> </property>
<property name="autoDefault"> <property name="alignment" >
<bool>false</bool> <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
</property>
<property name="buddy" >
<cstring>findLE</cstring>
</property> </property>
</widget> </widget>
</item> </item>
</layout> </layout>
</widget>
</item> </item>
</layout> </layout>
</widget> </widget>
<tabstops> <tabstops>
<tabstop>bufferCO</tabstop> <tabstop>bufferCO</tabstop>
<tabstop>refsLW</tabstop>
<tabstop>sortCB</tabstop> <tabstop>sortCB</tabstop>
<tabstop>updatePB</tabstop> <tabstop>updatePB</tabstop>
<tabstop>gotoPB</tabstop> <tabstop>gotoPB</tabstop>