1/***************************************************************************
2 * Copyright (C) 2005-2014 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 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
19 ***************************************************************************/
20
21#ifndef BUFFERWIDGET_H_
22#define BUFFERWIDGET_H_
23
24#include "ui_bufferwidget.h"
25
26#include "abstractbuffercontainer.h"
27
28class QGraphicsItem;
29class ChatView;
30class ChatViewSearchBar;
31class ChatViewSearchController;
32
33class BufferWidget : public AbstractBufferContainer
34{
35 Q_OBJECT
36
37public:
38 BufferWidget(QWidget *parent);
39 ~BufferWidget();
40
41 virtual bool eventFilter(QObject *watched, QEvent *event);
42
43 inline ChatViewSearchBar *searchBar() const { return ui.searchBar; }
44 void addActionsToMenu(QMenu *, const QPointF &pos);
45 virtual inline bool autoMarkerLineOnLostFocus() const { return _autoMarkerLineOnLostFocus; }
46
47public slots:
48 virtual void setMarkerLine(ChatView *view = 0, bool allowGoingBack = true);
49 virtual void jumpToMarkerLine(ChatView *view = 0, bool requestBacklog = true);
50
51protected:
52 virtual AbstractChatView *createChatView(BufferId);
53 virtual void removeChatView(BufferId);
54 virtual inline bool autoMarkerLine() const { return _autoMarkerLine; }
55
56protected slots:
57 virtual void currentChanged(const QModelIndex &current, const QModelIndex &previous);
58 virtual void showChatView(BufferId);
59
60private slots:
61 void scrollToHighlight(QGraphicsItem *highlightItem);
62 void zoomIn();
63 void zoomOut();
64 void zoomOriginal();
65
66 void setAutoMarkerLine(const QVariant &);
67 void setAutoMarkerLineOnLostFocus(const QVariant &);
68
69private:
70 Ui::BufferWidget ui;
71 QHash<BufferId, QWidget *> _chatViews;
72
73 ChatViewSearchController *_chatViewSearchController;
74
75 bool _autoMarkerLine;
76 bool _autoMarkerLineOnLostFocus;
77};
78
79
80#endif
81