453 lines
12 KiB
C++
453 lines
12 KiB
C++
#ifndef MAINWINDOW_H
|
|
#define MAINWINDOW_H
|
|
|
|
#include <QFileSystemWatcher>
|
|
#include <QMainWindow>
|
|
#include <QTimer>
|
|
#include "common.h"
|
|
#include "widgets/searchresultview.h"
|
|
#include "widgets/classbrowser.h"
|
|
#include "widgets/codecompletionpopup.h"
|
|
#include "widgets/headercompletionpopup.h"
|
|
#include "widgets/functiontooltipwidget.h"
|
|
#include "caretlist.h"
|
|
#include "symbolusagemanager.h"
|
|
#include "codesnippetsmanager.h"
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
namespace Ui { class MainWindow; }
|
|
QT_END_NAMESPACE
|
|
|
|
enum class CompileTarget {
|
|
Invalid, None, File, Project, SyntaxCheck
|
|
};
|
|
|
|
class EditorList;
|
|
class QLabel;
|
|
class QComboBox;
|
|
class CompilerManager;
|
|
class Editor;
|
|
class Debugger;
|
|
class CPUDialog;
|
|
class QPlainTextEdit;
|
|
class SearchDialog;
|
|
class Project;
|
|
|
|
class MainWindow : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
enum class CompileSuccessionTaskType {
|
|
None,
|
|
Run,
|
|
Debug,
|
|
Profile
|
|
};
|
|
|
|
struct CompileSuccessionTask {
|
|
CompileSuccessionTaskType type;
|
|
QString filename;
|
|
};
|
|
|
|
using PCompileSuccessionTask = std::shared_ptr<CompileSuccessionTask>;
|
|
|
|
public:
|
|
MainWindow(QWidget *parent = nullptr);
|
|
~MainWindow();
|
|
|
|
void updateForEncodingInfo();
|
|
void updateStatusbarForLineCol();
|
|
void updateForStatusbarModeInfo();
|
|
void updateStatusbarMessage(const QString& s);
|
|
void updateEditorSettings();
|
|
void updateEditorActions();
|
|
void updateProjectActions();
|
|
void updateCompileActions();
|
|
void updateEditorColorSchemes();
|
|
void updateCompilerSet();
|
|
void updateDebuggerSettings();
|
|
void checkSyntaxInBack(Editor* e);
|
|
bool compile(bool rebuild=false);
|
|
void runExecutable(const QString& exeName, const QString& filename=QString());
|
|
void runExecutable();
|
|
void debug();
|
|
void showSearchPanel();
|
|
|
|
void applySettings();
|
|
void applyUISettings();
|
|
QFileSystemWatcher* fileSystemWatcher();
|
|
|
|
void removeActiveBreakpoints();
|
|
void setActiveBreakpoint(QString FileName, int Line, bool setFocus=true);
|
|
void updateAppTitle();
|
|
void addDebugOutput(const QString& text);
|
|
void changeDebugOutputLastline(const QString& text);
|
|
void updateDebugEval(const QString& value);
|
|
void rebuildOpenedFileHisotryMenu();
|
|
void updateClassBrowserForEditor(Editor* editor);
|
|
void resetAutoSaveTimer();
|
|
|
|
void saveLastOpens();
|
|
void loadLastOpens();
|
|
|
|
QPlainTextEdit* txtLocals();
|
|
|
|
CPUDialog *cpuDialog() const;
|
|
|
|
Debugger *debugger() const;
|
|
|
|
EditorList *editorList() const;
|
|
|
|
SearchDialog *searchDialog() const;
|
|
|
|
SearchResultModel* searchResultModel();
|
|
|
|
const std::shared_ptr<CodeCompletionPopup> &completionPopup() const;
|
|
|
|
const std::shared_ptr<HeaderCompletionPopup> &headerCompletionPopup() const;
|
|
|
|
const std::shared_ptr<FunctionTooltipWidget> &functionTip() const;
|
|
|
|
CaretList &caretList();
|
|
void updateCaretActions();
|
|
|
|
std::shared_ptr<Project> project();
|
|
|
|
const std::shared_ptr<QHash<StatementKind, QColor> > &statementColors() const;
|
|
|
|
PSymbolUsageManager &symbolUsageManager();
|
|
|
|
PCodeSnippetManager &codeSnippetManager();
|
|
|
|
public slots:
|
|
void onCompileLog(const QString& msg);
|
|
void onCompileIssue(PCompileIssue issue);
|
|
void onCompileStarted();
|
|
void onCompileFinished();
|
|
void onCompileErrorOccured(const QString& reason);
|
|
void onRunErrorOccured(const QString& reason);
|
|
void onRunFinished();
|
|
void cleanUpCPUDialog();
|
|
void onDebugCommandInput(const QString& command);
|
|
void onDebugEvaluateInput();
|
|
void onDebugMemoryAddressInput();
|
|
void onParserProgress(const QString& fileName, int total, int current);
|
|
void onStartParsing();
|
|
void onEndParsing(int total, int updateView);
|
|
void onEvalValueReady(const QString& value);
|
|
void onMemoryExamineReady(const QStringList& value);
|
|
void onLocalsReady(const QStringList& value);
|
|
void onEditorContextMenu(const QPoint& pos);
|
|
void onEditorTabContextMenu(const QPoint& pos);
|
|
void disableDebugActions();
|
|
void enableDebugActions();
|
|
|
|
private:
|
|
void prepareProjectForCompile();
|
|
void closeProject(bool refreshEditor);
|
|
void updateProjectView();
|
|
void openFiles(const QStringList& files);
|
|
void openFile(const QString& filename);
|
|
void openProject(const QString& filename);
|
|
CompileTarget getCompileTarget();
|
|
bool debugInferiorhasBreakpoint();
|
|
void setupActions();
|
|
void openCloseBottomPanel(bool open);
|
|
void openCloseLeftPanel(bool open);
|
|
void prepareDebugger();
|
|
void doAutoSave(Editor *e);
|
|
void buildContextMenus();
|
|
void buildEncodingMenu();
|
|
void maximizeEditor();
|
|
void openShell(const QString& folder, const QString& shellCommand);
|
|
QAction* createActionFor(const QString& text,
|
|
QWidget* parent,
|
|
QKeySequence shortcut=QKeySequence());
|
|
void scanActiveProject(bool parse=false);
|
|
void includeOrSkipDirs(const QStringList& dirs, bool skip);
|
|
private slots:
|
|
void onAutoSaveTimeout();
|
|
void onFileChanged(const QString& path);
|
|
|
|
void onWatchViewContextMenu(const QPoint& pos);
|
|
void onTableIssuesContextMenu(const QPoint& pos);
|
|
void onSearchViewContextMenu(const QPoint& pos);
|
|
void onBreakpointsViewContextMenu(const QPoint& pos);
|
|
void onProjectViewContextMenu(const QPoint& pos);
|
|
void onClassBrowserContextMenu(const QPoint& pos);
|
|
void onDebugConsoleContextMenu(const QPoint& pos);
|
|
|
|
void on_actionNew_triggered();
|
|
|
|
void on_EditorTabsLeft_tabCloseRequested(int index);
|
|
|
|
void on_actionOpen_triggered();
|
|
|
|
void on_actionSave_triggered();
|
|
|
|
void on_actionSaveAs_triggered();
|
|
|
|
void on_actionOptions_triggered();
|
|
|
|
// qt will auto bind slots with the prefix "on_"
|
|
void onCompilerSetChanged(int index);
|
|
|
|
void on_actionCompile_triggered();
|
|
|
|
void on_actionRun_triggered();
|
|
|
|
void on_actionUndo_triggered();
|
|
|
|
void on_actionRedo_triggered();
|
|
|
|
void on_actionCut_triggered();
|
|
|
|
void on_actionSelectAll_triggered();
|
|
|
|
void on_actionCopy_triggered();
|
|
|
|
void on_actionPaste_triggered();
|
|
|
|
void on_actionIndent_triggered();
|
|
|
|
void on_actionUnIndent_triggered();
|
|
|
|
void on_actionToggleComment_triggered();
|
|
|
|
void on_actionUnfoldAll_triggered();
|
|
|
|
void on_actionFoldAll_triggered();
|
|
|
|
void on_tableIssues_doubleClicked(const QModelIndex &index);
|
|
|
|
void on_actionEncode_in_ANSI_triggered();
|
|
|
|
void on_actionEncode_in_UTF_8_triggered();
|
|
|
|
void on_actionAuto_Detect_triggered();
|
|
|
|
void on_actionConvert_to_ANSI_triggered();
|
|
|
|
void on_actionConvert_to_UTF_8_triggered();
|
|
|
|
void on_tabMessages_tabBarClicked(int index);
|
|
|
|
void on_tabMessages_currentChanged(int index);
|
|
|
|
void on_tabMessages_tabBarDoubleClicked(int index);
|
|
|
|
void on_actionCompile_Run_triggered();
|
|
|
|
void on_actionRebuild_triggered();
|
|
|
|
void on_actionStop_Execution_triggered();
|
|
|
|
void on_actionDebug_triggered();
|
|
|
|
void on_actionStep_Over_triggered();
|
|
|
|
void on_actionStep_Into_triggered();
|
|
|
|
void on_actionStep_Out_triggered();
|
|
|
|
void on_actionRun_To_Cursor_triggered();
|
|
|
|
void on_actionContinue_triggered();
|
|
|
|
void on_actionAdd_Watch_triggered();
|
|
|
|
void on_actionView_CPU_Window_triggered();
|
|
|
|
void on_actionExit_triggered();
|
|
|
|
void on_actionFind_triggered();
|
|
|
|
void on_actionFind_in_files_triggered();
|
|
|
|
void on_actionReplace_triggered();
|
|
|
|
void on_actionFind_Next_triggered();
|
|
|
|
void on_actionFind_Previous_triggered();
|
|
|
|
void on_cbSearchHistory_currentIndexChanged(int index);
|
|
|
|
void on_btnSearchAgin_clicked();
|
|
void on_actionRemove_Watch_triggered();
|
|
|
|
void on_actionRemove_All_Watches_triggered();
|
|
|
|
void on_actionModify_Watch_triggered();
|
|
|
|
void on_actionReformat_Code_triggered();
|
|
|
|
void on_actionBack_triggered();
|
|
|
|
void on_actionForward_triggered();
|
|
|
|
void on_tabInfos_tabBarClicked(int index);
|
|
|
|
void on_splitterInfos_splitterMoved(int pos, int index);
|
|
|
|
void on_splitterMessages_splitterMoved(int pos, int index);
|
|
|
|
void on_EditorTabsLeft_tabBarDoubleClicked(int index);
|
|
|
|
void on_actionClose_triggered();
|
|
|
|
void on_actionClose_All_triggered();
|
|
|
|
void on_actionMaximize_Editor_triggered();
|
|
|
|
void on_actionNext_Editor_triggered();
|
|
|
|
void on_actionPrevious_Editor_triggered();
|
|
|
|
void on_actionToggle_Breakpoint_triggered();
|
|
|
|
void on_actionClear_all_breakpoints_triggered();
|
|
|
|
void on_actionBreakpoint_property_triggered();
|
|
|
|
void on_actionGoto_Declaration_triggered();
|
|
|
|
void on_actionGoto_Definition_triggered();
|
|
|
|
void on_actionFind_references_triggered();
|
|
|
|
void on_actionOpen_Containing_Folder_triggered();
|
|
|
|
void on_actionOpen_Terminal_triggered();
|
|
|
|
void on_actionFile_Properties_triggered();
|
|
|
|
void on_searchView_doubleClicked(const QModelIndex &index);
|
|
|
|
void on_tblStackTrace_doubleClicked(const QModelIndex &index);
|
|
|
|
void on_tblBreakpoints_doubleClicked(const QModelIndex &index);
|
|
|
|
void on_projectView_doubleClicked(const QModelIndex &index);
|
|
|
|
void on_actionClose_Project_triggered();
|
|
|
|
void on_actionProject_options_triggered();
|
|
|
|
void on_actionNew_Project_triggered();
|
|
|
|
void on_actionSaveAll_triggered();
|
|
|
|
void on_actionProject_New_File_triggered();
|
|
|
|
void on_actionAdd_to_project_triggered();
|
|
|
|
void on_actionRemove_from_project_triggered();
|
|
|
|
void on_actionView_Makefile_triggered();
|
|
|
|
void on_actionMakeClean_triggered();
|
|
|
|
void on_actionProject_Open_Folder_In_Explorer_triggered();
|
|
|
|
void on_actionProject_Open_In_Terminal_triggered();
|
|
|
|
void on_classBrowser_doubleClicked(const QModelIndex &index);
|
|
|
|
private:
|
|
Ui::MainWindow *ui;
|
|
EditorList *mEditorList;
|
|
QLabel *mFileInfoStatus;
|
|
QLabel *mFileEncodingStatus;
|
|
QLabel *mFileModeStatus;
|
|
QMenu *mMenuEncoding;
|
|
QMenu *mMenuEncodingList;
|
|
QMenu *mMenuRecentFiles;
|
|
QMenu *mMenuRecentProjects;
|
|
QMenu *mMenuNew;
|
|
QComboBox *mCompilerSet;
|
|
CompilerManager *mCompilerManager;
|
|
Debugger *mDebugger;
|
|
CPUDialog *mCPUDialog;
|
|
SearchDialog *mSearchDialog;
|
|
QList<QAction *> mRecentFileActions;
|
|
QList<QAction *> mRecentProjectActions;
|
|
bool mQuitting;
|
|
QElapsedTimer mParserTimer;
|
|
QFileSystemWatcher mFileSystemWatcher;
|
|
std::shared_ptr<Project> mProject;
|
|
|
|
std::shared_ptr<CodeCompletionPopup> mCompletionPopup;
|
|
std::shared_ptr<HeaderCompletionPopup> mHeaderCompletionPopup;
|
|
std::shared_ptr<FunctionTooltipWidget> mFunctionTip;
|
|
|
|
SearchResultModel mSearchResultModel;
|
|
PSearchResultListModel mSearchResultListModel;
|
|
PSearchResultTreeModel mSearchResultTreeModel;
|
|
PSearchResultTreeViewDelegate mSearchViewDelegate;
|
|
ClassBrowserModel mClassBrowserModel;
|
|
std::shared_ptr<QHash<StatementKind, QColor>> mStatementColors;
|
|
PSymbolUsageManager mSymbolUsageManager;
|
|
PCodeSnippetManager mCodeSnippetManager;
|
|
|
|
bool mCheckSyntaxInBack;
|
|
bool mOpenClosingBottomPanel;
|
|
int mBottomPanelHeight;
|
|
bool mBottomPanelOpenned;
|
|
bool mOpenClosingLeftPanel;
|
|
int mLeftPanelWidth;
|
|
bool mLeftPanelOpenned;
|
|
PCompileSuccessionTask mCompileSuccessionTask;
|
|
|
|
QTimer mAutoSaveTimer;
|
|
|
|
CaretList mCaretList;
|
|
|
|
bool mClosing;
|
|
bool mSystemTurnedOff;
|
|
QPoint mEditorContextMenuPos;
|
|
|
|
//actions for compile issue table
|
|
QAction * mTableIssuesCopyAction;
|
|
QAction * mTableIssuesCopyAllAction;
|
|
QAction * mTableIssuesClearAction;
|
|
|
|
//actions for search result view
|
|
QAction * mSearchViewClearAction;
|
|
QAction * mSearchViewClearAllAction;
|
|
|
|
//actions for breakpoint view
|
|
QAction * mBreakpointViewPropertyAction;
|
|
QAction * mBreakpointViewRemoveAllAction;
|
|
|
|
//actions for project view
|
|
QAction * mProject_Add_Folder;
|
|
QAction * mProject_Rename_Unit;
|
|
QAction * mProject_Rename_Folder;
|
|
QAction * mProject_Remove_Folder;
|
|
|
|
//actions for class browser
|
|
QAction * mClassBrowser_Sort_By_Type;
|
|
QAction * mClassBrowser_Sort_By_Name;
|
|
QAction * mClassBrowser_Show_Inherited;
|
|
QAction * mClassBrowser_goto_declaration;
|
|
QAction * mClassBrowser_goto_definition;
|
|
QWidget * mClassBrowserToolbar;
|
|
|
|
//action for debug console
|
|
QAction * mDebugConsole_ShowCommandLog;
|
|
QAction * mDebugConsole_Clear;
|
|
QAction * mDebugConsole_Copy;
|
|
QAction * mDebugConsole_Paste;
|
|
QAction * mDebugConsole_SelectAll;
|
|
|
|
// QWidget interface
|
|
protected:
|
|
void closeEvent(QCloseEvent *event) override;
|
|
void showEvent(QShowEvent* event) override;
|
|
void dragEnterEvent(QDragEnterEvent *event) override;
|
|
void dropEvent(QDropEvent *event) override;
|
|
};
|
|
|
|
extern MainWindow* pMainWindow;
|
|
#endif // MAINWINDOW_H
|