2022-04-06 16:01:47 +00:00
|
|
|
#ifndef DRUKBOX_H
|
|
|
|
#define DRUKBOX_H
|
|
|
|
|
|
|
|
#include "afdrukker.h"
|
|
|
|
//#include <QMainWindow>
|
2022-04-06 17:17:51 +00:00
|
|
|
#include <QTextBrowser>
|
|
|
|
//class QTextBrowser;
|
2022-04-06 16:01:47 +00:00
|
|
|
|
|
|
|
class Drukbox : public Afdrukker{
|
2022-04-06 17:17:51 +00:00
|
|
|
private:
|
|
|
|
QTextBrowser *browser;
|
2022-04-06 16:01:47 +00:00
|
|
|
public:
|
2022-04-06 17:17:51 +00:00
|
|
|
Drukbox(QTextBrowser*);
|
2022-04-06 16:01:47 +00:00
|
|
|
virtual void toonText(std::string);
|
|
|
|
virtual void clearMedium();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // DRUKBOX_H
|