mirror of
https://github.com/KDE/konsole.git
synced 2025-12-23 23:38:08 -05:00
27 lines
631 B
C++
27 lines
631 B
C++
#ifndef TERMINAL_WIDGET_H
|
|
#define TERMINAL_WIDGET_H
|
|
|
|
#include <QWidget>
|
|
|
|
namespace Konsole {
|
|
class TerminalHeaderBar;
|
|
class TerminalDisplay;
|
|
class Session;
|
|
|
|
class TerminalWidget : public QWidget {
|
|
Q_OBJECT
|
|
public:
|
|
TerminalWidget(uint randomSeed, QWidget *parent = nullptr);
|
|
TerminalHeaderBar *headerBar() const;
|
|
TerminalDisplay *terminalDisplay() const;
|
|
|
|
// Hack untill I can detangle the setup of the TerminalViews.
|
|
void finishTerminalSetup();
|
|
private:
|
|
TerminalHeaderBar *m_headerBar;
|
|
TerminalDisplay *m_terminalDisplay;
|
|
};
|
|
}
|
|
|
|
#endif
|