Move codeeditor to folder
This commit is contained in:
parent
91ac77a058
commit
d266882927
5 changed files with 4 additions and 4 deletions
28
pglab/codeeditor/EditorGutter.h
Normal file
28
pglab/codeeditor/EditorGutter.h
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
#ifndef EDITORGUTTER_H
|
||||
#define EDITORGUTTER_H
|
||||
|
||||
#include <QWidget>
|
||||
//#include <QPlainTextEdit>
|
||||
|
||||
class CodeEditor;
|
||||
|
||||
class EditorGutter : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit EditorGutter(CodeEditor *editor);
|
||||
|
||||
QSize sizeHint() const override;
|
||||
|
||||
protected:
|
||||
|
||||
void paintEvent(QPaintEvent *event) override;
|
||||
|
||||
private:
|
||||
CodeEditor *codeEditor;
|
||||
signals:
|
||||
|
||||
public slots:
|
||||
};
|
||||
|
||||
#endif // EDITORGUTTER_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue