How to implement vertical tabs in QT?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP



How to implement vertical tabs in QT?



I am trying to implement vertical tabs with horizontal text with QT but I cannot find any similar option in QTabWidget.



Somebody in SO asked for something similar here, however, the answers contain broken links and I doubt that they present a real solution.



Anybody has been able to do that?




2 Answers
2



You have to implement a custom QTabBar overwriting the tabSizeHint() and paintEvent() methods as shown below:


QTabBar


tabSizeHint()


paintEvent()


#include <QApplication>
#include <QStyleOptionTab>
#include <QStylePainter>
#include <QTabBar>
#include <QTabWidget>

class TabBar: public QTabBar
public:
QSize tabSizeHint(int index) const
QSize s = QTabBar::tabSizeHint(index);
s.transpose();
return s;

protected:
void paintEvent(QPaintEvent * /*event*/)
QStylePainter painter(this);
QStyleOptionTab opt;

for(int i = 0;i < count();i++)

initStyleOption(&opt,i);
painter.drawControl(QStyle::CE_TabBarTabShape, opt);
painter.save();

QSize s = opt.rect.size();
s.transpose();
QRect r(QPoint(), s);
r.moveCenter(opt.rect.center());
opt.rect = r;

QPoint c = tabRect(i).center();
painter.translate(c);
painter.rotate(90);
painter.translate(-c);
painter.drawControl(QStyle::CE_TabBarTabLabel,opt);
painter.restore();


;

class TabWidget : public QTabWidget

public:
TabWidget(QWidget *parent=0):QTabWidget(parent)
setTabBar(new TabBar);
setTabPosition(QTabWidget::West);

;

int main(int argc, char *argv)

QApplication a(argc, argv);
TabWidget w;
w.addTab(new QWidget, "tab1");
w.addTab(new QWidget, "tab2");
w.addTab(new QWidget, "tab3");
w.show();

return a.exec();



enter image description here





Hi! I have tried your code and get: ibb.co/dVuuYd Then I have added this->setStyleSheet("QTabBar::tab {width: 115px; height: 30px; color: #000000; font-weight: bold; font-size: 10px;"); to make it bigger. I get the text vertical: ibb.co/gJqMeJ How do you set the size of the tab, so the text is horizontal? Thanks.
– Cobra91151
Jul 22 at 19:16


this->setStyleSheet("QTabBar::tab {width: 115px; height: 30px; color: #000000; font-weight: bold; font-size: 10px;");





@Cobra91151 use "QTabBar::tab height: 115px; width: 30px; color: #000000; font-weight: bold; font-size: 10px;"
– eyllanesc
Jul 22 at 19:21


"QTabBar::tab height: 115px; width: 30px; color: #000000; font-weight: bold; font-size: 10px;"





Yes, I understood. I have changed the code this->setStyleSheet("QTabBar::tab height: 115px; width: 30px; color: #000000; font-weight: bold; font-size: 10px;"); but now I get: ibb.co/nGZWwy
– Cobra91151
Jul 22 at 19:35


this->setStyleSheet("QTabBar::tab height: 115px; width: 30px; color: #000000; font-weight: bold; font-size: 10px;");





I have fixed it by changing: QTabBar::paintEvent(event); to QWidget::paintEvent(event); after the paintEvent method code. Now it works: ibb.co/j8rN3d Thank you.
– Cobra91151
Jul 22 at 19:38



QTabBar::paintEvent(event);


QWidget::paintEvent(event);


paintEvent





It was my code mixed with yours. Now the problem solved. Thank you.
– Cobra91151
Jul 22 at 19:45



So my solution to fix this styling issue is:



Code:



apptabbar.h


#ifndef APPTABBAR_H
#define APPTABBAR_H

#include <QTabBar>
#include <QStylePainter>
#include <QStyleOptionTab>

class AppTabBar : public QTabBar

public:
AppTabBar();
AppTabBar(int tabWidth, int tabHeight);
AppTabBar(QSize tabSize);
AppTabBar(QWidget *parent);
AppTabBar(QWidget *parent, int tabWidth, int tabHeight);
AppTabBar(QWidget *parent, QSize tabSize);
QSize tabSizeHint(int index) const override;
~AppTabBar();

protected:
void paintEvent(QPaintEvent *event) override;

private:
int width, height;
;

#endif // APPTABBAR_H



apptabbar.cpp


#include "apptabbar.h"

AppTabBar::AppTabBar() : QTabBar(),
width(30),
height(115)




AppTabBar::AppTabBar(int tabWidth, int tabHeight) : QTabBar(),
width(tabWidth),
height(tabHeight)




AppTabBar::AppTabBar(QSize tabSize) : QTabBar(),
width(tabSize.width()),
height(tabSize.height())




AppTabBar::AppTabBar(QWidget *parent) : QTabBar(parent),
width(30),
height(115)




AppTabBar::AppTabBar(QWidget *parent, int tabWidth, int tabHeight) : QTabBar(parent),
width(tabWidth),
height(tabHeight)




AppTabBar::AppTabBar(QWidget *parent, QSize tabSize) : QTabBar(parent),
width(tabSize.width()),
height(tabSize.height())




AppTabBar::~AppTabBar()




QSize AppTabBar::tabSizeHint(int index) const

QSize s = QTabBar::tabSizeHint(index);
s.setWidth(width);
s.setHeight(height);
s.transpose();
return s;


void AppTabBar::paintEvent(QPaintEvent *event)

QStylePainter painter(this);
QStyleOptionTab opt;

for (int i = 0; i < this->count(); i++)
initStyleOption(&opt, i);
painter.drawControl(QStyle::CE_TabBarTabShape, opt);
painter.save();

QSize s = opt.rect.size();
s.transpose();
QRect r(QPoint(), s);
r.moveCenter(opt.rect.center());
opt.rect = r;

QPoint c = tabRect(i).center();
painter.translate(c);
painter.rotate(90);
painter.translate(-c);
painter.drawControl(QStyle::CE_TabBarTabLabel, opt);
painter.restore();


QWidget::paintEvent(event);



apptabcontrol.h


#ifndef APPTABCONTROL_H
#define APPTABCONTROL_H

#include <QTabWidget>
#include <QTabBar>
#include <QPalette>
#include <QPainter>
#include <QDebug>
#include "apptabbar.h"

class AppTabControl : public QTabWidget

public:
AppTabControl();
AppTabControl(QWidget *parent);
AppTabControl(QWidget *parent, int width, int height);
AppTabControl(QWidget *parent, QSize size);
void setTabControlSize(int width, int height);
void setTabControlSize(QSize tabSize);
~AppTabControl();

private:
int tabWidth, tabHeight;
QSize tabSize;
;

#endif // APPTABCONTROL_H



apptabcontrol.cpp


#include "apptabcontrol.h"

AppTabControl::AppTabControl()




AppTabControl::AppTabControl(QWidget *parent) : QTabWidget(parent)

this->setTabBar(new AppTabBar(parent, tabWidth, tabHeight));
this->setTabPosition(QTabWidget::West);


AppTabControl::AppTabControl(QWidget *parent, int width, int height) : QTabWidget(parent),
tabWidth(width),
tabHeight(height)

this->setTabBar(new AppTabBar(parent, tabWidth, tabHeight));
this->setTabPosition(QTabWidget::West);


AppTabControl::AppTabControl(QWidget *parent, QSize size) : QTabWidget(parent),
tabSize(size)

this->setTabBar(new AppTabBar(parent, tabSize));
this->setTabPosition(QTabWidget::West);


void AppTabControl::setTabControlSize(int width, int height)

tabWidth = width;
tabHeight = height;


void AppTabControl::setTabControlSize(QSize size)

tabSize = size;


AppTabControl::~AppTabControl()





And now the final part:


Test::Test(QWidget *parent) :
QWidget(parent),
ui(new Ui::Test)

AppTabControl *tabControl = new AppTabControl(this, 30, 115);
this->setStyleSheet("QTabBar::tab color: #000000; font-weight: bold; font-size: 10px; font-family: Gotham, Helvetica Neue, Helvetica, Arial, sans-serif; "
"QTabBar::tab:selected background-color: #FA9944; color: #000000; border-top: 1px solid #FA9944; "
"QTabBar::tab:hover color: #000000; border-top: 1px solid #FA9944; background-color: #FFFFFF;");
AppTabBar *tabBar1 = new AppTabBar(tabControl);
AppTabBar *tabBar2 = new AppTabBar(tabControl);
AppTabBar *tabBar3 = new AppTabBar(tabControl);
tabControl->addTab(tabBar1, "Tab1");
tabControl->addTab(tabBar2, "Tab2");
tabControl->addTab(tabBar3, "Tab3")



The result:



0_1533540265396_2018-08-06_102357.png



0_1533540726975_tabs_solution.gif



Everything works well now.






By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.

Popular posts from this blog

Firebase Auth - with Email and Password - Check user already registered

Dynamically update html content plain JS

How to determine optimal route across keyboard