Added close buttons to "closable" tabs.
This commit is contained in:
parent
a455d21356
commit
fe0614ad8c
@ -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;
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
|
|
||||||
#include <QTabBar>
|
#include <QTabBar>
|
||||||
#include <QVariant>
|
#include <QVariant>
|
||||||
#include <QToolButton>
|
|
||||||
|
|
||||||
|
|
||||||
class TabBar : public QTabBar {
|
class TabBar : public QTabBar {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user