view include/gui/widgets/text.h @ 187:9613d72b097e

*: multiple performance improvements like marking `static const` when it makes sense... date: change old stupid heap-based method to a structure which should make copying the thing actually make a copy. also many performance-based changes, like removing the std::tie dependency and forward-declaring nlohmann json *: replace every instance of QString::fromUtf8 to Strings::ToQString. the main difference is that our function will always convert exactly what is in the string, while some other times it would only convert up to the nearest NUL byte
author Paper <mrpapersonic@gmail.com>
date Wed, 06 Dec 2023 13:43:54 -0500
parents 8043152ef9d4
children b3549da699a6
line wrap: on
line source

#ifndef __gui__ui_utils_h
#define __gui__ui_utils_h

#include <QLineEdit>
#include <QPlainTextEdit>
#include <QSize>
#include <QString>
#include <QWidget>

class QFrame;
class QLabel;

namespace TextWidgets {

class Header : public QWidget {
		Q_OBJECT

	public:
		Header(const QString& title, QWidget* parent = nullptr);
		void SetText(const QString& title);

	private:
		QLabel* static_text_title;
		QFrame* static_text_line;
};

class Paragraph : public QPlainTextEdit {
		Q_OBJECT

	public:
		Paragraph(const QString& text, QWidget* parent = nullptr);
		void SetText(const QString& text);
		QSize minimumSizeHint() const override;
		QSize sizeHint() const override;
};

class Line : public QLineEdit {
		Q_OBJECT

	public:
		Line(QWidget* parent = nullptr);
		Line(const QString& text, QWidget* parent = nullptr);
		void SetText(const QString& text);
};

class Title final : public Line {
		Q_OBJECT

	public:
		Title(const QString& title, QWidget* parent = nullptr);
};

class Section final : public QWidget {
		Q_OBJECT

	public:
		Section(const QString& title, const QString& data, QWidget* parent = nullptr);
		Header* GetHeader();
		Paragraph* GetParagraph();

	private:
		Header* header;
		Paragraph* paragraph;
};

class LabelledSection final : public QWidget {
		Q_OBJECT

	public:
		LabelledSection(const QString& title, const QString& label, const QString& data, QWidget* parent = nullptr);
		Header* GetHeader();
		Paragraph* GetLabels();
		Paragraph* GetParagraph();

	private:
		Header* header;
		Paragraph* labels;
		Paragraph* paragraph;
};

class SelectableSection final : public QWidget {
		Q_OBJECT

	public:
		SelectableSection(const QString& title, const QString& data, QWidget* parent = nullptr);
		Header* GetHeader();
		Paragraph* GetParagraph();

	private:
		Header* header;
		Paragraph* paragraph;
};

class OneLineSection final : public QWidget {
		Q_OBJECT

	public:
		OneLineSection(const QString& title, const QString& data, QWidget* parent = nullptr);
		Header* GetHeader();
		Line* GetLine();

	private:
		Header* header;
		Line* line;
};

} // namespace TextWidgets

#endif // __gui__ui_utils_h