maintain ssearches listbox in mru order
This commit is contained in:
parent
e8d293f2b1
commit
dbe8763140
@ -1,5 +1,5 @@
|
|||||||
#ifndef lint
|
#ifndef lint
|
||||||
static char rcsid[] = "@(#$Id: ssearch_w.cpp,v 1.1 2006-09-04 15:13:02 dockes Exp $ (C) 2006 J.F.Dockes";
|
static char rcsid[] = "@(#$Id: ssearch_w.cpp,v 1.2 2006-09-11 07:10:25 dockes Exp $ (C) 2006 J.F.Dockes";
|
||||||
#endif
|
#endif
|
||||||
/*
|
/*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
@ -80,6 +80,24 @@ void SSearch::startSimpleSearch()
|
|||||||
sdata.filename = u8;
|
sdata.filename = u8;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Need to remove any previous occurence of the search entry from
|
||||||
|
// the listbox list, The qt listbox doesn't do lru correctly (if
|
||||||
|
// already in the list the new entry would remain at it's place,
|
||||||
|
// not jump at the top as it should
|
||||||
|
bool changed;
|
||||||
|
do {
|
||||||
|
changed = false;
|
||||||
|
for (int index = 1; index < queryText->count(); index++) {
|
||||||
|
if (queryText->text(index) == queryText->currentText()) {
|
||||||
|
queryText->removeItem(index);
|
||||||
|
changed = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} while (changed);
|
||||||
|
|
||||||
|
// Save the current state of the listbox list to file
|
||||||
prefs.ssearchHistory.clear();
|
prefs.ssearchHistory.clear();
|
||||||
for (int index = 0; index < queryText->count(); index++)
|
for (int index = 0; index < queryText->count(); index++)
|
||||||
prefs.ssearchHistory.push_back(queryText->text(index));
|
prefs.ssearchHistory.push_back(queryText->text(index));
|
||||||
|
|||||||
@ -103,7 +103,7 @@
|
|||||||
<enum>AtTop</enum>
|
<enum>AtTop</enum>
|
||||||
</property>
|
</property>
|
||||||
<property name="duplicatesEnabled">
|
<property name="duplicatesEnabled">
|
||||||
<bool>false</bool>
|
<bool>true</bool>
|
||||||
</property>
|
</property>
|
||||||
<property name="toolTip" stdset="0">
|
<property name="toolTip" stdset="0">
|
||||||
<string>Enter search terms here</string>
|
<string>Enter search terms here</string>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user