X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fchatviewsearchcontroller.h;h=8e9c8d67f265c034fdb1c2480b39628922d0ead0;hp=b85d355148124c0603446ed1cd02711d62cf7627;hb=158443f71d48215eea8b47b836b61afd77654b78;hpb=ab7ef4d24f62b5848b628482b7762ebfc0b53e1a diff --git a/src/qtui/chatviewsearchcontroller.h b/src/qtui/chatviewsearchcontroller.h index b85d3551..8e9c8d67 100644 --- a/src/qtui/chatviewsearchcontroller.h +++ b/src/qtui/chatviewsearchcontroller.h @@ -39,7 +39,7 @@ class ChatViewSearchController : public QObject Q_OBJECT public: - ChatViewSearchController(QObject *parent = 0); + ChatViewSearchController(QObject *parent = nullptr); inline const QString &searchString() const { return _searchString; } @@ -67,14 +67,14 @@ signals: private: QString _searchString; - ChatScene *_scene; + ChatScene *_scene{nullptr}; QList _highlightItems; - int _currentHighlight; + int _currentHighlight{0}; - bool _caseSensitive; - bool _searchSenders; - bool _searchMsgs; - bool _searchOnlyRegularMsgs; + bool _caseSensitive{false}; + bool _searchSenders{false}; + bool _searchMsgs{true}; + bool _searchOnlyRegularMsgs{true}; inline Qt::CaseSensitivity caseSensitive() const { return _caseSensitive ? Qt::CaseSensitive : Qt::CaseInsensitive; } @@ -93,12 +93,12 @@ class SearchHighlightItem : public QObject, public QGraphicsItem Q_INTERFACES(QGraphicsItem) public: - SearchHighlightItem(QRectF wordRect, QGraphicsItem *parent = 0); - virtual inline QRectF boundingRect() const { return _boundingRect; } + SearchHighlightItem(QRectF wordRect, QGraphicsItem *parent = nullptr); + inline QRectF boundingRect() const override { return _boundingRect; } void updateGeometry(qreal width, qreal height); - virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0); + void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = nullptr) override; enum { Type = ChatScene::SearchHighlightType }; - virtual inline int type() const { return Type; } + inline int type() const override { return Type; } void setHighlighted(bool highlighted);