diff include/gui/widgets/elided_label.h @ 348:6b0768158dcd

text: redesign almost every widget i.e. Paragraph is now a QLabel, etc etc, some things will probably break, idc
author Paper <paper@paper.us.eu.org>
date Tue, 25 Jun 2024 11:19:54 -0400
parents 3ec7804abf17
children
line wrap: on
line diff
--- a/include/gui/widgets/elided_label.h	Sun Jun 23 10:32:09 2024 -0400
+++ b/include/gui/widgets/elided_label.h	Tue Jun 25 11:19:54 2024 -0400
@@ -7,15 +7,4 @@
 class QPaintEvent;
 class QWidget;
 
-class ElidedLabel : public QFrame {
-public:
-	ElidedLabel(const QString& text, QWidget* parent = nullptr);
-	void SetText(const QString& text);
-
-protected:
-	QString content;
-
-	void paintEvent(QPaintEvent* event) override;
-};
-
 #endif // MINORI_GUI_WIDGETS_ELIDED_LABEL_H_