2016-05-29 22:25:17 +00:00
|
|
|
#ifndef TABS_P_H
|
|
|
|
#define TABS_P_H
|
|
|
|
|
2016-05-30 06:51:46 +00:00
|
|
|
#include <QRect>
|
2016-06-05 12:07:56 +00:00
|
|
|
#include <QColor>
|
2016-05-30 06:51:46 +00:00
|
|
|
|
|
|
|
class QHBoxLayout;
|
|
|
|
class Tabs;
|
2016-06-05 12:07:56 +00:00
|
|
|
class TabsInkBar;
|
2016-05-30 06:51:46 +00:00
|
|
|
|
|
|
|
class TabsPrivate
|
|
|
|
{
|
|
|
|
Q_DISABLE_COPY(TabsPrivate)
|
|
|
|
Q_DECLARE_PUBLIC(Tabs)
|
|
|
|
|
|
|
|
public:
|
|
|
|
TabsPrivate(Tabs *q);
|
|
|
|
|
|
|
|
void init();
|
|
|
|
|
2016-06-05 12:07:56 +00:00
|
|
|
Tabs *const q_ptr;
|
|
|
|
TabsInkBar *inkBar;
|
|
|
|
QHBoxLayout *tabLayout;
|
|
|
|
QColor inkColor;
|
|
|
|
QColor backgroundColor;
|
|
|
|
QColor textColor;
|
|
|
|
int tab;
|
|
|
|
bool useThemeColors;
|
2016-06-11 16:44:16 +00:00
|
|
|
bool showHalo;
|
2016-05-30 06:51:46 +00:00
|
|
|
};
|
|
|
|
|
2016-05-29 22:25:17 +00:00
|
|
|
#endif // TABS_P_H
|