1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
#pragma once
#include <QWidget>
#include <QPlainTextEdit>
struct Script;
class ScriptEditor;
class ScriptFrame : public QWidget
{
public:
ScriptFrame(Script* script, QWidget* parent=NULL);
/*
* Override paint event so that we can style the widget with CSS.
*/
void paintEvent(QPaintEvent* event) override;
/*
* On resize event, adjust the box sizes for output and errors.
*/
void resizeEvent(QResizeEvent* event) override;
/*
* Returns the editor object
*/
ScriptEditor* getEditor() const { return editor; }
/*
* Fills the output pane and resizes all three panes
*/
void setOutput(QString out);
/*
* Fills the error pane and resizes all three panes
*/
void setError(QString err);
protected:
void resizePanes();
ScriptEditor* editor;
QPlainTextEdit* output;
QPlainTextEdit* error;
};
|