cutter/src/widgets/omnibar.cpp

165 lines
4.9 KiB
C++
Raw Normal View History

#include "omnibar.h"
#include "mainwindow.h"
#include <QStringListModel>
#include <QCompleter>
#include <QShortcut>
Omnibar::Omnibar(MainWindow *main, QWidget *parent) :
QLineEdit(parent),
main(main),
commands({": Comments toggle",
": Dashboard toggle",
": Flags toggle",
": Functions toggle",
": Imports toggle",
": Notepad toggle",
": Relocs toggle",
": Run Script",
": Sections toggle",
": Strings toggle",
": Symbols toggle",
": Tabs up/down",
": Theme switch",
": Lock/Unlock interface",
": Web server start/stop"})
{
// QLineEdit basic features
this->setMinimumHeight(16);
this->setMaximumHeight(16);
this->setFrame(false);
this->setPlaceholderText("Type flag name or address here");
this->setStyleSheet("border-radius: 5px;");
this->setTextMargins(10, 0, 0, 0);
this->setClearButtonEnabled(true);
connect(this, SIGNAL(returnPressed()), this, SLOT(on_gotoEntry_returnPressed()));
// Esc clears omnibar
2017-04-09 19:55:06 +00:00
QShortcut *clear_shortcut = new QShortcut(QKeySequence(Qt::Key_Escape), this);
connect(clear_shortcut, SIGNAL(activated()), this, SLOT(clear()));
2017-04-05 09:35:19 +00:00
clear_shortcut->setContext(Qt::WidgetShortcut);
}
2017-04-09 19:55:06 +00:00
void Omnibar::setupCompleter()
{
// Set gotoEntry completer for jump history
QCompleter *completer = new QCompleter(flags + commands, this);
completer->setMaxVisibleItems(20);
completer->setCompletionMode(QCompleter::PopupCompletion);
completer->setModelSorting(QCompleter::CaseSensitivelySortedModel);
completer->setCaseSensitivity(Qt::CaseInsensitive);
completer->setFilterMode(Qt::MatchContains);
this->setCompleter(completer);
}
void Omnibar::refresh(const QStringList &flagList)
{
flags = flagList;
setupCompleter();
}
void Omnibar::restoreCompleter()
{
QCompleter *completer = this->completer();
completer->setFilterMode(Qt::MatchContains);
}
2017-04-09 19:55:06 +00:00
void Omnibar::showCommands()
{
this->setFocus();
this->setText(": ");
QCompleter *completer = this->completer();
completer->setCompletionMode(QCompleter::PopupCompletion);
completer->setModelSorting(QCompleter::CaseSensitivelySortedModel);
completer->setCaseSensitivity(Qt::CaseInsensitive);
completer->setFilterMode(Qt::MatchStartsWith);
completer->setMaxVisibleItems(20);
completer->setCompletionPrefix(": ");
completer->complete();
}
void Omnibar::on_gotoEntry_returnPressed()
{
QString str = this->text();
2017-04-09 19:55:06 +00:00
if (str.length() > 0)
{
if (str.contains(": "))
{
if (str.contains("Lock"))
{
this->main->on_actionLock_triggered();
2017-04-09 19:55:06 +00:00
}
else if (str.contains("Functions"))
{
this->main->on_actionFunctions_triggered();
2017-04-09 19:55:06 +00:00
}
else if (str.contains("Flags"))
{
this->main->on_actionFlags_triggered();
2017-04-09 19:55:06 +00:00
}
else if (str.contains("Sections"))
{
this->main->on_actionSections_triggered();
2017-04-09 19:55:06 +00:00
}
else if (str.contains("Strings"))
{
this->main->on_actionStrings_triggered();
2017-04-09 19:55:06 +00:00
}
else if (str.contains("Imports"))
{
this->main->on_actionImports_triggered();
2017-04-09 19:55:06 +00:00
}
else if (str.contains("Symbols"))
{
this->main->on_actionSymbols_triggered();
2017-04-09 19:55:06 +00:00
}
else if (str.contains("Relocs"))
{
this->main->on_actionReloc_triggered();
2017-04-09 19:55:06 +00:00
}
else if (str.contains("Comments"))
{
this->main->on_actionComents_triggered();
2017-04-09 19:55:06 +00:00
}
else if (str.contains("Notepad"))
{
this->main->on_actionNotepad_triggered();
2017-04-09 19:55:06 +00:00
}
else if (str.contains("Dashboard"))
{
this->main->on_actionDashboard_triggered();
2017-04-09 19:55:06 +00:00
}
else if (str.contains("Theme"))
{
this->main->toggleSideBarTheme();
2017-04-09 19:55:06 +00:00
}
else if (str.contains("Script"))
{
this->main->on_actionRun_Script_triggered();
2017-04-09 19:55:06 +00:00
}
else if (str.contains("Tabs"))
{
this->main->on_actionTabs_triggered();
}
2017-04-09 19:55:06 +00:00
}
else
{
//this->main->seek(this->main->core->cmd("?v " + this->text()), this->text());
QString off = this->main->core->cmd("afo " + this->text());
this->main->seek(off.trimmed(), this->text());
}
}
// check which tab is open? update all tabs? hex, graph?
//refreshMem( this->gotoEntry->text() );
this->setText("");
this->clearFocus();
this->restoreCompleter();
}