mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 01:22:10 +01:00
parent
b2181f0bab
commit
1d919e0172
|
@ -31,11 +31,13 @@ int ProxyStyle::styleHint(StyleHint hint, const QStyleOption* option, const QWid
|
|||
return QProxyStyle::styleHint(hint, option, widget, returnData);
|
||||
}
|
||||
|
||||
//int ProxyStyle::pixelMetric(PixelMetric metric, const QStyleOption* option, const QWidget* widget) const
|
||||
//{
|
||||
// if (metric == PM_TabBarTabHSpace) {
|
||||
// return 8;
|
||||
// }
|
||||
int ProxyStyle::pixelMetric(PixelMetric metric, const QStyleOption* option, const QWidget* widget) const
|
||||
{
|
||||
switch (metric) {
|
||||
case PM_TabBarTabHSpace:
|
||||
return qMin(QProxyStyle::pixelMetric(PM_TabBarTabHSpace, option, widget), 14);
|
||||
|
||||
// return QProxyStyle::pixelMetric(metric, option, widget);
|
||||
//}
|
||||
default:
|
||||
return QProxyStyle::pixelMetric(metric, option, widget);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -28,7 +28,8 @@ public:
|
|||
explicit ProxyStyle();
|
||||
|
||||
int styleHint(StyleHint hint, const QStyleOption* option = 0, const QWidget* widget = 0, QStyleHintReturn* returnData = 0) const;
|
||||
// int pixelMetric(PixelMetric metric, const QStyleOption* option, const QWidget* widget) const;
|
||||
|
||||
int pixelMetric(PixelMetric metric, const QStyleOption* option, const QWidget* widget) const;
|
||||
};
|
||||
|
||||
#endif // PROXYSTYLE_H
|
||||
|
|
|
@ -36,14 +36,6 @@
|
|||
#define MAXIMUM_TAB_WIDTH 250
|
||||
#define MINIMUM_TAB_WIDTH 125
|
||||
|
||||
#ifdef Q_WS_WIN
|
||||
#define PINNED_TAB_WIDTH 38
|
||||
#elif defined(KDE)
|
||||
#define PINNED_TAB_WIDTH 24
|
||||
#else
|
||||
#define PINNED_TAB_WIDTH 31
|
||||
#endif
|
||||
|
||||
TabBar::TabBar(QupZilla* mainClass, TabWidget* tabWidget)
|
||||
: QTabBar()
|
||||
, p_QupZilla(mainClass)
|
||||
|
@ -176,6 +168,12 @@ void TabBar::contextMenuRequested(const QPoint &position)
|
|||
|
||||
QSize TabBar::tabSizeHint(int index) const
|
||||
{
|
||||
static int PINNED_TAB_WIDTH = -1;
|
||||
|
||||
if (PINNED_TAB_WIDTH == -1) {
|
||||
PINNED_TAB_WIDTH = 16 + style()->pixelMetric(QStyle::PM_TabBarTabHSpace);
|
||||
}
|
||||
|
||||
QSize size = QTabBar::tabSizeHint(index);
|
||||
WebTab* webTab = qobject_cast<WebTab*>(m_tabWidget->widget(index));
|
||||
TabBar* tabBar = const_cast <TabBar*>(this);
|
||||
|
|
Loading…
Reference in New Issue
Block a user