Mercurial > minori
view include/gui/widgets/text.h @ 65:26721c28bf22
*: avoid usage of (to|from)StdString
in Qt5 (and probably Qt6 as well) these functions are only
available (or even usable) if Qt and Minori were built with the
*same standard headers*, which may not be the case in some
circumstances. hence, we'll use our own conversion functions,
which we probably should use anyway.
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Sun, 01 Oct 2023 23:26:35 -0400 |
parents | fe719c109dbc |
children | 27a19dd6cba1 |
line wrap: on
line source
#ifndef __gui__ui_utils_h #define __gui__ui_utils_h #include <QFrame> #include <QLabel> #include <QPlainTextEdit> #include <QSize> #include <QString> #include <QWidget> namespace TextWidgets { class Header : public QWidget { Q_OBJECT public: Header(QString title, QWidget* parent = nullptr); void SetText(QString title); private: QLabel* static_text_title; QFrame* static_text_line; }; class Paragraph : public QPlainTextEdit { Q_OBJECT public: Paragraph(QString text, QWidget* parent = nullptr); void SetText(QString text); QSize minimumSizeHint() const override; QSize sizeHint() const override; }; /* technically a paragraph and a heading is actually a "section", but that name is equally as confusing as "text paragraph". */ class TextParagraph : public QWidget { Q_OBJECT public: TextParagraph(QString title, QString data, QWidget* parent = nullptr); Header* GetHeader(); Paragraph* GetParagraph(); private: Header* header; Paragraph* paragraph; }; class LabelledTextParagraph : public QWidget { Q_OBJECT public: LabelledTextParagraph(QString title, QString label, QString data, QWidget* parent = nullptr); Header* GetHeader(); Paragraph* GetLabels(); Paragraph* GetParagraph(); private: Header* header; Paragraph* labels; Paragraph* paragraph; }; class SelectableTextParagraph : public QWidget { Q_OBJECT public: SelectableTextParagraph(QString title, QString data, QWidget* parent = nullptr); Header* GetHeader(); Paragraph* GetParagraph(); private: Header* header; Paragraph* paragraph; }; class Title : public Paragraph { Q_OBJECT public: Title(QString title, QWidget* parent = nullptr); }; } // namespace TextWidgets #endif // __gui__ui_utils_h