RedPanda-CPP/RedPandaIDE/mainwindow.h

214 lines
4.9 KiB
C
Raw Normal View History

2021-04-06 23:10:57 +08:00
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
2021-04-24 15:57:45 +08:00
#include "common.h"
2021-04-06 23:10:57 +08:00
QT_BEGIN_NAMESPACE
namespace Ui { class MainWindow; }
QT_END_NAMESPACE
2021-07-20 15:16:52 +08:00
enum class CompileTarget {
Invalid, None, File, Project, SyntaxCheck
};
2021-04-07 21:13:15 +08:00
class EditorList;
class QLabel;
2021-04-18 11:41:41 +08:00
class QComboBox;
2021-04-20 22:24:33 +08:00
class CompilerManager;
2021-06-24 20:43:09 +08:00
class Editor;
2021-07-23 13:22:05 +08:00
class Debugger;
2021-07-26 11:47:54 +08:00
class CPUDialog;
2021-08-01 10:00:27 +08:00
class QPlainTextEdit;
2021-04-07 21:13:15 +08:00
2021-04-06 23:10:57 +08:00
class MainWindow : public QMainWindow
{
Q_OBJECT
2021-06-25 12:40:11 +08:00
enum class CompileSuccessionTaskType {
None,
Run,
Debug,
Profile
};
struct CompileSuccessionTask {
CompileSuccessionTaskType type;
QString filename;
};
using PCompileSuccessionTask = std::shared_ptr<CompileSuccessionTask>;
2021-04-06 23:10:57 +08:00
public:
MainWindow(QWidget *parent = nullptr);
~MainWindow();
void updateForEncodingInfo();
void updateStatusbarForLineCol();
void updateForStatusbarModeInfo();
2021-06-07 11:02:03 +08:00
void updateEditorSettings();
void updateEditorActions();
2021-07-01 19:44:38 +08:00
void updateCompileActions();
2021-06-20 14:30:47 +08:00
void updateEditorColorSchemes();
2021-06-24 20:43:09 +08:00
void updateCompilerSet();
2021-08-01 23:24:37 +08:00
void updateDebuggerSettings();
2021-06-24 20:43:09 +08:00
void checkSyntaxInBack(Editor* e);
2021-06-25 12:40:11 +08:00
bool compile(bool rebuild=false);
void runExecutable(const QString& exeName, const QString& filename=QString());
void runExecutable();
2021-07-23 13:22:05 +08:00
void debug();
2021-06-18 21:48:40 +08:00
void applySettings();
2021-07-26 00:22:08 +08:00
void removeActiveBreakpoints();
2021-07-26 18:22:09 +08:00
void setActiveBreakpoint(QString FileName, int Line, bool setFocus=true);
2021-07-26 00:22:08 +08:00
void updateAppTitle();
2021-07-26 11:47:54 +08:00
void addDebugOutput(const QString& text);
2021-07-30 23:28:58 +08:00
void changeDebugOutputLastline(const QString& text);
2021-08-01 23:24:37 +08:00
void updateDebugEval(const QString& value);
2021-07-26 11:47:54 +08:00
2021-08-02 10:08:25 +08:00
void rebuildOpenedFileHisotryMenu();
2021-08-01 10:00:27 +08:00
QPlainTextEdit* txtLocals();
2021-07-26 18:22:09 +08:00
CPUDialog *cpuDialog() const;
2021-07-26 00:22:08 +08:00
2021-08-01 09:13:38 +08:00
Debugger *debugger() const;
2021-04-11 21:33:08 +08:00
protected:
void openFiles(const QStringList& files);
void openFile(const QString& filename);
2021-04-07 21:13:15 +08:00
private slots:
void on_actionNew_triggered();
2021-04-07 22:44:08 +08:00
void on_EditorTabsLeft_tabCloseRequested(int index);
void on_actionOpen_triggered();
void on_actionSave_triggered();
void on_actionSaveAs_triggered();
2021-04-16 22:04:48 +08:00
void on_actionOptions_triggered();
2021-04-18 11:41:41 +08:00
// qt will auto bind slots with the prefix "on_"
void onCompilerSetChanged(int index);
2021-04-20 22:24:33 +08:00
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();
2021-04-24 15:57:45 +08:00
void on_actionToggleComment_triggered();
void on_actionUnfoldAll_triggered();
void on_actionFoldAll_triggered();
2021-04-29 20:54:44 +08:00
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();
2021-06-23 22:38:02 +08:00
void on_tabMessages_tabBarClicked(int index);
void on_tabMessages_currentChanged(int index);
void on_tabMessages_tabBarDoubleClicked(int index);
2021-06-25 12:40:11 +08:00
void on_actionCompile_Run_triggered();
void on_actionRebuild_triggered();
void on_actionStop_Execution_triggered();
2021-07-20 15:16:52 +08:00
void on_actionDebug_triggered();
CompileTarget getCompileTarget();
2021-07-25 13:03:46 +08:00
bool debugInferiorhasBreakpoint();
2021-07-20 15:16:52 +08:00
2021-07-31 14:04:43 +08:00
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();
2021-08-01 01:06:43 +08:00
void on_actionAdd_Watch_triggered();
2021-08-01 23:24:37 +08:00
void on_actionView_CPU_Window_triggered();
2021-08-02 10:08:25 +08:00
void on_actionExit_triggered();
2021-08-02 21:58:39 +08:00
void on_cbEvaluate_textActivated(const QString &arg1);
2021-04-20 22:24:33 +08:00
public slots:
void onCompileLog(const QString& msg);
2021-04-24 15:57:45 +08:00
void onCompileIssue(PCompileIssue issue);
2021-06-23 22:38:02 +08:00
void onCompileFinished();
void onCompileErrorOccured(const QString& reason);
2021-06-25 12:40:11 +08:00
void onRunErrorOccured(const QString& reason);
void onRunFinished();
2021-08-01 23:24:37 +08:00
void cleanUpCPUDialog();
void onDebugCommandInput(const QString& command);
2021-04-20 22:24:33 +08:00
2021-04-07 21:13:15 +08:00
private:
void setupActions();
2021-06-23 22:38:02 +08:00
void openCloseMessageSheet(bool open);
2021-07-23 13:22:05 +08:00
void prepareDebugger();
2021-04-18 11:41:41 +08:00
2021-04-06 23:10:57 +08:00
private:
Ui::MainWindow *ui;
2021-08-01 09:13:38 +08:00
EditorList *mEditorList;
QLabel *mFileInfoStatus;
QLabel *mFileEncodingStatus;
QLabel *mFileModeStatus;
QMenu *mMenuEncoding;
QMenu *mMenuEncodingList;
2021-08-02 10:08:25 +08:00
QMenu *mMenuRecentFiles;
2021-08-01 09:13:38 +08:00
QComboBox *mCompilerSet;
CompilerManager *mCompilerManager;
Debugger *mDebugger;
CPUDialog *mCPUDialog;
2021-08-02 10:08:25 +08:00
QList<QAction *> mRecentFileActions;
2021-07-23 13:22:05 +08:00
2021-06-23 22:38:02 +08:00
bool mMessageControlChanged;
bool mTabMessagesTogglingState;
2021-06-23 22:38:02 +08:00
bool mCheckSyntaxInBack;
int mPreviousHeight;
2021-06-25 12:40:11 +08:00
PCompileSuccessionTask mCompileSuccessionTask;
2021-04-20 22:24:33 +08:00
2021-04-09 17:48:25 +08:00
// QWidget interface
protected:
void closeEvent(QCloseEvent *event) override;
2021-04-06 23:10:57 +08:00
};
extern MainWindow* pMainWindow;
2021-04-06 23:10:57 +08:00
#endif // MAINWINDOW_H