Merge pull request #97 from Bombe/focus-host-input
[quassel.git] / src / uisupport / bufferhotlistfilter.cpp
index 6297639..0df4203 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-08 by the Quassel Project                          *
+ *   Copyright (C) 2005-2015 by the Quassel Project                        *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
  *   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 "bufferhotlistfilter.h"
 
 #include "networkmodel.h"
 
+
 BufferHotListFilter::BufferHotListFilter(QAbstractItemModel *source, QObject *parent)
     : QSortFilterProxyModel(parent)
 {
@@ -30,6 +31,13 @@ BufferHotListFilter::BufferHotListFilter(QAbstractItemModel *source, QObject *pa
     sort(0, Qt::DescendingOrder); // enable sorting... this is "usually" triggered by a enabling setSortingEnabled(true) on a view;
 }
 
+BufferId BufferHotListFilter::hottestBuffer()
+{
+  invalidate();
+  sort(0, Qt::DescendingOrder);
+  QModelIndex topIndex = index(0,0);
+  return data(topIndex, NetworkModel::BufferIdRole).value<BufferId>();
+}
 
 bool BufferHotListFilter::filterAcceptsRow(int source_row, const QModelIndex &source_parent) const
 {