rssguard/src/gui/tabbar.cpp
2015-01-09 19:55:45 +01:00

147 lines
4.8 KiB
C++
Executable File

// This file is part of RSS Guard.
//
// Copyright (C) 2011-2015 by Martin Rotter <rotter.martinos@gmail.com>
//
// RSS Guard is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// RSS Guard is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with RSS Guard. If not, see <http://www.gnu.org/licenses/>.
#include "gui/tabbar.h"
#include "definitions/definitions.h"
#include "miscellaneous/settings.h"
#include "gui/plaintoolbutton.h"
#include <QMouseEvent>
#include <QStyle>
TabBar::TabBar(QWidget *parent) : QTabBar(parent) {
setDocumentMode(true);
setUsesScrollButtons(true);
setContextMenuPolicy(Qt::CustomContextMenu);
}
TabBar::~TabBar() {
qDebug("Destroying TabBar instance.");
}
void TabBar::setTabType(int index, const TabBar::TabType &type) {
switch (type) {
case TabBar::DownloadManager:
case TabBar::Closable: {
PlainToolButton *close_button = new PlainToolButton(this);
close_button->setIcon(qApp->icons()->fromTheme("application-exit"));
close_button->setToolTip(tr("Close this tab."));
close_button->setText(tr("Close tab"));
close_button->setFixedSize(iconSize());
// Close underlying tab when button is clicked.
connect(close_button, SIGNAL(clicked()),this, SLOT(closeTabViaButton()));
setTabButton(index, QTabBar::RightSide, close_button);
break;
}
case TabBar::NonClosable:
case TabBar::FeedReader:
default:
setTabButton(index, QTabBar::RightSide, 0);
break;
}
setTabData(index, QVariant(type));
}
void TabBar::closeTabViaButton() {
QAbstractButton *close_button = qobject_cast<QAbstractButton*>(sender());
QTabBar::ButtonPosition button_position = static_cast<ButtonPosition>(style()->styleHint(QStyle::SH_TabBar_CloseButtonPosition,
0,
this));
if (close_button != NULL) {
// Find index of tab for this close button.
for (int i = 0; i < count(); i++) {
if (tabButton(i, button_position) == close_button) {
emit tabCloseRequested(i);
return;
}
}
}
}
void TabBar::wheelEvent(QWheelEvent *event) {
int current_index = currentIndex();
int number_of_tabs = count();
// Make sure rotating works.
if (number_of_tabs > 1) {
if (event->delta() > 0) {
// Scroll to the LEFT tab.
setCurrentIndex(current_index == 0 ?
number_of_tabs - 1 :
current_index - 1);
}
else if (event->delta() < 0) {
// Scroll to the RIGHT tab.
setCurrentIndex(current_index == number_of_tabs - 1 ?
0 :
current_index + 1);
}
}
}
void TabBar::mousePressEvent(QMouseEvent *event) {
QTabBar::mousePressEvent(event);
int tab_index = tabAt(event->pos());
// Check if user clicked on some tab or on empty space.
if (tab_index >= 0) {
// Check if user clicked tab with middle button.
// NOTE: This needs to be done here because
// destination does not know the original event.
if (event->button() & Qt::MiddleButton && qApp->settings()->value(GROUP(GUI), SETTING(GUI::TabCloseMiddleClick)).toBool()) {
if (tabType(tab_index) == TabBar::Closable || tabType(tab_index) == TabBar::DownloadManager) {
// This tab is closable, so we can close it.
emit tabCloseRequested(tab_index);
}
}
}
}
void TabBar::mouseDoubleClickEvent(QMouseEvent *event) {
QTabBar::mouseDoubleClickEvent(event);
int tab_index = tabAt(event->pos());
// Check if user clicked on some tab or on empty space.
if (tab_index >= 0) {
// Check if user clicked tab with middle button.
// NOTE: This needs to be done here because
// destination does not know the original event.
if (event->button() & Qt::LeftButton && qApp->settings()->value(GROUP(GUI), SETTING(GUI::TabCloseDoubleClick)).toBool()) {
if (tabType(tab_index) == TabBar::Closable) {
// This tab is closable, so we can close it.
emit tabCloseRequested(tab_index);
}
}
}
// Check if new tab should be opened with initial web browser.
// NOTE: This check could be unnecesary here and should be done in
// destination object but we keep it here for consistency.
else if (qApp->settings()->value(GROUP(GUI), SETTING(GUI::TabNewDoubleClick)).toBool()) {
emit emptySpaceDoubleClicked();
}
}