fix: elide user notes (#6318)

This commit is contained in:
pajlada
2025-07-12 13:20:05 +02:00
committed by GitHub
parent fba845f978
commit 49aa83244c
5 changed files with 130 additions and 38 deletions
+29 -5
View File
@@ -5,6 +5,8 @@
#include <pajlada/signals/signalholder.hpp>
class QFontMetricsF;
namespace chatterino {
class Label : public BaseWidget
@@ -24,29 +26,51 @@ public:
bool getCentered() const;
void setCentered(bool centered);
bool getHasOffset() const;
void setHasOffset(bool hasOffset);
/// Enable or disable horizontal padding
void setHasPadding(bool hasPadding);
bool getWordWrap() const;
void setWordWrap(bool wrap);
/// Sets whether the text should elide if there's not enough room to
/// render the current text.
void setShouldElide(bool shouldElide);
protected:
void scaleChangedEvent(float scale_) override;
void paintEvent(QPaintEvent *) override;
void resizeEvent(QResizeEvent *event) override;
QSize sizeHint() const override;
QSize minimumSizeHint() const override;
private:
void updateSize();
int getOffset();
/// Returns the horizontal padding, or 0 if hasPadding_ is false
int getPadding() const;
/// Returns the current font style's font metric based on the current scale.
QFontMetricsF getFontMetrics() const;
/// Returns the width of this content without padding
qreal getInnerWidth() const;
/// Calculate the new elided text based on text_
///
/// Return true if the elided text changed
bool updateElidedText(const QFontMetricsF &fontMetrics, qreal width);
QString text_;
FontStyle fontStyle_;
QSize preferedSize_;
QSize sizeHint_;
QSize minimumSizeHint_;
bool centered_ = false;
bool hasOffset_ = true;
bool hasPadding_ = true;
bool wordWrap_ = false;
bool shouldElide_ = false;
/// The text, but elided. Only set if shouldElide_ is true
QString elidedText_;
pajlada::Signals::SignalHolder connections_;
};