You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
117 lines
2.6 KiB
C++
117 lines
2.6 KiB
C++
#ifndef SCRIPTEDIT_H
|
|
#define SCRIPTEDIT_H
|
|
|
|
#include <QPlainTextEdit>
|
|
#include <QWidget>
|
|
#include <QVector>
|
|
#include <QTimer>
|
|
#include <QFont>
|
|
|
|
#include "../../model/world/universalid.hpp"
|
|
|
|
#include "scripthighlighter.hpp"
|
|
|
|
class QRegExp;
|
|
|
|
namespace CSMDoc
|
|
{
|
|
class Document;
|
|
}
|
|
|
|
namespace CSVWorld
|
|
{
|
|
class LineNumberArea;
|
|
|
|
class ScriptEdit : public QPlainTextEdit
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
class ChangeLock
|
|
{
|
|
ScriptEdit& mEdit;
|
|
|
|
ChangeLock (const ChangeLock&);
|
|
ChangeLock& operator= (const ChangeLock&);
|
|
|
|
public:
|
|
|
|
ChangeLock (ScriptEdit& edit);
|
|
~ChangeLock();
|
|
};
|
|
|
|
friend class ChangeLock;
|
|
|
|
private:
|
|
|
|
int mChangeLocked;
|
|
ScriptHighlighter *mHighlighter;
|
|
QTimer mUpdateTimer;
|
|
bool mShowLineNum;
|
|
LineNumberArea *mLineNumberArea;
|
|
QFont mDefaultFont;
|
|
QFont mMonoFont;
|
|
|
|
protected:
|
|
|
|
bool event (QEvent *event);
|
|
|
|
public:
|
|
|
|
ScriptEdit (const CSMDoc::Document& document, ScriptHighlighter::Mode mode,
|
|
QWidget* parent);
|
|
|
|
/// Should changes to the data be ignored (i.e. not cause updated)?
|
|
///
|
|
/// \note This mechanism is used to avoid infinite update recursions
|
|
bool isChangeLocked() const;
|
|
|
|
void lineNumberAreaPaintEvent(QPaintEvent *event);
|
|
int lineNumberAreaWidth();
|
|
void showLineNum(bool show);
|
|
void setMonoFont(bool show);
|
|
|
|
protected:
|
|
|
|
virtual void resizeEvent(QResizeEvent *e);
|
|
|
|
private:
|
|
QVector<CSMWorld::UniversalId::Type> mAllowedTypes;
|
|
const CSMDoc::Document& mDocument;
|
|
const QRegExp mWhiteListQoutes;
|
|
|
|
void dragEnterEvent (QDragEnterEvent* event);
|
|
|
|
void dropEvent (QDropEvent* event);
|
|
|
|
void dragMoveEvent (QDragMoveEvent* event);
|
|
|
|
bool stringNeedsQuote(const std::string& id) const;
|
|
|
|
private slots:
|
|
|
|
void idListChanged();
|
|
|
|
void updateHighlighting();
|
|
|
|
void updateLineNumberAreaWidth(int newBlockCount);
|
|
void updateLineNumberArea(const QRect &, int);
|
|
};
|
|
|
|
class LineNumberArea : public QWidget
|
|
{
|
|
ScriptEdit *mScriptEdit;
|
|
|
|
public:
|
|
|
|
LineNumberArea(ScriptEdit *editor);
|
|
QSize sizeHint() const;
|
|
|
|
protected:
|
|
|
|
void paintEvent(QPaintEvent *event);
|
|
};
|
|
}
|
|
#endif // SCRIPTEDIT_H
|