X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Fuistyle.h;h=b09dfa7cccdf4dd5a70c16319f4652b461af1ded;hp=22ade27a02ea7355617bee9e0aeddddef3faf53c;hb=8bd4f0d095891cc992ec7dd006a7bf2c6601787d;hpb=2c16b8e356817cb4a4bf7fcd59c0c7429b0100e1 diff --git a/src/uisupport/uistyle.h b/src/uisupport/uistyle.h index 22ade27a..b09dfa7c 100644 --- a/src/uisupport/uistyle.h +++ b/src/uisupport/uistyle.h @@ -32,11 +32,11 @@ #include "message.h" #include "settings.h" -class UiStyle { - Q_DECLARE_TR_FUNCTIONS(UiStyle) +class UiStyle : public QObject{ + Q_OBJECT public: - UiStyle(); + UiStyle(QObject *parent = 0); virtual ~UiStyle(); typedef QList > FormatList; @@ -93,7 +93,8 @@ public: enum MessageLabel { OwnMsg = 0x00000001, - Highlight = 0x00000002 + Highlight = 0x00000002, + Selected = 0x00000004 // must be last! }; struct StyledString { @@ -106,6 +107,7 @@ public: static FormatType formatType(Message::Type msgType); static StyledString styleString(const QString &string, quint32 baseFormat = None); static QString mircToInternal(const QString &); + static inline QString timestampFormatString() { return _timestampFormatString; } QTextCharFormat format(quint32 formatType, quint32 messageLabel = 0); QFontMetricsF *fontMetrics(quint32 formatType, quint32 messageLabel = 0); @@ -114,26 +116,31 @@ public: QList toTextLayoutList(const FormatList &, int textLength, quint32 messageLabel = 0); -protected: +public slots: void loadStyleSheet(); - //! Determines the format set to be used for the given hostmask - //int formatSetIndex(const QString &hostmask) const; - //int formatSetIndexForSelf() const; +signals: + void changed(); + +protected: + QString loadStyleSheet(const QString &name, bool shouldExist = false); QTextCharFormat cachedFormat(quint64 key) const; QTextCharFormat cachedFormat(quint32 formatType, quint32 messageLabel = 0) const; void setCachedFormat(const QTextCharFormat &format, quint32 formatType, quint32 messageLabel = 0); - void mergeSubElementFormat(QTextCharFormat &format, quint32 formatType, quint32 messageLabel = 0); + void mergeFormat(QTextCharFormat &format, quint32 formatType, quint64 messageLabel); + void mergeSubElementFormat(QTextCharFormat &format, quint32 formatType, quint64 messageLabel); static FormatType formatType(const QString &code); static QString formatCode(FormatType); + static void setTimestampFormatString(const QString &format); private: QFont _defaultFont; QHash _formatCache; QHash _metricsCache; static QHash _formatCodes; + static QString _timestampFormatString; }; class UiStyle::StyledMessage : public Message { @@ -148,13 +155,15 @@ public: inline FormatType timestampFormat() const { return UiStyle::Timestamp; } FormatType senderFormat() const; const FormatList &contentsFormatList() const; + + quint8 senderHash() const; + protected: - //! Styling is only needed for calls to plainContents() and contentsFormatList() void style() const; - private: mutable StyledString _contents; + mutable quint8 _senderHash; }; QDataStream &operator<<(QDataStream &out, const UiStyle::FormatList &formatList);