2017-10-02 16:18:40 +00:00
|
|
|
#include "ExportsWidget.h"
|
|
|
|
#include "ui_ExportsWidget.h"
|
2019-02-22 16:50:45 +00:00
|
|
|
#include "core/MainWindow.h"
|
2018-10-17 07:55:53 +00:00
|
|
|
#include "common/Helpers.h"
|
2017-05-19 07:45:26 +00:00
|
|
|
|
2018-10-16 06:25:09 +00:00
|
|
|
#include "WidgetShortcuts.h"
|
|
|
|
|
2017-05-19 07:45:26 +00:00
|
|
|
ExportsModel::ExportsModel(QList<ExportDescription> *exports, QObject *parent)
|
2017-06-03 12:27:23 +00:00
|
|
|
: QAbstractListModel(parent),
|
|
|
|
exports(exports)
|
2017-05-19 07:45:26 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
int ExportsModel::rowCount(const QModelIndex &) const
|
|
|
|
{
|
|
|
|
return exports->count();
|
|
|
|
}
|
|
|
|
|
|
|
|
int ExportsModel::columnCount(const QModelIndex &) const
|
|
|
|
{
|
2018-04-23 07:53:35 +00:00
|
|
|
return ExportsModel::ColumnCount;
|
2017-05-19 07:45:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QVariant ExportsModel::data(const QModelIndex &index, int role) const
|
|
|
|
{
|
2017-06-03 12:27:23 +00:00
|
|
|
if (index.row() >= exports->count())
|
2017-05-19 07:45:26 +00:00
|
|
|
return QVariant();
|
|
|
|
|
|
|
|
const ExportDescription &exp = exports->at(index.row());
|
|
|
|
|
2018-03-21 20:32:32 +00:00
|
|
|
switch (role) {
|
2017-06-03 12:27:23 +00:00
|
|
|
case Qt::DisplayRole:
|
2018-03-21 20:32:32 +00:00
|
|
|
switch (index.column()) {
|
2018-04-23 07:53:35 +00:00
|
|
|
case ExportsModel::OffsetColumn:
|
2017-06-03 12:27:23 +00:00
|
|
|
return RAddressString(exp.vaddr);
|
2018-04-23 07:53:35 +00:00
|
|
|
case ExportsModel::SizeColumn:
|
2017-06-03 12:27:23 +00:00
|
|
|
return RSizeString(exp.size);
|
2018-04-23 07:53:35 +00:00
|
|
|
case ExportsModel::TypeColumn:
|
2017-06-03 12:27:23 +00:00
|
|
|
return exp.type;
|
2018-04-23 07:53:35 +00:00
|
|
|
case ExportsModel::NameColumn:
|
2017-06-03 12:27:23 +00:00
|
|
|
return exp.name;
|
2017-05-19 07:45:26 +00:00
|
|
|
default:
|
|
|
|
return QVariant();
|
2017-06-03 12:27:23 +00:00
|
|
|
}
|
2018-04-23 07:53:35 +00:00
|
|
|
case ExportsModel::ExportDescriptionRole:
|
2017-06-03 12:27:23 +00:00
|
|
|
return QVariant::fromValue(exp);
|
|
|
|
default:
|
|
|
|
return QVariant();
|
2017-05-19 07:45:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariant ExportsModel::headerData(int section, Qt::Orientation, int role) const
|
|
|
|
{
|
2018-03-21 20:32:32 +00:00
|
|
|
switch (role) {
|
2017-06-03 12:27:23 +00:00
|
|
|
case Qt::DisplayRole:
|
2018-03-21 20:32:32 +00:00
|
|
|
switch (section) {
|
2018-04-23 07:53:35 +00:00
|
|
|
case ExportsModel::OffsetColumn:
|
2017-06-03 12:27:23 +00:00
|
|
|
return tr("Address");
|
2018-04-23 07:53:35 +00:00
|
|
|
case ExportsModel::SizeColumn:
|
2017-06-03 12:27:23 +00:00
|
|
|
return tr("Size");
|
2018-04-23 07:53:35 +00:00
|
|
|
case ExportsModel::TypeColumn:
|
2017-06-03 12:27:23 +00:00
|
|
|
return tr("Type");
|
2018-04-23 07:53:35 +00:00
|
|
|
case ExportsModel::NameColumn:
|
2017-06-03 12:27:23 +00:00
|
|
|
return tr("Name");
|
2017-05-19 07:45:26 +00:00
|
|
|
default:
|
|
|
|
return QVariant();
|
2017-06-03 12:27:23 +00:00
|
|
|
}
|
|
|
|
default:
|
|
|
|
return QVariant();
|
2017-05-19 07:45:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-24 18:40:40 +00:00
|
|
|
ExportsProxyModel::ExportsProxyModel(ExportsModel *source_model, QObject *parent)
|
2017-06-03 12:27:23 +00:00
|
|
|
: QSortFilterProxyModel(parent)
|
2017-05-19 07:45:26 +00:00
|
|
|
{
|
|
|
|
setSourceModel(source_model);
|
2018-04-23 07:53:35 +00:00
|
|
|
setFilterCaseSensitivity(Qt::CaseInsensitive);
|
|
|
|
setSortCaseSensitivity(Qt::CaseInsensitive);
|
2017-05-19 07:45:26 +00:00
|
|
|
}
|
|
|
|
|
2018-04-24 18:40:40 +00:00
|
|
|
bool ExportsProxyModel::filterAcceptsRow(int row, const QModelIndex &parent) const
|
2017-05-19 07:45:26 +00:00
|
|
|
{
|
|
|
|
QModelIndex index = sourceModel()->index(row, 0, parent);
|
2018-04-24 18:40:40 +00:00
|
|
|
auto exp = index.data(ExportsModel::ExportDescriptionRole).value<ExportDescription>();
|
|
|
|
|
2017-05-19 07:45:26 +00:00
|
|
|
return exp.name.contains(filterRegExp());
|
|
|
|
}
|
|
|
|
|
2018-04-24 18:40:40 +00:00
|
|
|
bool ExportsProxyModel::lessThan(const QModelIndex &left, const QModelIndex &right) const
|
2017-05-19 07:45:26 +00:00
|
|
|
{
|
2018-04-24 18:40:40 +00:00
|
|
|
auto leftExp = left.data(ExportsModel::ExportDescriptionRole).value<ExportDescription>();
|
|
|
|
auto rightExp = right.data(ExportsModel::ExportDescriptionRole).value<ExportDescription>();
|
2017-05-19 07:45:26 +00:00
|
|
|
|
2018-03-21 20:32:32 +00:00
|
|
|
switch (left.column()) {
|
2018-04-23 07:53:35 +00:00
|
|
|
case ExportsModel::SizeColumn:
|
2018-04-24 18:40:40 +00:00
|
|
|
if (leftExp.size != rightExp.size)
|
|
|
|
return leftExp.size < rightExp.size;
|
2017-06-03 12:27:23 +00:00
|
|
|
// fallthrough
|
2018-04-23 07:53:35 +00:00
|
|
|
case ExportsModel::OffsetColumn:
|
2018-04-24 18:40:40 +00:00
|
|
|
if (leftExp.vaddr != rightExp.vaddr)
|
|
|
|
return leftExp.vaddr < rightExp.vaddr;
|
2017-06-03 12:27:23 +00:00
|
|
|
// fallthrough
|
2018-04-23 07:53:35 +00:00
|
|
|
case ExportsModel::NameColumn:
|
2018-04-24 18:40:40 +00:00
|
|
|
return leftExp.name < rightExp.name;
|
2018-04-23 07:53:35 +00:00
|
|
|
case ExportsModel::TypeColumn:
|
2018-04-24 18:40:40 +00:00
|
|
|
if (leftExp.type != rightExp.type)
|
|
|
|
return leftExp.type < rightExp.type;
|
2017-06-03 12:27:23 +00:00
|
|
|
default:
|
|
|
|
break;
|
2017-05-19 07:45:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// fallback
|
2018-04-24 18:40:40 +00:00
|
|
|
return leftExp.vaddr < rightExp.vaddr;
|
2017-05-19 07:45:26 +00:00
|
|
|
}
|
|
|
|
|
2018-03-16 21:46:57 +00:00
|
|
|
ExportsWidget::ExportsWidget(MainWindow *main, QAction *action) :
|
|
|
|
CutterDockWidget(main, action),
|
2018-10-10 12:34:46 +00:00
|
|
|
ui(new Ui::ExportsWidget),
|
|
|
|
tree(new CutterTreeWidget(this))
|
2017-05-19 07:45:26 +00:00
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
|
|
|
|
2018-10-10 12:34:46 +00:00
|
|
|
// Add Status Bar footer
|
|
|
|
tree->addStatusBar(ui->verticalLayout);
|
|
|
|
|
2018-04-23 07:53:35 +00:00
|
|
|
exportsModel = new ExportsModel(&exports, this);
|
2018-04-24 18:40:40 +00:00
|
|
|
exportsProxyModel = new ExportsProxyModel(exportsModel, this);
|
2018-04-23 07:53:35 +00:00
|
|
|
ui->exportsTreeView->setModel(exportsProxyModel);
|
|
|
|
ui->exportsTreeView->sortByColumn(ExportsModel::OffsetColumn, Qt::AscendingOrder);
|
|
|
|
|
2018-10-16 06:25:09 +00:00
|
|
|
QShortcut *toggle_shortcut = new QShortcut(widgetShortcuts["ExportsWidget"], main);
|
|
|
|
connect(toggle_shortcut, &QShortcut::activated, this, [=] (){
|
|
|
|
toggleDockWidget(true);
|
|
|
|
main->updateDockActionChecked(action);
|
|
|
|
} );
|
|
|
|
|
2018-04-23 07:53:35 +00:00
|
|
|
// Ctrl-F to show/hide the filter entry
|
|
|
|
QShortcut *searchShortcut = new QShortcut(QKeySequence::Find, this);
|
|
|
|
connect(searchShortcut, &QShortcut::activated, ui->quickFilterView, &QuickFilterView::showFilter);
|
|
|
|
searchShortcut->setContext(Qt::WidgetWithChildrenShortcut);
|
|
|
|
|
|
|
|
// Esc to clear the filter entry
|
|
|
|
QShortcut *clearShortcut = new QShortcut(QKeySequence(Qt::Key_Escape), this);
|
|
|
|
connect(clearShortcut, &QShortcut::activated, ui->quickFilterView, &QuickFilterView::clearFilter);
|
|
|
|
clearShortcut->setContext(Qt::WidgetWithChildrenShortcut);
|
|
|
|
|
|
|
|
connect(ui->quickFilterView, SIGNAL(filterTextChanged(const QString &)),
|
|
|
|
exportsProxyModel, SLOT(setFilterWildcard(const QString &)));
|
|
|
|
connect(ui->quickFilterView, SIGNAL(filterClosed()), ui->exportsTreeView, SLOT(setFocus()));
|
2017-05-19 07:45:26 +00:00
|
|
|
|
2018-10-10 12:34:46 +00:00
|
|
|
connect(ui->quickFilterView, &QuickFilterView::filterTextChanged, this, [this] {
|
|
|
|
tree->showItemsNumber(exportsProxyModel->rowCount());
|
|
|
|
});
|
|
|
|
|
2017-05-19 07:45:26 +00:00
|
|
|
setScrollMode();
|
|
|
|
|
2017-11-19 12:56:10 +00:00
|
|
|
connect(Core(), SIGNAL(refreshAll()), this, SLOT(refreshExports()));
|
2017-05-19 07:45:26 +00:00
|
|
|
}
|
|
|
|
|
2017-11-19 12:56:10 +00:00
|
|
|
ExportsWidget::~ExportsWidget() {}
|
2017-05-19 07:45:26 +00:00
|
|
|
|
|
|
|
void ExportsWidget::refreshExports()
|
|
|
|
{
|
2018-10-10 11:33:55 +00:00
|
|
|
exportsModel->beginResetModel();
|
2018-04-12 06:33:30 +00:00
|
|
|
exports = Core()->getAllExports();
|
2018-10-10 11:33:55 +00:00
|
|
|
exportsModel->endResetModel();
|
2017-05-19 07:45:26 +00:00
|
|
|
|
2018-04-01 08:25:31 +00:00
|
|
|
qhelpers::adjustColumns(ui->exportsTreeView, 3, 0);
|
2018-10-10 12:34:46 +00:00
|
|
|
|
|
|
|
tree->showItemsNumber(exportsProxyModel->rowCount());
|
2017-05-19 07:45:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void ExportsWidget::setScrollMode()
|
|
|
|
{
|
|
|
|
qhelpers::setVerticalScrollMode(ui->exportsTreeView);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ExportsWidget::on_exportsTreeView_doubleClicked(const QModelIndex &index)
|
|
|
|
{
|
2018-04-23 07:54:06 +00:00
|
|
|
if (!index.isValid())
|
|
|
|
return;
|
|
|
|
|
2017-05-19 07:45:26 +00:00
|
|
|
ExportDescription exp = index.data(ExportsModel::ExportDescriptionRole).value<ExportDescription>();
|
2018-04-12 06:33:30 +00:00
|
|
|
Core()->seek(exp.vaddr);
|
2017-05-19 07:45:26 +00:00
|
|
|
}
|