RedPanda-CPP/RedPandaIDE/editor.h

103 lines
2.7 KiB
C
Raw Normal View History

2021-04-06 23:10:57 +08:00
#ifndef EDITOR_H
#define EDITOR_H
#include <QObject>
#include <utils.h>
#include <QTabWidget>
2021-05-24 00:41:00 +08:00
#include "qsynedit/SynEdit.h"
#include "colorscheme.h"
2021-04-06 23:10:57 +08:00
2021-04-11 21:33:08 +08:00
class SaveException: public std::exception {
public:
explicit SaveException(const QString& reason);
explicit SaveException(const QString&& reason);
// exception interface
const QString& reason() const noexcept;
public:
const char *what() const noexcept override;
private:
QString mReason;
};
2021-05-24 00:41:00 +08:00
class Editor : public SynEdit
2021-04-06 23:10:57 +08:00
{
Q_OBJECT
public:
2021-04-29 20:54:44 +08:00
enum MarginNumber {
LineNumberMargin = 0,
MarkerMargin = 1,
FoldMargin = 2,
};
enum MarkerNumber {
BreakpointMarker,
ErrorMarker,
WarningMarker
};
explicit Editor(QWidget *parent);
2021-04-09 17:48:25 +08:00
explicit Editor(QWidget *parent, const QString& filename,
const QByteArray& encoding,
2021-04-09 17:48:25 +08:00
bool inProject, bool isNew,QTabWidget* parentPageControl);
2021-04-06 23:10:57 +08:00
2021-04-07 22:44:08 +08:00
~Editor();
//tell the compiler to prohibit copy/moving editor objects ( we should only use pointers to the editor object)
Editor(const Editor&) = delete;
Editor(const Editor&&) = delete;
Editor& operator=(const Editor&) = delete;
Editor& operator=(const Editor&&) = delete;
2021-04-11 21:33:08 +08:00
const QByteArray& encodingOption() const noexcept;
void setEncodingOption(const QByteArray& encoding) noexcept;
const QByteArray& fileEncoding() const noexcept;
const QString& filename() const noexcept;
bool inProject() const noexcept;
bool isNew() const noexcept;
2021-04-06 23:10:57 +08:00
void loadFile();
2021-04-07 21:13:15 +08:00
void saveFile(const QString& filename);
void convertToEncoding(const QByteArray& encoding);
2021-04-09 10:08:05 +08:00
bool save(bool force=false, bool reparse=true);
bool saveAs();
void activate();
2021-04-06 23:10:57 +08:00
2021-04-11 21:33:08 +08:00
QTabWidget* pageControl() noexcept;
void updateCaption(const QString& newCaption=QString());
2021-06-07 11:02:03 +08:00
void applySettings();
void applyColorScheme(const QString& schemeName);
void copyToClipboard() override;
void cutToClipboard() override;
void copyAsHTML();
2021-04-06 23:10:57 +08:00
signals:
protected slots:
2021-04-11 21:33:08 +08:00
void onModificationChanged(bool status) ;
2021-06-10 09:34:59 +08:00
void onStatusChanged(SynStatusChanges changes);
private:
bool handleSymbolCompletion(QChar ch);
2021-04-06 23:10:57 +08:00
private:
2021-05-26 00:04:20 +08:00
static int newfileCount;
QByteArray mEncodingOption; // the encoding type set by the user
QByteArray mFileEncoding; // the real encoding of the file (auto detected)
2021-04-06 23:10:57 +08:00
QString mFilename;
QTabWidget* mParentPageControl;
bool mInProject;
bool mIsNew;
2021-04-09 17:48:25 +08:00
// QWidget interface
protected:
void wheelEvent(QWheelEvent *event) override;
void focusInEvent(QFocusEvent *event) override;
void focusOutEvent(QFocusEvent *event) override;
void keyPressEvent(QKeyEvent *event) override;
2021-04-06 23:10:57 +08:00
};
#endif // EDITOR_H