mirror of
https://github.com/KDE/konsole.git
synced 2026-05-06 21:53:55 -04:00
20 lines
278 B
C++
20 lines
278 B
C++
#ifndef KWRITED_H
|
|
#define KWRITED_H
|
|
|
|
#include <TEPty.h>
|
|
#include <qmultilineedit.h>
|
|
|
|
class KWrited : public QObject
|
|
{ Q_OBJECT
|
|
public:
|
|
KWrited();
|
|
~KWrited();
|
|
private slots:
|
|
void block_in(const char* bytes, int len);
|
|
private:
|
|
QMultiLineEdit* wid;
|
|
TEPty* pty;
|
|
};
|
|
|
|
#endif
|