6d8dc2d9bdb754c6516fc5f1083c6491aabc5788
[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
29 #include "message.h"
30
31 class ChatLine;
32 class ChatScene;
33 class SearchHighlightItem;
34
35 class ChatViewSearchController : public QObject {
36   Q_OBJECT
37
38 public:
39   ChatViewSearchController(QObject *parent = 0);
40
41   inline const QString &searchString() const { return _searchString; }
42
43   void setScene(ChatScene *scene);
44
45 public slots:
46   void setSearchString(const QString &searchString);
47   void setCaseSensitive(bool caseSensitive);
48   void setSearchSenders(bool searchSenders);
49   void setSearchMsgs(bool searchMsgs);
50   void setSearchOnlyRegularMsgs(bool searchOnlyRegularMsgs);
51
52 private slots:
53   void sceneDestroyed();
54   void updateHighlights(bool reuse = false);
55
56 private:
57   QString _searchString;
58   ChatScene *_scene;
59   QList<SearchHighlightItem *> _highlightItems;
60
61   bool _caseSensitive;
62   bool _searchSenders;
63   bool _searchMsgs;
64   bool _searchOnlyRegularMsgs;
65
66   inline Qt::CaseSensitivity caseSensitive() const { return _caseSensitive ? Qt::CaseSensitive : Qt::CaseInsensitive; }
67
68   inline bool checkType(Message::Type type) const { return type & (Message::Plain | Message::Notice | Message::Action); }
69   void highlightLine(ChatLine *line);
70 };
71
72
73 // Highlight Items
74 #include <QGraphicsItem>
75
76 class SearchHighlightItem : public QGraphicsItem {
77 public:
78   SearchHighlightItem(QRectF wordRect, QGraphicsItem *parent = 0);
79   inline virtual QRectF boundingRect() const { return _boundingRect; }
80   virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0);
81
82 private:
83   QRectF _boundingRect;
84 };
85
86 #endif //CHATVIEWSEARCHCONTROLLER_H