mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 09:00:42 +08:00
Checkpoint.
This commit is contained in:
@@ -78,6 +78,11 @@ SeerMainWindow::SeerMainWindow(QWidget* parent) : QMainWindow(parent) {
|
||||
// Set the inital key settings.
|
||||
setKeySettings(SeerKeySettings::populate());
|
||||
|
||||
// Setup hidden Var Visualizer.
|
||||
QShortcut* varVisualizerShotcut = new QShortcut(QKeySequence(tr("Alt+V")), this);
|
||||
|
||||
QObject::connect(varVisualizerShotcut, &QShortcut::activated, this, &SeerMainWindow::handleViewVarVisualizer);
|
||||
|
||||
//
|
||||
// Set up signals/slots.
|
||||
//
|
||||
@@ -401,6 +406,11 @@ void SeerMainWindow::handleViewStructVisualizer () {
|
||||
gdbWidget->handleGdbStructVisualizer();
|
||||
}
|
||||
|
||||
void SeerMainWindow::handleViewVarVisualizer () {
|
||||
|
||||
gdbWidget->handleGdbVarVisualizer();
|
||||
}
|
||||
|
||||
void SeerMainWindow::handleViewAssembly () {
|
||||
|
||||
gdbWidget->editorManager()->showAssembly();
|
||||
|
||||
Reference in New Issue
Block a user