qt-material-widgets/components/textfield_p.h

27 lines
459 B
C
Raw Normal View History

2016-06-14 15:30:46 +00:00
#ifndef TEXTFIELD_P_H
#define TEXTFIELD_P_H
#include <QObject>
class TextField;
2016-06-14 17:29:20 +00:00
class TextFieldStateMachine;
2016-06-14 15:30:46 +00:00
class TextFieldPrivate
{
Q_DISABLE_COPY(TextFieldPrivate)
Q_DECLARE_PUBLIC(TextField)
public:
TextFieldPrivate(TextField *q);
void init();
TextField *const q_ptr;
2016-06-14 17:29:20 +00:00
TextFieldStateMachine *machine;
QColor textColor;
QColor backgroundColor;
QColor inkColor;
QColor underlineColor;
2016-06-14 15:30:46 +00:00
};
#endif // TEXTFIELD_P_H