Features come and features go...
[quassel.git] / src / client / buffer.cpp
index f5328d4..10f395c 100644 (file)
 #include "buffer.h"
 
 #include "client.h"
-#include "ircchannel.h"
-#include "nickmodel.h"
 #include "util.h"
 
 
 Buffer::Buffer(BufferInfo bufferid, QObject *parent)
   : QObject(parent),
-    _bufferInfo(bufferid),
-    _active(false),
-    _ircChannel(0), _nickModel(0)
+    _bufferInfo(bufferid)
 {
-  if(bufferid.buffer().isEmpty())
-    _type = StatusType;
-  else if(isChannelName(bufferid.buffer()))
-    _type = ChannelType;
-  else
-    _type = QueryType;
-
-  _nickModel = new NickModel(0, this);
-/*
-  QSettings s;
-  s.beginGroup(QString("GUI/BufferStates/%1/%2").arg(netname).arg(bufname));
-  state->splitterState = s.value("Splitter").toByteArray();
-  s.endGroup();
-  */
-  emit bufferUpdated(this);
-}
-
-Buffer::~Buffer() {
-  //delete widget;
-  /*
-  QSettings s;
-  s.beginGroup(QString("GUI/BufferStates/%1/%2").arg(networkName).arg(bufferName));
-  s.setValue("Splitter", state->splitterState);
-  s.endGroup();
-*/
-  //delete state;
-}
-
-Buffer::Type Buffer::bufferType() const {
-  return _type;
-}
-
-bool Buffer::isActive() const {
-  // FIXME determine status by checking for a network objekt
-  return true;
 }
 
 BufferInfo Buffer::bufferInfo() const {
-   return _bufferInfo;
-}
-
-void Buffer::updateBufferInfo(BufferInfo bufferid) {
-  _bufferInfo = bufferid;
-}
-
-uint Buffer::uid() const {
-  return bufferInfo().uid();
-}
-
-uint Buffer::networkId() const {
-  return bufferInfo().networkId();
-}
-
-QString Buffer::networkName() const {
-  return bufferInfo().network();
-}
-
-QString Buffer::name() const {
-  if(bufferType() == StatusType)
-    return tr("Status Buffer");
-  else
-    return bufferInfo().buffer();
+  // still needed to process user input... *sigh*
+  // ... and for the gui *sigh* to request the backlogs *sigh*
+  return _bufferInfo;
 }
 
 QList<AbstractUiMsg *> Buffer::contents() const {
   return layoutedMsgs;
 }
 
-QVariantMap Buffer::nickList() const {
-  // FIXME should return a Map or List of IrcUsers in the future
-  return QVariantMap();
-}
-
-QString Buffer::topic() const {
-  if(ircChannel()) return ircChannel()->topic();
-  return QString();
-}
-
-QString Buffer::ownNick() const {
-  // FIXME if(ircChannel()) return ircChannel()->ownNick();
-  return QString();
-}
-
-bool Buffer::isStatusBuffer() const {
-   return bufferType() == StatusType;
-}
-
-void Buffer::setActive(bool a) {
-//   if(a != active) {
-//     active = a;
-//     emit bufferUpdated(this);
-//  }
-}
-
 void Buffer::appendMsg(const Message &msg) {
   AbstractUiMsg *m = Client::layoutMsg(msg);
   layoutedMsgs.append(m);
@@ -151,54 +65,3 @@ void Buffer::processUserInput(QString msg) {
   emit userInput(_bufferInfo, msg);
 }
 
-NickModel *Buffer::nickModel() const {
-  return _nickModel;
-}
-
-IrcChannel *Buffer::ircChannel() const {
-  return _ircChannel;
-}
-
-void Buffer::setIrcChannel(IrcChannel *ircchan) {
-  if(_ircChannel) {
-    disconnect(_ircChannel, 0, this, 0);
-  }
-  _ircChannel = ircchan;
-  if(_ircChannel) {
-    emit topicSet(_ircChannel->topic());
-    connect(_ircChannel, SIGNAL(topicSet(QString)), this, SIGNAL(topicSet(QString)));
-    connect(_ircChannel, SIGNAL(destroyed()), this, SLOT(setIrcChannel()));
-  }
-  _nickModel->setIrcChannel(ircChannel());
-}
-
-// no longer needed
-// back reference:
-
-// void Buffer::addNick(QString nick, QVariantMap props) {
-//   if(nick == ownNick()) setActive(true);
-//   nicks[nick] = props;
-//   emit nickListChanged(nicks);
-// }
-
-// void Buffer::updateNick(QString nick, QVariantMap props) {
-//   nicks[nick] = props;
-//   emit nickListChanged(nicks);
-// }
-
-// void Buffer::renameNick(QString oldnick, QString newnick) {
-//   QVariant v = nicks.take(oldnick);
-//   nicks[newnick] = v;
-//   emit nickListChanged(nicks);
-// }
-
-// void Buffer::removeNick(QString nick) {
-//   if(nick == ownNick()) setActive(false);
-//   nicks.remove(nick);
-//   emit nickListChanged(nicks);
-// }
-
-// void Buffer::setOwnNick(QString nick) {
-//   _ownNick = nick;
-//   emit ownNickSet(nick);
-// }