158 lines
3.6 KiB
C++
158 lines
3.6 KiB
C++
#ifndef MAINWINDOW_H
|
|
#define MAINWINDOW_H
|
|
|
|
#include <QMainWindow>
|
|
#include "common.h"
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
namespace Ui { class MainWindow; }
|
|
QT_END_NAMESPACE
|
|
|
|
class EditorList;
|
|
class QLabel;
|
|
class QComboBox;
|
|
class CompilerManager;
|
|
class Editor;
|
|
|
|
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 updateEditorSettings();
|
|
void updateEditorActions();
|
|
void updateCompileActions();
|
|
void updateEditorColorSchemes();
|
|
void updateCompilerSet();
|
|
void checkSyntaxInBack(Editor* e);
|
|
bool compile(bool rebuild=false);
|
|
void runExecutable(const QString& exeName, const QString& filename=QString());
|
|
void runExecutable();
|
|
|
|
void applySettings();
|
|
|
|
protected:
|
|
void openFiles(const QStringList& files);
|
|
void openFile(const QString& filename);
|
|
private slots:
|
|
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();
|
|
|
|
public slots:
|
|
void onCompileLog(const QString& msg);
|
|
void onCompileIssue(PCompileIssue issue);
|
|
void onCompileFinished();
|
|
void onCompileErrorOccured(const QString& reason);
|
|
void onRunErrorOccured(const QString& reason);
|
|
void onRunFinished();
|
|
|
|
private:
|
|
void setupActions();
|
|
void openCloseMessageSheet(bool open);
|
|
|
|
private:
|
|
Ui::MainWindow *ui;
|
|
EditorList* mEditorList;
|
|
QLabel* mFileInfoStatus;
|
|
QLabel* mFileEncodingStatus;
|
|
QLabel* mFileModeStatus;
|
|
QMenu * mMenuEncoding;
|
|
QMenu * mMenuEncodingList;
|
|
QComboBox* mCompilerSet;
|
|
CompilerManager* mCompilerManager;
|
|
bool mMessageControlChanged;
|
|
bool mTabMessagesTogglingState;
|
|
bool mCheckSyntaxInBack;
|
|
int mPreviousHeight;
|
|
PCompileSuccessionTask mCompileSuccessionTask;
|
|
|
|
// QWidget interface
|
|
protected:
|
|
void closeEvent(QCloseEvent *event) override;
|
|
};
|
|
|
|
extern MainWindow* pMainWindow;
|
|
#endif // MAINWINDOW_H
|