fixing BR #297 and #309 improved default aliases
[quassel.git] / src / qtui / chatviewsearchcontroller.h
1 /***************************************************************************
2  *   Copyright (C) 2005-08 by the Quassel Project                          *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #ifndef CHATVIEWSEARCHCONTROLLER_H
22 #define CHATVIEWSEARCHCONTROLLER_H
23
24 #include <QObject>
25 #include <QHash>
26 #include <QPointer>
27 #include <QString>
28 #include <QTimeLine>
29
30 #include "message.h"
31
32 class QGraphicsItem;
33 class ChatLine;
34 class ChatScene;
35 class SearchHighlightItem;
36
37 class ChatViewSearchController : public QObject {
38   Q_OBJECT
39
40 public:
41   ChatViewSearchController(QObject *parent = 0);
42
43   inline const QString &searchString() const { return _searchString; }
44
45   void setScene(ChatScene *scene);
46
47 public slots:
48   void setSearchString(const QString &searchString);
49   void setCaseSensitive(bool caseSensitive);
50   void setSearchSenders(bool searchSenders);
51   void setSearchMsgs(bool searchMsgs);
52   void setSearchOnlyRegularMsgs(bool searchOnlyRegularMsgs);
53
54   void highlightNext();
55   void highlightPrev();
56
57 private slots:
58   void sceneDestroyed();
59   void updateHighlights(bool reuse = false);
60
61 signals:
62   void newCurrentHighlight(QGraphicsItem *highlightItem);
63
64 private:
65   QString _searchString;
66   ChatScene *_scene;
67   QList<SearchHighlightItem *> _highlightItems;
68   int _currentHighlight;
69
70   bool _caseSensitive;
71   bool _searchSenders;
72   bool _searchMsgs;
73   bool _searchOnlyRegularMsgs;
74
75   inline Qt::CaseSensitivity caseSensitive() const { return _caseSensitive ? Qt::CaseSensitive : Qt::CaseInsensitive; }
76
77   inline bool checkType(Message::Type type) const { return type & (Message::Plain | Message::Notice | Message::Action); }
78   void highlightLine(ChatLine *line);
79 };
80
81
82 // Highlight Items
83 #include <QGraphicsItem>
84
85 class SearchHighlightItem : public QObject, public QGraphicsItem {
86   Q_OBJECT
87
88 public:
89   SearchHighlightItem(QRectF wordRect, QGraphicsItem *parent = 0);
90   inline virtual QRectF boundingRect() const { return _boundingRect; }
91   virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0);
92   void setHighlighted(bool highlighted);
93
94 private slots:
95   void updateHighlight(qreal value);
96
97 private:
98   QRectF _boundingRect;
99   bool _highlighted;
100   qreal _alpha;
101   QTimeLine _timeLine;
102 };
103
104 #endif //CHATVIEWSEARCHCONTROLLER_H