quill/textwidget.h
Nicolas Mailloux 9428483d02 Add QTextBrowser widget and dialog
Some things, such as UIDs, just couldn't display normally and we need
such a browser for them.
I'll work on implementing as the main engine for the Reader framework.
2021-06-08 07:49:52 -04:00

22 lines
289 B
C++

#ifndef TEXTWIDGET_H
#define TEXTWIDGET_H
#include <QWidget>
namespace Ui {
class textwidget;
}
class textwidget : public QWidget
{
Q_OBJECT
public:
explicit textwidget(QWidget *parent = nullptr);
~textwidget();
private:
Ui::textwidget *ui;
};
#endif // TEXTWIDGET_H