qt-material-widgets/components/scrollwidget_p.h

31 lines
672 B
C
Raw Normal View History

#ifndef SCROLLWIDGET_P_H
#define SCROLLWIDGET_P_H
2016-06-19 12:49:42 +00:00
#include <QObject>
2016-06-19 14:27:21 +00:00
#include <QColor>
2016-06-19 12:49:42 +00:00
class ScrollBar;
class ScrollBarStateMachine;
class ScrollBarPrivate
{
Q_DISABLE_COPY(ScrollBarPrivate)
Q_DECLARE_PUBLIC(ScrollBar)
public:
ScrollBarPrivate(ScrollBar *q);
~ScrollBarPrivate();
void init();
2016-06-21 12:12:52 +00:00
ScrollBar *const q_ptr;
ScrollBarStateMachine *const machine;
QColor backgroundColor;
QColor sliderColor;
2016-07-16 10:17:46 +00:00
QColor canvasColor;
2016-06-21 12:12:52 +00:00
bool hideOnMouseOut;
bool useThemeColors;
2016-06-19 12:49:42 +00:00
};
#endif // SCROLLWIDGET_P_H