37 lines
715 B
C++
37 lines
715 B
C++
#ifndef QTMATERIALTABS_P_H
|
|
#define QTMATERIALTABS_P_H
|
|
|
|
#include <QtGlobal>
|
|
#include "lib/qtmaterialtheme.h"
|
|
namespace md
|
|
{
|
|
|
|
class QHBoxLayout;
|
|
class Tabs;
|
|
class TabsInkBar;
|
|
|
|
class TabsPrivate
|
|
{
|
|
Q_DISABLE_COPY(TabsPrivate)
|
|
Q_DECLARE_PUBLIC(Tabs)
|
|
|
|
public:
|
|
TabsPrivate(Tabs *q);
|
|
~TabsPrivate();
|
|
|
|
void init();
|
|
|
|
Tabs *const q_ptr;
|
|
TabsInkBar *inkBar;
|
|
QHBoxLayout *tabLayout;
|
|
Material::RippleStyle rippleStyle;
|
|
QColor inkColor;
|
|
QColor backgroundColor;
|
|
QColor textColor;
|
|
int tab;
|
|
bool showHalo;
|
|
bool useThemeColors;
|
|
};
|
|
}
|
|
#endif // QTMATERIALTABS_P_H
|