X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fbufferwidget.cpp;h=6bc304685269f8b0c77760e5bb6b35ca25e2f64d;hp=a0f71c6c5340c5e9bfedb558f13bd3c424e861e0;hb=dcdc88676f6bf6c961c554e1ff0d160082ba0973;hpb=a117d3bd1592bae3b14630c953790a005b3c3a3d diff --git a/src/qtui/bufferwidget.cpp b/src/qtui/bufferwidget.cpp index a0f71c6c..6bc30468 100644 --- a/src/qtui/bufferwidget.cpp +++ b/src/qtui/bufferwidget.cpp @@ -25,9 +25,12 @@ #include "settings.h" #include "client.h" -#include "global.h" +#include "action.h" +#include "actioncollection.h" +#include "qtui.h" #include +#include BufferWidget::BufferWidget(QWidget *parent) : AbstractBufferContainer(parent), @@ -42,7 +45,7 @@ BufferWidget::BufferWidget(QWidget *parent) _chatViewSearchController->setSearchSenders(ui.searchBar->searchSendersBox()->isChecked()); _chatViewSearchController->setSearchMsgs(ui.searchBar->searchMsgsBox()->isChecked()); _chatViewSearchController->setSearchOnlyRegularMsgs(ui.searchBar->searchOnlyRegularMsgsBox()->isChecked()); - + connect(ui.searchBar->searchEditLine(), SIGNAL(textChanged(const QString &)), _chatViewSearchController, SLOT(setSearchString(const QString &))); connect(ui.searchBar->caseSensitiveBox(), SIGNAL(toggled(bool)), @@ -53,6 +56,30 @@ BufferWidget::BufferWidget(QWidget *parent) _chatViewSearchController, SLOT(setSearchMsgs(bool))); connect(ui.searchBar->searchOnlyRegularMsgsBox(), SIGNAL(toggled(bool)), _chatViewSearchController, SLOT(setSearchOnlyRegularMsgs(bool))); + connect(ui.searchBar->searchUpButton(), SIGNAL(clicked()), + _chatViewSearchController, SLOT(highlightPrev())); + connect(ui.searchBar->searchDownButton(), SIGNAL(clicked()), + _chatViewSearchController, SLOT(highlightNext())); + + connect(_chatViewSearchController, SIGNAL(newCurrentHighlight(QGraphicsItem *)), + this, SLOT(scrollToHighlight(QGraphicsItem *))); + + ActionCollection *coll = QtUi::actionCollection(); + + Action *zoomChatview = coll->add("ZoomChatView"); + connect(zoomChatview, SIGNAL(triggered()), SLOT(zoomIn())); + zoomChatview->setText(tr("Enlarge Chat View")); + zoomChatview->setShortcut(tr("Ctrl++")); + + Action *zoomOutChatview = coll->add("ZoomOutChatView"); + connect(zoomOutChatview, SIGNAL(triggered()), SLOT(zoomOut())); + zoomOutChatview->setText(tr("Demagnify Chat View")); + zoomOutChatview->setShortcut(tr("Ctrl+-")); + + Action *zoomNormalChatview = coll->add("ZoomNormalChatView"); + connect(zoomNormalChatview, SIGNAL(triggered()), SLOT(zoomNormal())); + zoomNormalChatview->setText(tr("Normalize zoom of Chat View")); + zoomNormalChatview->setShortcut(tr("Ctrl+0")); } BufferWidget::~BufferWidget() { @@ -66,7 +93,6 @@ AbstractChatView *BufferWidget::createChatView(BufferId id) { _chatViews[id] = chatView; ui.stackedWidget->addWidget(chatView); chatView->setFocusProxy(this); - chatView->setBufferForBacklogFetching(id); return chatView; } @@ -89,3 +115,44 @@ void BufferWidget::showChatView(BufferId id) { } } +void BufferWidget::scrollToHighlight(QGraphicsItem *highlightItem) { + ChatView *view = qobject_cast(ui.stackedWidget->currentWidget()); + if(view) { + view->centerOn(highlightItem); + } +} + + +void BufferWidget::zoomIn() { + ChatView *view = qobject_cast(ui.stackedWidget->currentWidget()); + if(!view) return; + view->zoomIn(); +} + +void BufferWidget::zoomOut() { + ChatView *view = qobject_cast(ui.stackedWidget->currentWidget()); + if(!view) return; + view->zoomOut(); +} + +void BufferWidget::zoomNormal() { + ChatView *view = qobject_cast(ui.stackedWidget->currentWidget()); + if(!view) return; + view->zoomNormal(); +} + +bool BufferWidget::eventFilter(QObject *watched, QEvent *event) { + Q_UNUSED(watched); + if(event->type() != QEvent::KeyPress) + return false; + + QKeyEvent *keyEvent = static_cast(event); + switch(keyEvent->key()) { + case Qt::Key_PageUp: + case Qt::Key_PageDown: + // static cast to access public qobject::event + return static_cast(ui.stackedWidget->currentWidget())->event(event); + default: + return false; + } +}