Refactoring the GUI. Work in progress.
[quassel.git] / gui / buffer.h
index 5df19aa..944b07c 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005/06 by The Quassel Team                             *
+ *   Copyright (C) 2005-07 by The Quassel Team                             *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
 #include <QtCore>
 #include <QtGui>
 
-#include "ui_bufferwidget.h"
-
+#include "chatwidget.h"
 #include "global.h"
 #include "message.h"
 
+class ChatWidget;
+class ChatLine;
+class ChatWidgetContents;
 class BufferWidget;
+struct BufferState;
 
+//!\brief Encapsulates the contents of a single channel, query or server status context.
+/** A Buffer maintains a list of existing nicks and their status. New messages can be appended using
+ * displayMsg(). A buffer displays its contents by way of a BufferWidget, which can be shown
+ * (and created on demand) by calling showWidget().
+ */
 class Buffer : public QObject {
   Q_OBJECT
 
   public:
-    Buffer(QString network, QString buffer);
+    //Buffer(QString network, QString buffer);
+    Buffer(BufferId);
     ~Buffer();
-
+    static void init();
+
+    enum Type { ServerBuffer, ChannelBuffer, QueryBuffer };
+
+    enum Activity {
+      NoActivity = 0x00,
+      OtherActivity = 0x01,
+      NewMessage = 0x02,
+      Highlight = 0x40
+    };
+    Q_DECLARE_FLAGS(ActivityLevel, Activity)
+    
+    Type bufferType() { return type; }
     bool isActive() { return active; }
-  public:
-    QWidget *getWidget();
+
+    QString networkName() { return _networkName; }
+    QString bufferName() { return _bufferName; }
+    QString displayName();
+    BufferId bufferId() { return id; }
+    QList<ChatLine *> contents() { return lines; }
+    VarMap nickList() { return nicks; }
+    QString topic() { return _topic; }
+    QString ownNick() { return _ownNick; }
+    bool isStatusBuffer() { return bufferType() == ServerBuffer; }
 
   signals:
-    void userInput(QString, QString, QString);
-    void nickListChanged(QStringList);
+    void userInput(BufferId, QString);
+    //void msgDisplayed(Message);
+    void chatLineAppended(ChatLine *);
+    void chatLinePrepended(ChatLine *);
+    void nickListChanged(VarMap nicks);
+    void topicSet(QString topic);
+    void ownNickSet(QString ownNick);
+    void bufferUpdated(Buffer *);
+    void bufferDestroyed(Buffer *);
 
   public slots:
     void setActive(bool active = true);
-    void displayMsg(Message);
+    //void displayMsg(Message);
+    //void prependMessages(QList<Message>); // for backlog
+    void appendChatLine(ChatLine *);
+    void prependChatLine(ChatLine *);
+    //void prependChatLines(QList<ChatLine *>);
     //void recvStatusMsg(QString msg);
     void setTopic(QString);
     //void setNicks(QStringList);
@@ -58,61 +98,23 @@ class Buffer : public QObject {
     void updateNick(QString nick, VarMap props);
     void setOwnNick(QString nick);
 
-    QWidget * showWidget(QWidget *parent = 0);
-    void hideWidget();
-
-    void scrollToEnd();
-
-  private slots:
-    void userInput(QString);
+    void processUserInput(QString);
 
   private:
+    BufferId id;
     bool active;
-    BufferWidget *widget;
-    VarMap nicks;
-    QString topic;
-    QString ownNick;
-    QString networkName, bufferName;
-
-    QList<Message> contents;
-};
-
-class BufferWidget : public QWidget {
-  Q_OBJECT
+    Type type;
 
-  public:
-    BufferWidget(QString netname, QString bufname, bool active, QString ownNick, QList<Message> contents, QWidget *parent = 0);
-
-    void setActive(bool act = true);
-  signals:
-    void userInput(QString);
-
-  public slots:
-    void displayMsg(Message);
-    void updateNickList(VarMap nicks);
-    void setOwnNick(QString ownNick);
-    void setTopic(QString topic);
-    void renderContents();
-    void scrollToEnd();
-
-  private slots:
-    void enterPressed();
-    void itemExpansionChanged(QTreeWidgetItem *);
-    void updateTitle();
-
-  private:
-    Ui::BufferWidget ui;
-    bool active;
-    QList<Message> contents;
-
-    QString stdCol, errorCol, noticeCol, joinCol, quitCol, partCol, kickCol, serverCol, nickCol, inactiveCol;
-    QString CSS;
-    QString networkName;
-    QString bufferName;
+    VarMap nicks;
+    QString _topic;
+    QString _ownNick;
+    QString _networkName, _bufferName;
+    BufferState *state;
 
-    bool opsExpanded, voicedExpanded, usersExpanded;
+    //QList<Message> _contents;
+    QList<ChatLine *> lines;
 
-    QString htmlFromMsg(Message);
 };
+Q_DECLARE_OPERATORS_FOR_FLAGS(Buffer::ActivityLevel)    
 
 #endif