119 lines
2.5 KiB
C++
119 lines
2.5 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 MainWindow : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
MainWindow(QWidget *parent = nullptr);
|
|
~MainWindow();
|
|
|
|
void updateForEncodingInfo();
|
|
void updateStatusbarForLineCol();
|
|
void updateForStatusbarModeInfo();
|
|
void updateEditorSettings();
|
|
void updateEditorActions();
|
|
void updateEditorColorSchemes();
|
|
|
|
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();
|
|
|
|
public slots:
|
|
void onCompileLog(const QString& msg);
|
|
void onCompileIssue(PCompileIssue issue);
|
|
void onCompileErrorOccured(const QString& reason);
|
|
|
|
private:
|
|
void setupActions();
|
|
|
|
void updateCompilerSet();
|
|
|
|
private:
|
|
Ui::MainWindow *ui;
|
|
EditorList* mEditorList;
|
|
QLabel* mFileInfoStatus;
|
|
QLabel* mFileEncodingStatus;
|
|
QLabel* mFileModeStatus;
|
|
QMenu * mMenuEncoding;
|
|
QMenu * mMenuEncodingList;
|
|
QComboBox* mCompilerSet;
|
|
CompilerManager* mCompilerManager;
|
|
|
|
// QWidget interface
|
|
protected:
|
|
void closeEvent(QCloseEvent *event) override;
|
|
};
|
|
|
|
extern MainWindow* pMainWindow;
|
|
#endif // MAINWINDOW_H
|