赞
踩
这个垂直的tabWidge如何 给文字方向弄水平了呢
通过网上搜集资料,目前了解有以下3种解决方案:
1.通过自定义派生一个QTabwidget类,然后在自定义myQTabWidget类中对于文字等 进行重绘。
不过本人为新手菜鸟,对重绘文本这块不是很懂,还请大侠指点。
2.对于QT原生的QTabwidget类进行QProxyStyle风格设置,具体看以下的代码,
该方法能够实现文字方向水平了,可是给之前通过QSS设置的背景颜色等冲掉了,现在无法设置背景,不知道如何在此基础上重新设置背景,还请了解的大侠指点迷津。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
#include <QtGui>
class
CustomTabStyle :
public
QProxyStyle
{
public
:
QSize sizeFromContents(ContentsType type,
const
QStyleOption *option,
const
QSize &size,
const
QWidget *widget)
const
{
QSize s = QProxyStyle::sizeFromContents(type, option, size, widget);
if
(type == QStyle::CT_TabBarTab)
{ s.transpose();
s.rwidth()=70;
s.rheight()=70;
}
return
s;
}
void
drawControl(ControlElement element,
const
QStyleOption *option, QPainter *painter,
const
QWidget *widget)
const
{
if
(element == CE_TabBarTabLabel)
{
if
(
const
QStyleOptionTab *tab = qstyleoption_cast<
const
QStyleOptionTab *>(option))
{
QStyleOptionTab opt(*tab);
//opt.shape = QTabBar::RoundedNorth;
opt.text = tr(
"Hello"
);
//QIcon icon(":/Resources/icon2.ico");
//opt.icon = icon;
opt.palette.setCurrentColorGroup(QPalette::Disabled);
opt.state |= QStyle::State_Sunken;
QProxyStyle::drawControl(element, &opt, painter, widget);
return
;
}
}
if
(element == CE_TabBarTab)
{
painter->drawText(5,8,
"1123"
);
//painter->setBackground(QBrush(Qt::red, Qt::SolidPattern));
}
QProxyStyle::drawControl(element, option, painter, widget);
}
};
|
然后再给需要设置的QTabWidget控件应用上面的样式:
1
|
ui.myTabWidget->setStyle(
new
CustomTabStyle);
|
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。