Better time formatting by using an explicit format
[quassel.git] / src / uisupport / abstractbuffercontainer.cpp
index c914461..3d93702 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-2010 by the Quassel Project                        *
+ *   Copyright (C) 2005-2012 by the Quassel Project                        *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
@@ -15,7 +15,7 @@
  *   You should have received a copy of the GNU General Public License     *
  *   along with this program; if not, write to the                         *
  *   Free Software Foundation, Inc.,                                       *
- *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
+ *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
  ***************************************************************************/
 
 #include "abstractbuffercontainer.h"
 #include "networkmodel.h"
 
 AbstractBufferContainer::AbstractBufferContainer(QWidget *parent)
-  : AbstractItemView(parent),
+    : AbstractItemView(parent),
     _currentBuffer(0)
 {
 }
 
-AbstractBufferContainer::~AbstractBufferContainer() {
+
+AbstractBufferContainer::~AbstractBufferContainer()
+{
 }
 
-void AbstractBufferContainer::rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end) {
-  Q_ASSERT(model());
-  if(!parent.isValid()) {
-    // ok this means that whole networks are about to be removed
-    // we can't determine which buffers are affect, so we hope that all nets are removed
-    // this is the most common case (for example disconnecting from the core or terminating the client)
-    if(model()->rowCount(parent) != end - start + 1)
-      return;
-
-    foreach(BufferId id, _chatViews.keys()) {
-      removeChatView(id);
+
+void AbstractBufferContainer::rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end)
+{
+    Q_ASSERT(model());
+    if (!parent.isValid()) {
+        // ok this means that whole networks are about to be removed
+        // we can't determine which buffers are affect, so we hope that all nets are removed
+        // this is the most common case (for example disconnecting from the core or terminating the client)
+        if (model()->rowCount(parent) != end - start + 1)
+            return;
+
+        foreach(BufferId id, _chatViews.keys()) {
+            removeChatView(id);
+        }
+        _chatViews.clear();
     }
-    _chatViews.clear();
-  } else {
-    // check if there are explicitly buffers removed
-    for(int i = start; i <= end; i++) {
-      QVariant variant = parent.child(i,0).data(NetworkModel::BufferIdRole);
-      if(!variant.isValid())
-        continue;
-
-      BufferId bufferId = variant.value<BufferId>();
-      removeBuffer(bufferId);
+    else {
+        // check if there are explicitly buffers removed
+        for (int i = start; i <= end; i++) {
+            QVariant variant = parent.child(i, 0).data(NetworkModel::BufferIdRole);
+            if (!variant.isValid())
+                continue;
+
+            BufferId bufferId = variant.value<BufferId>();
+            removeBuffer(bufferId);
+        }
     }
-  }
 }
 
-void AbstractBufferContainer::removeBuffer(BufferId bufferId) {
-  if(!_chatViews.contains(bufferId))
-    return;
 
-  removeChatView(bufferId);
-  _chatViews.take(bufferId);
+void AbstractBufferContainer::removeBuffer(BufferId bufferId)
+{
+    if (!_chatViews.contains(bufferId))
+        return;
+
+    removeChatView(bufferId);
+    _chatViews.take(bufferId);
 }
 
+
 /*
   Switching to first buffer is now handled in MainWin::clientNetworkUpdated()
 
@@ -85,38 +93,41 @@ void AbstractBufferContainer::rowsInserted(const QModelIndex &parent, int start,
 }
 */
 
-void AbstractBufferContainer::currentChanged(const QModelIndex &current, const QModelIndex &previous) {
-  Q_UNUSED(previous)
-
-  BufferId newBufferId = current.data(NetworkModel::BufferIdRole).value<BufferId>();
-  // To be able to reset the selected buffer, we don't check if buffer/index is valid here
-  if(currentBuffer() != newBufferId) {
-    setCurrentBuffer(newBufferId);
-    emit currentChanged(newBufferId);
-    emit currentChanged(current);
-  }
+void AbstractBufferContainer::currentChanged(const QModelIndex &current, const QModelIndex &previous)
+{
+    Q_UNUSED(previous)
+
+    BufferId newBufferId = current.data(NetworkModel::BufferIdRole).value<BufferId>();
+    // To be able to reset the selected buffer, we don't check if buffer/index is valid here
+    if (currentBuffer() != newBufferId) {
+        setCurrentBuffer(newBufferId);
+        emit currentChanged(newBufferId);
+        emit currentChanged(current);
+    }
 }
 
-void AbstractBufferContainer::setCurrentBuffer(BufferId bufferId) {
-  BufferId prevBufferId = currentBuffer();
-  if(prevBufferId.isValid() && _chatViews.contains(prevBufferId)) {
-    MsgId msgId = _chatViews.value(prevBufferId)->lastMsgId();
-    Client::setBufferLastSeenMsg(prevBufferId, msgId);
-  }
 
-  if(!bufferId.isValid()) {
-    _currentBuffer = 0;
-    showChatView(0);
-    return;
-  }
+void AbstractBufferContainer::setCurrentBuffer(BufferId bufferId)
+{
+    BufferId prevBufferId = currentBuffer();
+    if (prevBufferId.isValid() && _chatViews.contains(prevBufferId)) {
+        MsgId msgId = _chatViews.value(prevBufferId)->lastMsgId();
+        Client::setBufferLastSeenMsg(prevBufferId, msgId);
+    }
+
+    if (!bufferId.isValid()) {
+        _currentBuffer = 0;
+        showChatView(0);
+        return;
+    }
 
-  if(!_chatViews.contains(bufferId))
-    _chatViews[bufferId] = createChatView(bufferId);
+    if (!_chatViews.contains(bufferId))
+        _chatViews[bufferId] = createChatView(bufferId);
 
-  _currentBuffer = bufferId;
-  showChatView(bufferId);
-  Client::networkModel()->clearBufferActivity(bufferId);
-  Client::setBufferLastSeenMsg(bufferId, _chatViews[bufferId]->lastMsgId());
-  Client::backlogManager()->checkForBacklog(bufferId);
-  setFocus();
+    _currentBuffer = bufferId;
+    showChatView(bufferId);
+    Client::networkModel()->clearBufferActivity(bufferId);
+    Client::setBufferLastSeenMsg(bufferId, _chatViews[bufferId]->lastMsgId());
+    Client::backlogManager()->checkForBacklog(bufferId);
+    setFocus();
 }