summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swift/QtUI/QtXMLConsoleWidget.h')
-rw-r--r--Swift/QtUI/QtXMLConsoleWidget.h22
1 files changed, 17 insertions, 5 deletions
diff --git a/Swift/QtUI/QtXMLConsoleWidget.h b/Swift/QtUI/QtXMLConsoleWidget.h
index 50b53f2..0d5a10d 100644
--- a/Swift/QtUI/QtXMLConsoleWidget.h
+++ b/Swift/QtUI/QtXMLConsoleWidget.h
@@ -3,16 +3,28 @@
#include "Swift/Controllers/UIInterfaces/XMLConsoleWidget.h"
#include "QtTabbable.h"
+class QTextEdit;
+
namespace Swift {
class QtXMLConsoleWidget : public QtTabbable, public XMLConsoleWidget {
- Q_OBJECT
+ Q_OBJECT
+
public:
QtXMLConsoleWidget();
+
void show();
void activate();
- protected slots:
- void closeEvent(QCloseEvent* event);
- protected:
- void showEvent(QShowEvent* event);
+
+ virtual void handleDataRead(const String& data);
+ virtual void handleDataWritten(const String& data);
+
+ private:
+ virtual void closeEvent(QCloseEvent* event);
+ virtual void showEvent(QShowEvent* event);
+
+ void appendText(const String& data);
+
+ private:
+ QTextEdit* textEdit;
};
}