mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 00:50:42 +08:00
180 lines
15 KiB
C++
180 lines
15 KiB
C++
// SPDX-FileCopyrightText: 2021 Ernie Pasveer <epasveer@att.net>
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include "SeerEditorWidgetAssembly.h"
|
|
#include "SeerEditorManagerEntry.h"
|
|
#include "SeerHighlighterSettings.h"
|
|
#include "SeerKeySettings.h"
|
|
#include <QtGui/QFont>
|
|
#include <QtWidgets/QWidget>
|
|
#include <QtCore/QMap>
|
|
#include <QtCore/QString>
|
|
#include <QtCore/QStringList>
|
|
#include <QStack>
|
|
|
|
#include "ui_SeerEditorManagerWidget.h"
|
|
|
|
class SeerEditorManagerWidget : public QWidget, protected Ui::SeerEditorManagerWidgetForm {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SeerEditorManagerWidget (QWidget* parent = 0);
|
|
~SeerEditorManagerWidget ();
|
|
|
|
void dumpEntries () const;
|
|
SeerEditorManagerEntries& entries ();
|
|
const SeerEditorManagerEntries& entries () const;
|
|
bool hasEntry (const QString& fullname) const;
|
|
SeerEditorManagerEntries::iterator addEntry (const QString& fullname, const QString& file);
|
|
SeerEditorManagerEntries::iterator findEntry (const QString& fullname);
|
|
SeerEditorManagerEntries::const_iterator findEntry (const QString& fullname) const;
|
|
SeerEditorManagerEntries::iterator beginEntry ();
|
|
SeerEditorManagerEntries::const_iterator beginEntry () const;
|
|
SeerEditorManagerEntries::iterator endEntry ();
|
|
SeerEditorManagerEntries::const_iterator endEntry () const;
|
|
void deleteEntry (SeerEditorManagerEntries::iterator i);
|
|
|
|
void maybeShowAssembly ();
|
|
void showAssembly ();
|
|
SeerEditorWidgetAssembly* assemblyWidgetTab ();
|
|
void setKeepAssemblyTabOnTop (bool flag);
|
|
bool keepAssemblyTabOnTop () const;
|
|
void setShowAssemblyTabOnStartupMode (const QString& mode);
|
|
QString showAssemblyTabOnStartupMode () const;
|
|
void setAssemblyShowAddressColumn (bool flag);
|
|
bool assemblyShowAddressColumn () const;
|
|
void setAssemblyShowOffsetColumn (bool flag);
|
|
bool assemblyShowOffsetColumn () const;
|
|
void setAssemblyShowOpcodeColumn (bool flag);
|
|
bool assemblyShowOpcodeColumn () const;
|
|
void setAssemblyShowSourceLines (bool flag);
|
|
bool assemblyShowSourceLines () const;
|
|
|
|
|
|
SeerEditorManagerFiles openedFiles () const;
|
|
|
|
void setEditorFont (const QFont& font);
|
|
const QFont& editorFont () const;
|
|
void setEditorHighlighterSettings (const SeerHighlighterSettings& settings);
|
|
const SeerHighlighterSettings& editorHighlighterSettings () const;
|
|
void setEditorHighlighterEnabled (bool flag);
|
|
bool editorHighlighterEnabled () const;
|
|
void setEditorAlternateDirectories (const QStringList alternateDirectories);
|
|
const QStringList& editorAlternateDirectories () const;
|
|
void setEditorIgnoreDirectories (const QStringList ignoreDirectories);
|
|
const QStringList& editorIgnoreDirectories () const;
|
|
void setEditorKeySettings (const SeerKeySettings& settings);
|
|
const SeerKeySettings& editorKeySettings () const;
|
|
void setEditorTabSize (int spaces);
|
|
int editorTabSize () const;
|
|
void setEditorExternalEditorCommand (const QString& externalEditorCommand);
|
|
const QString& editorExternalEditorCommand () const;
|
|
|
|
public slots:
|
|
void handleText (const QString& text);
|
|
void handleTabCloseRequested (int index);
|
|
void handleTabCurrentChanged (int index);
|
|
void handleOpenFile (const QString& file, const QString& fullname, int lineno);
|
|
void handleOpenAddress (const QString& address);
|
|
void handleMaybeOpenAddress (const QString& file, const QString& fullname, const QString& address);
|
|
void handleInsertBreakpoint (QString breakpoint);
|
|
void handleInsertPrintpoint (QString type, QString function, QString channel, QString parameters);
|
|
void handleDeleteBreakpoints (QString breakpoints);
|
|
void handleEnableBreakpoints (QString breakpoints);
|
|
void handleDisableBreakpoints (QString breakpoints);
|
|
void handleInfoBreakpoint (int breakpointid, QString breakpoint);
|
|
void handleRefreshBreakpointsStackFrames ();
|
|
void handleRunToLine (QString fullname, int lineno);
|
|
void handleRunToAddress (QString address);
|
|
void handleAddVariableLoggerExpression (QString expression);
|
|
void handleAddVariableTrackerExpression (QString expression);
|
|
void handleRefreshVariableTrackerValues ();
|
|
void handleEvaluateVariableExpression (int expressionid, QString expression);
|
|
void handleAddMemoryVisualizer (QString expression);
|
|
void handleAddArrayVisualizer (QString expression);
|
|
void handleAddMatrixVisualizer (QString expression);
|
|
void handleAddStructVisualizer (QString expression);
|
|
void handleRequestAssembly (QString address);
|
|
void handleRequestSourceAndAssembly (QString address);
|
|
void handleAssemblyConfigChanged ();
|
|
void handleSessionTerminated ();
|
|
void handleGdbStateChanged ();
|
|
void handleAddToMouseNavigation (const SeerEditorWidgetSourceArea::SeerCurrentFile& currentFile);
|
|
|
|
protected:
|
|
void mousePressEvent (QMouseEvent *event) override;
|
|
|
|
private slots:
|
|
void handleFileOpenToolButtonClicked ();
|
|
void handleFileCloseToolButtonClicked ();
|
|
void handleTextSearchToolButtonClicked ();
|
|
void handleHelpToolButtonClicked ();
|
|
void handleAddAlternateDirectory (QString path);
|
|
|
|
signals:
|
|
void refreshBreakpointsList ();
|
|
void refreshStackFrames ();
|
|
void insertBreakpoint (QString breakpoint);
|
|
void insertPrintpoint (QString type, QString function, QString channel, QString parameters);
|
|
void deleteBreakpoints (QString breakpoints);
|
|
void enableBreakpoints (QString breakpoints);
|
|
void disableBreakpoints (QString breakpoints);
|
|
void infoBreakpoint (int breakpointid, QString breakpoint);
|
|
void runToLine (QString file, int lineno);
|
|
void runToAddress (QString address);
|
|
void addVariableLoggerExpression (QString expression);
|
|
void addVariableTrackerExpression (QString expression);
|
|
void refreshVariableTrackerValues ();
|
|
void evaluateVariableExpression (int expressionid, QString expression);
|
|
void addMemoryVisualizer (QString expression);
|
|
void addArrayVisualizer (QString expression);
|
|
void addMatrixVisualizer (QString expression);
|
|
void addStructVisualizer (QString expression);
|
|
void requestAssembly (QString address);
|
|
void requestSourceAndAssembly (QString address);
|
|
void showMessage (QString message, int time);
|
|
void assemblyTabShown (bool shown);
|
|
|
|
private:
|
|
SeerEditorWidgetSource* currentEditorWidgetTab ();
|
|
SeerEditorWidgetSource* editorWidgetTab (const QString& fullname);
|
|
SeerEditorWidgetSource* createEditorWidgetTab (const QString& fullname, const QString& file, const QString& text);
|
|
SeerEditorWidgetSource* createEditorWidgetTab (const QString& fullname, const QString& file);
|
|
void deleteEditorWidgetTab (int index);
|
|
SeerEditorWidgetAssembly* createAssemblyWidgetTab ();
|
|
void deleteAssemblyWidgetTab ();
|
|
void handleOpenFileWithDetails (const QString& file, const QString& fullname, int cursorRow, int cursorCol, int firstDisplayLine);
|
|
void handleOpenForwardBackward (const SeerEditorWidgetSourceArea::SeerCurrentFile& fileInfo);
|
|
|
|
SeerEditorManagerEntries _entries;
|
|
SeerHighlighterSettings _editorHighlighterSettings;
|
|
bool _editorHighlighterEnabled;
|
|
QFont _editorFont;
|
|
QStringList _editorAlternateDirectories;
|
|
QStringList _editorIgnoreDirectories;
|
|
SeerKeySettings _editorKeySettings;
|
|
int _editorTabSize;
|
|
QString _editorExternalEditorCommand;
|
|
SeerEditorWidgetAssembly* _assemblyWidget;
|
|
int _assemblyIndex;
|
|
QString _showAssemblyTabOnStartupMode;
|
|
bool _keepAssemblyTabOnTop;
|
|
bool _showAddressColumn;
|
|
bool _showOffsetColumn;
|
|
bool _showOpcodeColumn;
|
|
bool _showSourceLines;
|
|
bool _notifyAssemblyTabShown;
|
|
QStringList _lastFrameList; // variable for saving previous backtrace
|
|
|
|
// list of recently closed files (Ctrl + Shift + T)
|
|
QStack<SeerEditorWidgetSourceArea::SeerCurrentFile> _stackClosedFiles;
|
|
// list of cursor positions for mouse navigation (back/forward)
|
|
QList<SeerEditorWidgetSourceArea::SeerCurrentFile> _listForwardFiles;
|
|
int _forwardFilesIndex = -1;
|
|
};
|
|
|