cutter/src/widgets/StringsWidget.cpp

198 lines
5.6 KiB
C++
Raw Normal View History

#include <QModelIndex>
#include "StringsWidget.h"
#include "ui_StringsWidget.h"
2017-10-01 19:09:42 +00:00
#include "MainWindow.h"
#include "utils/Helpers.h"
StringsModel::StringsModel(QList<StringDescription> *strings, QObject *parent)
2018-03-21 20:32:32 +00:00
: QAbstractListModel(parent),
strings(strings)
{
}
int StringsModel::rowCount(const QModelIndex &) const
{
return strings->count();
}
int StringsModel::columnCount(const QModelIndex &) const
{
return Columns::COUNT;
}
QVariant StringsModel::data(const QModelIndex &index, int role) const
{
if (index.row() >= strings->count())
return QVariant();
const StringDescription &str = strings->at(index.row());
2018-03-21 20:32:32 +00:00
switch (role) {
case Qt::DisplayRole:
switch (index.column()) {
case OFFSET:
return RAddressString(str.vaddr);
case STRING:
return str.string;
case TYPE:
return str.type.toUpper();
case LENGTH:
return str.length;
case SIZE:
return str.size;
default:
return QVariant();
2018-03-21 20:32:32 +00:00
}
case StringDescriptionRole:
return QVariant::fromValue(str);
default:
return QVariant();
}
}
QVariant StringsModel::headerData(int section, Qt::Orientation, int role) const
{
2018-03-21 20:32:32 +00:00
switch (role) {
case Qt::DisplayRole:
switch (section) {
case OFFSET:
return tr("Address");
case STRING:
return tr("String");
case TYPE:
return tr("Type");
case LENGTH:
return tr("Length");
case SIZE:
return tr("Size");
default:
return QVariant();
2018-03-21 20:32:32 +00:00
}
default:
return QVariant();
}
}
void StringsModel::beginReload()
{
beginResetModel();
}
void StringsModel::endReload()
{
endResetModel();
}
2018-03-21 20:32:32 +00:00
StringsSortFilterProxyModel::StringsSortFilterProxyModel(StringsModel *source_model,
QObject *parent)
: QSortFilterProxyModel(parent)
{
setSourceModel(source_model);
2017-12-26 13:40:12 +00:00
setFilterCaseSensitivity(Qt::CaseInsensitive);
setSortCaseSensitivity(Qt::CaseInsensitive);
}
2017-12-02 19:15:12 +00:00
bool StringsSortFilterProxyModel::filterAcceptsRow(int row, const QModelIndex &parent) const
{
QModelIndex index = sourceModel()->index(row, 0, parent);
StringDescription str = index.data(StringsModel::StringDescriptionRole).value<StringDescription>();
return str.string.contains(filterRegExp());
}
2017-12-02 19:15:12 +00:00
bool StringsSortFilterProxyModel::lessThan(const QModelIndex &left, const QModelIndex &right) const
{
2018-03-21 20:32:32 +00:00
StringDescription left_str = left.data(
StringsModel::StringDescriptionRole).value<StringDescription>();
StringDescription right_str = right.data(
StringsModel::StringDescriptionRole).value<StringDescription>();
switch (left.column()) {
case StringsModel::OFFSET:
return left_str.vaddr < right_str.vaddr;
case StringsModel::STRING: // sort by string
return left_str.string < right_str.string;
case StringsModel::TYPE: // sort by type
return left_str.type < right_str.type;
case StringsModel::SIZE: // sort by size
return left_str.size < right_str.size;
case StringsModel::LENGTH: // sort by length
return left_str.length < right_str.length;
default:
break;
}
// fallback
return left_str.vaddr < right_str.vaddr;
}
StringsWidget::StringsWidget(MainWindow *main, QAction *action) :
CutterDockWidget(main, action),
ui(new Ui::StringsWidget)
{
ui->setupUi(this);
qhelpers::setVerticalScrollMode(ui->stringsTreeView);
2017-12-19 18:56:18 +00:00
// Ctrl-F to show/hide the filter entry
QShortcut *search_shortcut = new QShortcut(QKeySequence::Find, this);
connect(search_shortcut, &QShortcut::activated, ui->quickFilterView, &QuickFilterView::showFilter);
search_shortcut->setContext(Qt::WidgetWithChildrenShortcut);
// Esc to clear the filter entry
2017-12-21 11:08:49 +00:00
QShortcut *clear_shortcut = new QShortcut(QKeySequence(Qt::Key_Escape), this);
2017-12-19 18:56:18 +00:00
connect(clear_shortcut, &QShortcut::activated, ui->quickFilterView, &QuickFilterView::clearFilter);
clear_shortcut->setContext(Qt::WidgetWithChildrenShortcut);
model = new StringsModel(&strings, this);
proxy_model = new StringsSortFilterProxyModel(model, this);
ui->stringsTreeView->setModel(proxy_model);
ui->stringsTreeView->sortByColumn(StringsModel::OFFSET, Qt::AscendingOrder);
2018-03-21 20:32:32 +00:00
connect(ui->quickFilterView, SIGNAL(filterTextChanged(const QString &)), proxy_model,
SLOT(setFilterWildcard(const QString &)));
2017-12-19 18:56:18 +00:00
connect(ui->quickFilterView, SIGNAL(filterClosed()), ui->stringsTreeView, SLOT(setFocus()));
connect(Core(), SIGNAL(refreshAll()), this, SLOT(refreshStrings()));
}
StringsWidget::~StringsWidget() {}
void StringsWidget::on_stringsTreeView_doubleClicked(const QModelIndex &index)
{
if (!index.isValid())
return;
StringDescription str = index.data(StringsModel::StringDescriptionRole).value<StringDescription>();
2018-04-12 06:33:30 +00:00
Core()->seek(str.vaddr);
}
void StringsWidget::refreshStrings()
2018-05-28 20:06:24 +00:00
{
if (task) {
task->wait();
}
task = QSharedPointer<StringsTask>(new StringsTask());
2018-09-30 20:00:53 +00:00
connect(task.data(), &StringsTask::stringSearchFinished, this,
&StringsWidget::stringSearchFinished);
2018-05-28 20:06:24 +00:00
Core()->getAsyncTaskManager()->start(task);
}
void StringsWidget::stringSearchFinished(const QList<StringDescription> &strings)
{
model->beginReload();
2018-05-28 20:06:24 +00:00
this->strings = strings;
model->endReload();
qhelpers::adjustColumns(ui->stringsTreeView, 5, 0);
2018-02-09 14:22:45 +00:00
if (ui->stringsTreeView->columnWidth(1) > 300)
ui->stringsTreeView->setColumnWidth(1, 300);
2018-05-28 20:06:24 +00:00
task = nullptr;
}