Added close buttons to "closable" tabs.

This commit is contained in:
Martin Rotter 2014-01-19 12:27:45 +01:00
parent a455d21356
commit fe0614ad8c
2 changed files with 12 additions and 8 deletions

View File

@ -4,6 +4,8 @@
#include "core/settings.h" #include "core/settings.h"
#include <QMouseEvent> #include <QMouseEvent>
#include <QToolButton>
#include <QStyle>
TabBar::TabBar(QWidget *parent) : QTabBar(parent) { TabBar::TabBar(QWidget *parent) : QTabBar(parent) {
@ -46,11 +48,14 @@ void TabBar::setTabType(int index, const TabBar::TabType &type) {
void TabBar::closeTabViaButton() { void TabBar::closeTabViaButton() {
QToolButton *close_button = qobject_cast<QToolButton*>(sender()); QToolButton *close_button = qobject_cast<QToolButton*>(sender());
QTabBar::ButtonPosition button_position = (ButtonPosition) style()->styleHint(QStyle::SH_TabBar_CloseButtonPosition,
0,
this);;
if (close_button != NULL) { if (close_button != NULL) {
// Find index of tab for this close button. // Find index of tab for this close button.
for (int i = 0; i < count(); i++) { for (int i = 0; i < count(); i++) {
if (tabButton(i, QTabBar::RightSide) == close_button) { if (tabButton(i, button_position) == close_button) {
emit tabCloseRequested(i); emit tabCloseRequested(i);
return; return;

View File

@ -5,7 +5,6 @@
#include <QTabBar> #include <QTabBar>
#include <QVariant> #include <QVariant>
#include <QToolButton>
class TabBar : public QTabBar { class TabBar : public QTabBar {