X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtopia%2Ftopicbar.cpp;fp=src%2Fqtopia%2Ftopicbar.cpp;h=724817fa04fc1a7a6c2e6b27c8dbe6bee4db07f0;hp=cd809b267dc80e943bb3fd0643233ccb6e39d571;hb=906789f761e5d1b37b46b5a05a2f649e28900e36;hpb=6ecdc735718f39110baf3be8c4773c3a26712b6f diff --git a/src/qtopia/topicbar.cpp b/src/qtopia/topicbar.cpp index cd809b26..724817fa 100644 --- a/src/qtopia/topicbar.cpp +++ b/src/qtopia/topicbar.cpp @@ -18,10 +18,11 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ -#include "topicbar.h" - #include +#include "topicbar.h" +#include "client.h" + TopicBar::TopicBar(QWidget *parent) : QPushButton(parent) { setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Preferred); @@ -41,6 +42,14 @@ TopicBar::TopicBar(QWidget *parent) : QPushButton(parent) { timer->setInterval(25); connect(timer, SIGNAL(timeout()), this, SLOT(updateOffset())); connect(this, SIGNAL(clicked()), this, SLOT(startScrolling())); + + _model = Client::bufferModel(); + connect(_model, SIGNAL(dataChanged(QModelIndex, QModelIndex)), + this, SLOT(dataChanged(QModelIndex, QModelIndex))); + + _selectionModel = Client::bufferModel()->standardSelectionModel(); + connect(_selectionModel, SIGNAL(currentChanged(QModelIndex, QModelIndex)), + this, SLOT(currentChanged(QModelIndex, QModelIndex))); } TopicBar::~TopicBar() { @@ -48,6 +57,18 @@ TopicBar::~TopicBar() { } +void TopicBar::currentChanged(const QModelIndex ¤t, const QModelIndex &previous) { + Q_UNUSED(previous); + setContents(current.sibling(current.row(), 1).data().toString()); +} + +void TopicBar::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight) { + QItemSelectionRange changedArea(topLeft, bottomRight); + QModelIndex currentTopicIndex = _selectionModel->currentIndex().sibling(_selectionModel->currentIndex().row(), 1); + if(changedArea.contains(currentTopicIndex)) + setContents(currentTopicIndex.data().toString()); +}; + void TopicBar::resizeEvent(QResizeEvent *event) { QPushButton::resizeEvent(event); calcTextMetrics();