qt-material-widgets/components/qtmaterialdivider_p.h

34 lines
814 B
C++

#ifndef QTMATERIALDIVIDER_P_H
#define QTMATERIALDIVIDER_P_H
#include <QtGlobal>
#include <QColor>
#include "lib/qtmaterialtheme.h"
class QtMaterialDivider;
class QtMaterialDividerPrivate
{
Q_DISABLE_COPY(QtMaterialDividerPrivate)
Q_DECLARE_PUBLIC(QtMaterialDivider)
public:
QtMaterialDividerPrivate(QtMaterialDivider *q);
~QtMaterialDividerPrivate();
void init();
QtMaterialDivider *const q_ptr;
int size;
// Material::DividerType type;
// QChar letter;
// QImage image;
// QIcon icon;
// QPixmap pixmap;
bool useThemeColors;
// QColor textColor;
// QColor backgroundColor;
};
#endif // QTMATERIALDIVIDER_P_H