cutter/src/widgets/StringsWidget.cpp

259 lines
7.9 KiB
C++
Raw Normal View History

#include "StringsWidget.h"
#include "ui_StringsWidget.h"
#include "core/MainWindow.h"
2018-10-17 07:55:53 +00:00
#include "common/Helpers.h"
#include "WidgetShortcuts.h"
#include <QClipboard>
2019-03-14 09:28:42 +00:00
#include <QMenu>
#include <QModelIndex>
#include <QShortcut>
StringsModel::StringsModel(QList<StringDescription> *strings, QObject *parent)
: AddressableItemModel<QAbstractListModel>(parent),
2018-03-21 20:32:32 +00:00
strings(strings)
{
}
int StringsModel::rowCount(const QModelIndex &) const
{
return strings->count();
}
int StringsModel::columnCount(const QModelIndex &) const
{
return StringsModel::ColumnCount;
}
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 StringsModel::OffsetColumn:
2018-03-21 20:32:32 +00:00
return RAddressString(str.vaddr);
case StringsModel::StringColumn:
2018-03-21 20:32:32 +00:00
return str.string;
case StringsModel::TypeColumn:
2018-03-21 20:32:32 +00:00
return str.type.toUpper();
case StringsModel::LengthColumn:
return QString::number(str.length);
case StringsModel::SizeColumn:
return QString::number(str.size);
case StringsModel::SectionColumn:
return str.section;
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 StringsModel::OffsetColumn:
2018-03-21 20:32:32 +00:00
return tr("Address");
case StringsModel::StringColumn:
2018-03-21 20:32:32 +00:00
return tr("String");
case StringsModel::TypeColumn:
2018-03-21 20:32:32 +00:00
return tr("Type");
case StringsModel::LengthColumn:
2018-03-21 20:32:32 +00:00
return tr("Length");
case StringsModel::SizeColumn:
2018-03-21 20:32:32 +00:00
return tr("Size");
case StringsModel::SectionColumn:
return tr("Section");
default:
return QVariant();
2018-03-21 20:32:32 +00:00
}
default:
return QVariant();
}
}
RVA StringsModel::address(const QModelIndex &index) const
{
const StringDescription &str = strings->at(index.row());
return str.vaddr;
}
StringsProxyModel::StringsProxyModel(StringsModel *sourceModel, QObject *parent)
: AddressableFilterProxyModel(sourceModel, parent)
{
2017-12-26 13:40:12 +00:00
setFilterCaseSensitivity(Qt::CaseInsensitive);
setSortCaseSensitivity(Qt::CaseInsensitive);
}
2017-12-02 19:15:12 +00:00
bool StringsProxyModel::filterAcceptsRow(int row, const QModelIndex &parent) const
{
QModelIndex index = sourceModel()->index(row, 0, parent);
StringDescription str = index.data(StringsModel::StringDescriptionRole).value<StringDescription>();
if (selectedSection.isEmpty())
return str.string.contains(filterRegExp());
else
return selectedSection == str.section && str.string.contains(filterRegExp());
}
2017-12-02 19:15:12 +00:00
bool StringsProxyModel::lessThan(const QModelIndex &left, const QModelIndex &right) const
{
auto leftStr = left.data(StringsModel::StringDescriptionRole).value<StringDescription>();
auto rightStr = right.data(StringsModel::StringDescriptionRole).value<StringDescription>();
2018-03-21 20:32:32 +00:00
switch (left.column()) {
case StringsModel::OffsetColumn:
return leftStr.vaddr < rightStr.vaddr;
case StringsModel::StringColumn: // sort by string
return leftStr.string < rightStr.string;
case StringsModel::TypeColumn: // sort by type
return leftStr.type < rightStr.type;
case StringsModel::SizeColumn: // sort by size
return leftStr.size < rightStr.size;
case StringsModel::LengthColumn: // sort by length
return leftStr.length < rightStr.length;
case StringsModel::SectionColumn:
return leftStr.section < rightStr.section;
2018-03-21 20:32:32 +00:00
default:
break;
}
// fallback
return leftStr.vaddr < rightStr.vaddr;
}
StringsWidget::StringsWidget(MainWindow *main, QAction *action) :
CutterDockWidget(main, action),
ui(new Ui::StringsWidget),
tree(new CutterTreeWidget(this))
{
ui->setupUi(this);
ui->quickFilterView->setLabelText(tr("Section:"));
// Add Status Bar footer
tree->addStatusBar(ui->verticalLayout);
qhelpers::setVerticalScrollMode(ui->stringsTreeView);
// Shift-F12 to toggle strings window
QShortcut *toggle_shortcut = new QShortcut(widgetShortcuts["StringsWidget"], main);
connect(toggle_shortcut, &QShortcut::activated, this, [ = ] () {
toggleDockWidget(true);
main->updateDockActionChecked(action);
} );
connect(ui->actionCopy_String, SIGNAL(triggered()), this, SLOT(on_actionCopy()));
ui->actionFilter->setShortcut(QKeySequence::Find);
ui->stringsTreeView->setContextMenuPolicy(Qt::CustomContextMenu);
model = new StringsModel(&strings, this);
proxyModel = new StringsProxyModel(model, this);
ui->stringsTreeView->setMainWindow(main);
ui->stringsTreeView->setModel(proxyModel);
ui->stringsTreeView->sortByColumn(StringsModel::OffsetColumn, Qt::AscendingOrder);
//
auto menu = ui->stringsTreeView->getItemContextMenu();
menu->addAction(ui->actionCopy_String);
connect(ui->quickFilterView, SIGNAL(filterTextChanged(const QString &)), proxyModel,
2018-03-21 20:32:32 +00:00
SLOT(setFilterWildcard(const QString &)));
2017-12-19 18:56:18 +00:00
connect(ui->quickFilterView, &ComboQuickFilterView::filterTextChanged, this, [this] {
tree->showItemsNumber(proxyModel->rowCount());
});
QShortcut *searchShortcut = new QShortcut(QKeySequence::Find, this);
connect(searchShortcut, &QShortcut::activated, ui->quickFilterView, &ComboQuickFilterView::showFilter);
searchShortcut->setContext(Qt::WidgetWithChildrenShortcut);
QShortcut *clearShortcut = new QShortcut(QKeySequence(Qt::Key_Escape), this);
connect(clearShortcut, &QShortcut::activated, this, [this]() {
ui->quickFilterView->clearFilter();
ui->stringsTreeView->setFocus();
});
clearShortcut->setContext(Qt::WidgetWithChildrenShortcut);
connect(Core(), &CutterCore::refreshAll, this, &StringsWidget::refreshStrings);
connect(Core(), &CutterCore::codeRebased, this, &StringsWidget::refreshStrings);
connect(
ui->quickFilterView->comboBox(), &QComboBox::currentTextChanged, this,
[this]() {
proxyModel->selectedSection = ui->quickFilterView->comboBox()->currentData().toString();
proxyModel->setFilterRegExp(proxyModel->filterRegExp());
tree->showItemsNumber(proxyModel->rowCount());
}
);
}
StringsWidget::~StringsWidget() {}
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);
refreshSectionCombo();
}
void StringsWidget::refreshSectionCombo()
{
QComboBox *combo = ui->quickFilterView->comboBox();
combo->clear();
combo->addItem(tr("(all)"));
for (const QString &section : Core()->getSectionList()) {
combo->addItem(section, section);
}
proxyModel->selectedSection.clear();
2018-05-28 20:06:24 +00:00
}
void StringsWidget::stringSearchFinished(const QList<StringDescription> &strings)
{
model->beginResetModel();
2018-05-28 20:06:24 +00:00
this->strings = strings;
model->endResetModel();
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
tree->showItemsNumber(proxyModel->rowCount());
task.clear();
}
void StringsWidget::on_actionCopy()
{
QModelIndex current_item = ui->stringsTreeView->currentIndex();
int row = current_item.row();
QModelIndex index;
index = ui->stringsTreeView->model()->index(row, 1);
QClipboard *clipboard = QApplication::clipboard();
clipboard->setText(index.data().toString());
}