File: script_window.h

package info (click to toggle)
antimony 0.9.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,476 kB
  • sloc: cpp: 42,596; ansic: 28,661; python: 1,093; yacc: 128; lex: 114; sh: 90; makefile: 10
file content (26 lines) | stat: -rw-r--r-- 436 bytes parent folder | download | duplicates (3)
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
#pragma once

#include "window/base.h"

struct Script;
class ScriptFrame;
struct ScriptState;

class ScriptWindow : public BaseWindow
{
Q_OBJECT

public:
    ScriptWindow(Script* script);

    void setText(QString text);
    void highlightError(int lineno);
    void setOutput(QString text);
    void setError(QString text);

public slots:
    void onStateChanged(const ScriptState& state);

protected:
    ScriptFrame* const frame;
};