2017-10-02 16:18:40 +00:00
|
|
|
#include "FlagsWidget.h"
|
|
|
|
#include "ui_FlagsWidget.h"
|
2019-02-22 16:50:45 +00:00
|
|
|
#include "core/MainWindow.h"
|
2018-03-11 16:40:52 +00:00
|
|
|
#include "dialogs/RenameDialog.h"
|
2018-10-17 07:55:53 +00:00
|
|
|
#include "common/Helpers.h"
|
2017-04-13 15:14:02 +00:00
|
|
|
|
2019-03-14 09:28:42 +00:00
|
|
|
#include <QComboBox>
|
|
|
|
#include <QMenu>
|
|
|
|
#include <QShortcut>
|
|
|
|
#include <QTreeWidget>
|
|
|
|
|
2017-05-06 10:46:28 +00:00
|
|
|
FlagsModel::FlagsModel(QList<FlagDescription> *flags, QObject *parent)
|
2019-09-01 21:30:25 +00:00
|
|
|
: AddressableItemModel<QAbstractListModel>(parent),
|
2017-05-04 14:16:21 +00:00
|
|
|
flags(flags)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-05-06 10:46:28 +00:00
|
|
|
int FlagsModel::rowCount(const QModelIndex &) const
|
2017-05-04 14:16:21 +00:00
|
|
|
{
|
|
|
|
return flags->count();
|
|
|
|
}
|
|
|
|
|
2017-05-06 10:46:28 +00:00
|
|
|
int FlagsModel::columnCount(const QModelIndex &) const
|
2017-05-04 14:16:21 +00:00
|
|
|
{
|
|
|
|
return Columns::COUNT;
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariant FlagsModel::data(const QModelIndex &index, int role) const
|
|
|
|
{
|
2017-06-03 12:27:23 +00:00
|
|
|
if (index.row() >= flags->count())
|
2017-05-04 14:16:21 +00:00
|
|
|
return QVariant();
|
|
|
|
|
|
|
|
const FlagDescription &flag = flags->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()) {
|
2017-06-03 12:27:23 +00:00
|
|
|
case SIZE:
|
|
|
|
return RSizeString(flag.size);
|
|
|
|
case OFFSET:
|
|
|
|
return RAddressString(flag.offset);
|
|
|
|
case NAME:
|
|
|
|
return flag.name;
|
2017-05-04 14:16:21 +00:00
|
|
|
default:
|
|
|
|
return QVariant();
|
2017-06-03 12:27:23 +00:00
|
|
|
}
|
|
|
|
case FlagDescriptionRole:
|
|
|
|
return QVariant::fromValue(flag);
|
|
|
|
default:
|
|
|
|
return QVariant();
|
2017-05-04 14:16:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariant FlagsModel::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) {
|
2017-06-03 12:27:23 +00:00
|
|
|
case SIZE:
|
|
|
|
return tr("Size");
|
|
|
|
case OFFSET:
|
|
|
|
return tr("Offset");
|
|
|
|
case NAME:
|
|
|
|
return tr("Name");
|
2017-05-04 14:16:21 +00:00
|
|
|
default:
|
|
|
|
return QVariant();
|
2017-06-03 12:27:23 +00:00
|
|
|
}
|
|
|
|
default:
|
|
|
|
return QVariant();
|
2017-05-04 14:16:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-01 21:30:25 +00:00
|
|
|
RVA FlagsModel::address(const QModelIndex &index) const
|
|
|
|
{
|
|
|
|
const FlagDescription &flag = flags->at(index.row());
|
|
|
|
return flag.offset;
|
|
|
|
}
|
2017-05-04 14:16:21 +00:00
|
|
|
|
2019-09-01 21:30:25 +00:00
|
|
|
QString FlagsModel::name(const QModelIndex &index) const
|
|
|
|
{
|
|
|
|
const FlagDescription &flag = flags->at(index.row());
|
|
|
|
return flag.name;
|
|
|
|
}
|
2017-05-04 14:16:21 +00:00
|
|
|
|
|
|
|
FlagsSortFilterProxyModel::FlagsSortFilterProxyModel(FlagsModel *source_model, QObject *parent)
|
2019-09-01 21:30:25 +00:00
|
|
|
: AddressableFilterProxyModel(source_model, parent)
|
2017-05-04 14:16:21 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FlagsSortFilterProxyModel::filterAcceptsRow(int row, const QModelIndex &parent) const
|
|
|
|
{
|
|
|
|
QModelIndex index = sourceModel()->index(row, 0, parent);
|
|
|
|
FlagDescription flag = index.data(FlagsModel::FlagDescriptionRole).value<FlagDescription>();
|
|
|
|
return flag.name.contains(filterRegExp());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FlagsSortFilterProxyModel::lessThan(const QModelIndex &left, const QModelIndex &right) const
|
|
|
|
{
|
|
|
|
FlagDescription left_flag = left.data(FlagsModel::FlagDescriptionRole).value<FlagDescription>();
|
|
|
|
FlagDescription right_flag = right.data(FlagsModel::FlagDescriptionRole).value<FlagDescription>();
|
|
|
|
|
2018-03-21 20:32:32 +00:00
|
|
|
switch (left.column()) {
|
2017-06-03 12:27:23 +00:00
|
|
|
case FlagsModel::SIZE:
|
|
|
|
if (left_flag.size != right_flag.size)
|
|
|
|
return left_flag.size < right_flag.size;
|
|
|
|
// fallthrough
|
|
|
|
case FlagsModel::OFFSET:
|
|
|
|
if (left_flag.offset != right_flag.offset)
|
|
|
|
return left_flag.offset < right_flag.offset;
|
|
|
|
// fallthrough
|
|
|
|
case FlagsModel::NAME:
|
|
|
|
return left_flag.name < right_flag.name;
|
|
|
|
default:
|
|
|
|
break;
|
2017-05-04 14:16:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// fallback
|
|
|
|
return left_flag.offset < right_flag.offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-03-16 21:46:57 +00:00
|
|
|
FlagsWidget::FlagsWidget(MainWindow *main, QAction *action) :
|
|
|
|
CutterDockWidget(main, action),
|
2017-04-13 15:14:02 +00:00
|
|
|
ui(new Ui::FlagsWidget),
|
2018-10-10 12:34:46 +00:00
|
|
|
main(main),
|
|
|
|
tree(new CutterTreeWidget(this))
|
2017-03-29 10:18:37 +00:00
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
|
|
|
|
2018-10-10 12:34:46 +00:00
|
|
|
// Add Status Bar footer
|
|
|
|
tree->addStatusBar(ui->verticalLayout);
|
|
|
|
|
2017-05-06 10:46:28 +00:00
|
|
|
flags_model = new FlagsModel(&flags, this);
|
2017-05-04 14:16:21 +00:00
|
|
|
flags_proxy_model = new FlagsSortFilterProxyModel(flags_model, this);
|
2018-03-21 20:32:32 +00:00
|
|
|
connect(ui->filterLineEdit, SIGNAL(textChanged(const QString &)), flags_proxy_model,
|
|
|
|
SLOT(setFilterWildcard(const QString &)));
|
2019-09-01 21:30:25 +00:00
|
|
|
ui->flagsTreeView->setMainWindow(mainWindow);
|
2017-05-04 14:16:21 +00:00
|
|
|
ui->flagsTreeView->setModel(flags_proxy_model);
|
|
|
|
ui->flagsTreeView->sortByColumn(FlagsModel::OFFSET, Qt::AscendingOrder);
|
2017-07-11 11:05:42 +00:00
|
|
|
|
2018-10-04 07:51:22 +00:00
|
|
|
// Ctrl-F to move the focus to the Filter search box
|
|
|
|
QShortcut *searchShortcut = new QShortcut(QKeySequence::Find, this);
|
2018-10-04 15:33:19 +00:00
|
|
|
connect(searchShortcut, SIGNAL(activated()), ui->filterLineEdit, SLOT(setFocus()));
|
2018-10-04 07:51:22 +00:00
|
|
|
searchShortcut->setContext(Qt::WidgetWithChildrenShortcut);
|
|
|
|
|
|
|
|
// Esc to clear the filter entry
|
|
|
|
QShortcut *clearShortcut = new QShortcut(QKeySequence(Qt::Key_Escape), this);
|
|
|
|
connect(clearShortcut, &QShortcut::activated, [this] {
|
|
|
|
if (ui->filterLineEdit->text().isEmpty()) {
|
|
|
|
ui->flagsTreeView->setFocus();
|
|
|
|
} else {
|
|
|
|
ui->filterLineEdit->setText("");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
clearShortcut->setContext(Qt::WidgetWithChildrenShortcut);
|
2018-10-10 12:34:46 +00:00
|
|
|
|
|
|
|
connect(ui->filterLineEdit, &QLineEdit::textChanged, this, [this] {
|
|
|
|
tree->showItemsNumber(flags_proxy_model->rowCount());
|
|
|
|
});
|
2019-05-01 20:25:33 +00:00
|
|
|
|
2017-04-13 15:14:02 +00:00
|
|
|
setScrollMode();
|
|
|
|
|
2019-12-11 22:18:40 +00:00
|
|
|
connect(Core(), &CutterCore::flagsChanged, this, &FlagsWidget::flagsChanged);
|
|
|
|
connect(Core(), &CutterCore::codeRebased, this, &FlagsWidget::flagsChanged);
|
|
|
|
connect(Core(), &CutterCore::refreshAll, this, &FlagsWidget::refreshFlagspaces);
|
2019-09-01 21:30:25 +00:00
|
|
|
|
|
|
|
auto menu = ui->flagsTreeView->getItemContextMenu();
|
|
|
|
menu->addSeparator();
|
|
|
|
menu->addAction(ui->actionRename);
|
|
|
|
menu->addAction(ui->actionDelete);
|
|
|
|
addAction(ui->actionRename);
|
|
|
|
addAction(ui->actionDelete);
|
2017-04-13 15:14:02 +00:00
|
|
|
}
|
|
|
|
|
2017-11-19 12:56:10 +00:00
|
|
|
FlagsWidget::~FlagsWidget() {}
|
2017-04-13 15:14:02 +00:00
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
void FlagsWidget::on_flagspaceCombo_currentTextChanged(const QString &arg1)
|
|
|
|
{
|
2017-10-01 18:08:12 +00:00
|
|
|
Q_UNUSED(arg1);
|
2017-04-09 17:09:35 +00:00
|
|
|
|
2017-04-13 15:14:02 +00:00
|
|
|
refreshFlags();
|
|
|
|
}
|
|
|
|
|
2018-03-11 16:40:52 +00:00
|
|
|
void FlagsWidget::on_actionRename_triggered()
|
|
|
|
{
|
2018-03-21 20:32:32 +00:00
|
|
|
FlagDescription flag = ui->flagsTreeView->selectionModel()->currentIndex().data(
|
|
|
|
FlagsModel::FlagDescriptionRole).value<FlagDescription>();
|
2018-03-11 16:40:52 +00:00
|
|
|
|
2019-03-23 06:32:31 +00:00
|
|
|
RenameDialog r(this);
|
|
|
|
r.setName(flag.name);
|
|
|
|
if (r.exec()) {
|
|
|
|
QString new_name = r.getName();
|
2018-04-12 06:33:30 +00:00
|
|
|
Core()->renameFlag(flag.name, new_name);
|
2018-03-11 16:40:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void FlagsWidget::on_actionDelete_triggered()
|
|
|
|
{
|
2018-03-21 20:32:32 +00:00
|
|
|
FlagDescription flag = ui->flagsTreeView->selectionModel()->currentIndex().data(
|
|
|
|
FlagsModel::FlagDescriptionRole).value<FlagDescription>();
|
2018-03-11 16:40:52 +00:00
|
|
|
Core()->delFlag(flag.name);
|
|
|
|
}
|
|
|
|
|
2017-07-11 11:05:42 +00:00
|
|
|
void FlagsWidget::flagsChanged()
|
|
|
|
{
|
|
|
|
refreshFlagspaces();
|
|
|
|
}
|
|
|
|
|
2017-04-13 15:14:02 +00:00
|
|
|
void FlagsWidget::refreshFlagspaces()
|
|
|
|
{
|
|
|
|
int cur_idx = ui->flagspaceCombo->currentIndex();
|
2017-05-03 09:09:57 +00:00
|
|
|
if (cur_idx < 0)
|
|
|
|
cur_idx = 0;
|
|
|
|
|
2017-04-13 15:14:02 +00:00
|
|
|
ui->flagspaceCombo->clear();
|
2017-05-03 09:09:57 +00:00
|
|
|
ui->flagspaceCombo->addItem(tr("(all)"));
|
|
|
|
|
2018-11-26 22:34:34 +00:00
|
|
|
for (const FlagspaceDescription &i : Core()->getAllFlagspaces()) {
|
2017-05-03 09:09:57 +00:00
|
|
|
ui->flagspaceCombo->addItem(i.name, QVariant::fromValue(i));
|
2017-04-13 15:14:02 +00:00
|
|
|
}
|
2017-05-03 09:09:57 +00:00
|
|
|
|
2017-04-13 15:14:02 +00:00
|
|
|
if (cur_idx > 0)
|
|
|
|
ui->flagspaceCombo->setCurrentIndex(cur_idx);
|
|
|
|
|
|
|
|
refreshFlags();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FlagsWidget::refreshFlags()
|
|
|
|
{
|
2017-05-03 09:09:57 +00:00
|
|
|
QString flagspace;
|
|
|
|
|
|
|
|
QVariant flagspace_data = ui->flagspaceCombo->currentData();
|
2017-06-03 12:27:23 +00:00
|
|
|
if (flagspace_data.isValid())
|
2017-05-03 09:09:57 +00:00
|
|
|
flagspace = flagspace_data.value<FlagspaceDescription>().name;
|
|
|
|
|
2017-04-13 15:14:02 +00:00
|
|
|
|
2018-10-10 11:33:55 +00:00
|
|
|
flags_model->beginResetModel();
|
2018-04-12 06:33:30 +00:00
|
|
|
flags = Core()->getAllFlags(flagspace);
|
2018-10-10 11:33:55 +00:00
|
|
|
flags_model->endResetModel();
|
2017-04-27 18:59:27 +00:00
|
|
|
|
2018-04-01 08:25:31 +00:00
|
|
|
qhelpers::adjustColumns(ui->flagsTreeView, 2, 0);
|
2017-04-13 15:14:02 +00:00
|
|
|
|
2018-10-10 12:34:46 +00:00
|
|
|
tree->showItemsNumber(flags_proxy_model->rowCount());
|
|
|
|
|
2017-05-19 07:45:26 +00:00
|
|
|
// TODO: this is not a very good place for the following:
|
2017-05-04 14:16:21 +00:00
|
|
|
QStringList flagNames;
|
2018-11-26 22:34:34 +00:00
|
|
|
for (const FlagDescription &i : flags)
|
2017-05-04 14:16:21 +00:00
|
|
|
flagNames.append(i.name);
|
|
|
|
main->refreshOmniBar(flagNames);
|
2017-04-13 15:14:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void FlagsWidget::setScrollMode()
|
|
|
|
{
|
2017-05-04 14:16:21 +00:00
|
|
|
qhelpers::setVerticalScrollMode(ui->flagsTreeView);
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|