You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
164 lines
4.8 KiB
C++
164 lines
4.8 KiB
C++
#include "searchsubview.hpp"
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
#include "../../model/doc/document.hpp"
|
|
#include "../../model/doc/state.hpp"
|
|
#include "../../model/tools/search.hpp"
|
|
#include "../../model/tools/reportmodel.hpp"
|
|
#include "../../model/world/idtablebase.hpp"
|
|
#include "../../model/prefs/state.hpp"
|
|
|
|
#include "../world/tablebottombox.hpp"
|
|
#include "../world/creator.hpp"
|
|
|
|
#include "reporttable.hpp"
|
|
#include "searchbox.hpp"
|
|
|
|
void CSVTools::SearchSubView::replace (bool selection)
|
|
{
|
|
if (mLocked)
|
|
return;
|
|
|
|
std::vector<int> indices = mTable->getReplaceIndices (selection);
|
|
|
|
std::string replace = mSearchBox.getReplaceText();
|
|
|
|
const CSMTools::ReportModel& model =
|
|
dynamic_cast<const CSMTools::ReportModel&> (*mTable->model());
|
|
|
|
bool autoDelete = CSMPrefs::get()["Search & Replace"]["auto-delete"].isTrue();
|
|
|
|
CSMTools::Search search (mSearch);
|
|
CSMWorld::IdTableBase *currentTable = 0;
|
|
|
|
// We are running through the indices in reverse order to avoid messing up multiple results
|
|
// in a single string.
|
|
for (std::vector<int>::const_reverse_iterator iter (indices.rbegin()); iter!=indices.rend(); ++iter)
|
|
{
|
|
CSMWorld::UniversalId id = model.getUniversalId (*iter);
|
|
|
|
CSMWorld::UniversalId::Type type = CSMWorld::UniversalId::getParentType (id.getType());
|
|
|
|
CSMWorld::IdTableBase *table = &dynamic_cast<CSMWorld::IdTableBase&> (
|
|
*mDocument.getData().getTableModel (type));
|
|
|
|
if (table!=currentTable)
|
|
{
|
|
search.configure (table);
|
|
currentTable = table;
|
|
}
|
|
|
|
std::string hint = model.getHint (*iter);
|
|
|
|
if (search.verify (mDocument, table, id, hint))
|
|
{
|
|
search.replace (mDocument, table, id, hint, replace);
|
|
mTable->flagAsReplaced (*iter);
|
|
|
|
if (autoDelete)
|
|
mTable->model()->removeRows (*iter, 1);
|
|
}
|
|
}
|
|
}
|
|
|
|
void CSVTools::SearchSubView::showEvent (QShowEvent *event)
|
|
{
|
|
CSVDoc::SubView::showEvent (event);
|
|
mSearchBox.focus();
|
|
}
|
|
|
|
CSVTools::SearchSubView::SearchSubView (const CSMWorld::UniversalId& id, CSMDoc::Document& document)
|
|
: CSVDoc::SubView (id), mDocument (document), mLocked (false)
|
|
{
|
|
QVBoxLayout *layout = new QVBoxLayout;
|
|
|
|
layout->addWidget (&mSearchBox);
|
|
|
|
layout->addWidget (mTable = new ReportTable (document, id, true), 2);
|
|
|
|
layout->addWidget (mBottom =
|
|
new CSVWorld::TableBottomBox (CSVWorld::NullCreatorFactory(), document, id, this), 0);
|
|
|
|
QWidget *widget = new QWidget;
|
|
|
|
widget->setLayout (layout);
|
|
|
|
setWidget (widget);
|
|
|
|
stateChanged (document.getState(), &document);
|
|
|
|
connect (mTable, SIGNAL (editRequest (const CSMWorld::UniversalId&, const std::string&)),
|
|
SIGNAL (focusId (const CSMWorld::UniversalId&, const std::string&)));
|
|
|
|
connect (mTable, SIGNAL (replaceRequest()), this, SLOT (replaceRequest()));
|
|
|
|
connect (&document, SIGNAL (stateChanged (int, CSMDoc::Document *)),
|
|
this, SLOT (stateChanged (int, CSMDoc::Document *)));
|
|
|
|
connect (&mSearchBox, SIGNAL (startSearch (const CSMTools::Search&)),
|
|
this, SLOT (startSearch (const CSMTools::Search&)));
|
|
|
|
connect (&mSearchBox, SIGNAL (replaceAll()), this, SLOT (replaceAllRequest()));
|
|
|
|
connect (document.getReport (id), SIGNAL (rowsRemoved (const QModelIndex&, int, int)),
|
|
this, SLOT (tableSizeUpdate()));
|
|
|
|
connect (document.getReport (id), SIGNAL (rowsInserted (const QModelIndex&, int, int)),
|
|
this, SLOT (tableSizeUpdate()));
|
|
|
|
connect (&document, SIGNAL (operationDone (int, bool)),
|
|
this, SLOT (operationDone (int, bool)));
|
|
}
|
|
|
|
void CSVTools::SearchSubView::setEditLock (bool locked)
|
|
{
|
|
mLocked = locked;
|
|
mSearchBox.setEditLock (locked);
|
|
}
|
|
|
|
void CSVTools::SearchSubView::setStatusBar (bool show)
|
|
{
|
|
mBottom->setStatusBar(show);
|
|
}
|
|
|
|
void CSVTools::SearchSubView::stateChanged (int state, CSMDoc::Document *document)
|
|
{
|
|
mSearchBox.setSearchMode (!(state & CSMDoc::State_Searching));
|
|
}
|
|
|
|
void CSVTools::SearchSubView::startSearch (const CSMTools::Search& search)
|
|
{
|
|
CSMPrefs::Category& settings = CSMPrefs::get()["Search & Replace"];
|
|
|
|
mSearch = search;
|
|
mSearch.setPadding (settings["char-before"].toInt(), settings["char-after"].toInt());
|
|
|
|
mTable->clear();
|
|
mDocument.runSearch (getUniversalId(), mSearch);
|
|
}
|
|
|
|
void CSVTools::SearchSubView::replaceRequest()
|
|
{
|
|
replace (true);
|
|
}
|
|
|
|
void CSVTools::SearchSubView::replaceAllRequest()
|
|
{
|
|
replace (false);
|
|
}
|
|
|
|
void CSVTools::SearchSubView::tableSizeUpdate()
|
|
{
|
|
mBottom->tableSizeChanged (mDocument.getReport (getUniversalId())->rowCount(), 0, 0);
|
|
}
|
|
|
|
void CSVTools::SearchSubView::operationDone (int type, bool failed)
|
|
{
|
|
if (type==CSMDoc::State_Searching && !failed &&
|
|
!mDocument.getReport (getUniversalId())->rowCount())
|
|
{
|
|
mBottom->setStatusMessage ("No Results");
|
|
}
|
|
}
|