properly rewind oidentd config file
[quassel.git] / src / uisupport / abstractbuffercontainer.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2010 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 ABSTRACTBUFFERCONTAINER_H_
22 #define ABSTRACTBUFFERCONTAINER_H_
23
24 #include "abstractitemview.h"
25 #include "buffermodel.h"
26
27 class AbstractChatView;
28 class AbstractUiMsg;
29 class Buffer;
30
31 class AbstractBufferContainer : public AbstractItemView {
32   Q_OBJECT
33
34 public:
35   AbstractBufferContainer(QWidget *parent);
36   virtual ~AbstractBufferContainer();
37
38   inline BufferId currentBuffer() const { return _currentBuffer; }
39
40 signals:
41   void currentChanged(BufferId);
42   void currentChanged(const QModelIndex &);
43
44 protected:
45   //! Create an AbstractChatView for the given BufferId and add it to the UI if necessary
46   virtual AbstractChatView *createChatView(BufferId) = 0;
47
48   //! Remove a chat view from the UI and delete it
49   /** This method shall remove the view from the UI (for example, from a QStackedWidget) if appropriate.
50    *  It also shall delete the object afterwards.
51    * \param view The chat view to be removed and deleted
52    */
53   virtual void removeChatView(BufferId) = 0;
54
55   //! If true, the marker line will be set automatically on buffer switch
56   /** \return Whether the marker line should be set on buffer switch
57    */
58   virtual inline bool autoMarkerLine() const { return true; }
59
60 protected slots:
61   virtual void currentChanged(const QModelIndex &current, const QModelIndex &previous);
62   virtual void rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end);
63
64   //! Show the given chat view
65   /** This method is called when the given chat view should be displayed. Use this e.g. for
66    *  selecting the appropriate page in a QStackedWidget.
67    * \param view The chat view to be displayed. May be 0 if no chat view is selected.
68    */
69   virtual void showChatView(BufferId) = 0;
70
71 private slots:
72   void removeBuffer(BufferId bufferId);
73   void setCurrentBuffer(BufferId bufferId);
74
75 private:
76   BufferId _currentBuffer;
77   QHash<BufferId, AbstractChatView *> _chatViews;
78 };
79
80 class AbstractChatView {
81
82 public:
83   virtual ~AbstractChatView() {};
84   virtual MsgId lastMsgId() const = 0;
85 };
86
87 #endif