blob: 50b53f26ee2abde89da50af2b3ee31b5c6b24f77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#pragma once
#include "Swift/Controllers/UIInterfaces/XMLConsoleWidget.h"
#include "QtTabbable.h"
namespace Swift {
class QtXMLConsoleWidget : public QtTabbable, public XMLConsoleWidget {
Q_OBJECT
public:
QtXMLConsoleWidget();
void show();
void activate();
protected slots:
void closeEvent(QCloseEvent* event);
protected:
void showEvent(QShowEvent* event);
};
}
|