really don't..
[quassel.git] / src / uisupport / abstractbuffercontainer.h
index d727895..bf58333 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-08 by the Quassel IRC Team                         *
+ *   Copyright (C) 2005-09 by the Quassel Project                          *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
@@ -31,52 +31,52 @@ class Buffer;
 class AbstractBufferContainer : public AbstractItemView {
   Q_OBJECT
 
-  public:
-    AbstractBufferContainer(QWidget *parent);
-    virtual ~AbstractBufferContainer();
-
-    inline BufferId currentBuffer() const { return _currentBuffer; }
-
-  protected:
-    //! Create an AbstractChatView for the given BufferId and add it to the UI if necessary
-    virtual AbstractChatView *createChatView(BufferId) = 0;
-
-    //! Remove a chat view from the UI and delete it
-    /** This method shall remove the view from the UI (for example, from a QStackedWidget) if appropriate.
-     *  It also shall delete the object afterwards.
-     * \param view The chat view to be removed and deleted
-     */
-    virtual void removeChatView(AbstractChatView *view) = 0;
-
-  protected slots:
-    virtual void currentChanged(const QModelIndex &current, const QModelIndex &previous);
-    virtual void rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end);
-
-    //! Show the given chat view
-    /** This method is called when the given chat view should be displayed. Use this e.g. for
-     *  selecting the appropriate page in a QStackedWidget.
-     * \param view The chat view to be displayed. May be 0 if no chat view is selected.
-     */
-    virtual void showChatView(AbstractChatView *view) = 0;
-
-  private slots:
-    void appendMsg(AbstractUiMsg *);
-    void prependMsg(AbstractUiMsg *);
-    void removeBuffer(BufferId bufferId);
-    void setCurrentBuffer(BufferId bufferId);
-
-  private:
-    BufferId _currentBuffer;
-    QHash<BufferId, AbstractChatView *> _chatViews;
+public:
+  AbstractBufferContainer(QWidget *parent);
+  virtual ~AbstractBufferContainer();
+
+  inline BufferId currentBuffer() const { return _currentBuffer; }
+
+signals:
+  void currentChanged(BufferId);
+  void currentChanged(const QModelIndex &);
+
+protected:
+  //! Create an AbstractChatView for the given BufferId and add it to the UI if necessary
+  virtual AbstractChatView *createChatView(BufferId) = 0;
+
+  //! Remove a chat view from the UI and delete it
+  /** This method shall remove the view from the UI (for example, from a QStackedWidget) if appropriate.
+   *  It also shall delete the object afterwards.
+   * \param view The chat view to be removed and deleted
+   */
+  virtual void removeChatView(BufferId) = 0;
+
+protected slots:
+  virtual void currentChanged(const QModelIndex &current, const QModelIndex &previous);
+  virtual void rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end);
+
+  //! Show the given chat view
+  /** This method is called when the given chat view should be displayed. Use this e.g. for
+   *  selecting the appropriate page in a QStackedWidget.
+   * \param view The chat view to be displayed. May be 0 if no chat view is selected.
+   */
+  virtual void showChatView(BufferId) = 0;
+
+private slots:
+  void removeBuffer(BufferId bufferId);
+  void setCurrentBuffer(BufferId bufferId);
+
+private:
+  BufferId _currentBuffer;
+  QHash<BufferId, AbstractChatView *> _chatViews;
 };
 
 class AbstractChatView {
 
-  public:
-    virtual void appendMsg(AbstractUiMsg *msg) = 0;
-    virtual void prependMsg(AbstractUiMsg *msg) = 0;
-    virtual void setContents(const QList<AbstractUiMsg *> &contents) = 0;
-
+public:
+  virtual ~AbstractChatView() {};
+  virtual MsgId lastMsgId() const = 0;
 };
 
 #endif