nheko/include/ui/TextField.h

178 lines
4.0 KiB
C
Raw Normal View History

#pragma once
2017-04-06 01:06:42 +02:00
#include <QColor>
#include <QLineEdit>
#include <QPaintEvent>
#include <QPropertyAnimation>
#include <QStateMachine>
#include <QtGlobal>
class TextField;
class TextFieldLabel;
class TextFieldStateMachine;
class TextField : public QLineEdit
{
2017-09-10 11:59:21 +02:00
Q_OBJECT
2017-04-06 01:06:42 +02:00
2017-09-10 11:59:21 +02:00
Q_PROPERTY(QColor textColor WRITE setTextColor READ textColor)
Q_PROPERTY(QColor inkColor WRITE setInkColor READ inkColor)
2017-12-10 14:22:01 +01:00
Q_PROPERTY(QColor labelColor WRITE setLabelColor READ labelColor)
2017-09-10 11:59:21 +02:00
Q_PROPERTY(QColor underlineColor WRITE setUnderlineColor READ underlineColor)
2017-11-25 14:14:37 +01:00
Q_PROPERTY(QColor backgroundColor WRITE setBackgroundColor READ backgroundColor)
2017-04-06 01:06:42 +02:00
public:
2017-09-10 11:59:21 +02:00
explicit TextField(QWidget *parent = 0);
~TextField();
void setInkColor(const QColor &color);
void setBackgroundColor(const QColor &color);
void setLabel(const QString &label);
void setLabelColor(const QColor &color);
void setLabelFontSize(qreal size);
void setShowLabel(bool value);
void setTextColor(const QColor &color);
void setUnderlineColor(const QColor &color);
QColor inkColor() const;
QColor labelColor() const;
QColor textColor() const;
QColor underlineColor() const;
QColor backgroundColor() const;
QString label() const;
bool hasLabel() const;
qreal labelFontSize() const;
2017-04-06 01:06:42 +02:00
protected:
2017-09-10 11:59:21 +02:00
bool event(QEvent *event) override;
void paintEvent(QPaintEvent *event) override;
2017-04-06 01:06:42 +02:00
private:
2017-09-10 11:59:21 +02:00
void init();
QColor ink_color_;
QColor background_color_;
QColor label_color_;
QColor text_color_;
QColor underline_color_;
QString label_text_;
TextFieldLabel *label_;
TextFieldStateMachine *state_machine_;
bool show_label_;
qreal label_font_size_;
2017-04-06 01:06:42 +02:00
};
class TextFieldLabel : public QWidget
{
2017-09-10 11:59:21 +02:00
Q_OBJECT
2017-04-06 01:06:42 +02:00
2017-09-10 11:59:21 +02:00
Q_PROPERTY(qreal scale WRITE setScale READ scale)
Q_PROPERTY(QPointF offset WRITE setOffset READ offset)
Q_PROPERTY(QColor color WRITE setColor READ color)
2017-04-06 01:06:42 +02:00
public:
2017-09-10 11:59:21 +02:00
TextFieldLabel(TextField *parent);
~TextFieldLabel();
2017-04-06 01:06:42 +02:00
2017-09-10 11:59:21 +02:00
inline void setColor(const QColor &color);
inline void setOffset(const QPointF &pos);
inline void setScale(qreal scale);
2017-04-06 01:06:42 +02:00
2017-09-10 11:59:21 +02:00
inline QColor color() const;
inline QPointF offset() const;
inline qreal scale() const;
2017-04-06 01:06:42 +02:00
protected:
2017-09-10 11:59:21 +02:00
void paintEvent(QPaintEvent *event) override;
2017-04-06 01:06:42 +02:00
private:
2017-09-10 11:59:21 +02:00
TextField *const text_field_;
2017-04-06 01:06:42 +02:00
2017-09-10 11:59:21 +02:00
QColor color_;
qreal scale_;
qreal x_;
qreal y_;
2017-04-06 01:06:42 +02:00
};
2017-08-20 12:47:22 +02:00
inline void
TextFieldLabel::setColor(const QColor &color)
2017-04-06 01:06:42 +02:00
{
2017-09-10 11:59:21 +02:00
color_ = color;
update();
2017-04-06 01:06:42 +02:00
}
2017-08-20 12:47:22 +02:00
inline void
TextFieldLabel::setOffset(const QPointF &pos)
2017-04-06 01:06:42 +02:00
{
2017-09-10 11:59:21 +02:00
x_ = pos.x();
y_ = pos.y();
update();
2017-04-06 01:06:42 +02:00
}
2017-08-20 12:47:22 +02:00
inline void
TextFieldLabel::setScale(qreal scale)
2017-04-06 01:06:42 +02:00
{
2017-09-10 11:59:21 +02:00
scale_ = scale;
update();
2017-04-06 01:06:42 +02:00
}
2017-08-20 12:47:22 +02:00
inline QPointF
TextFieldLabel::offset() const
2017-04-06 01:06:42 +02:00
{
2017-09-10 11:59:21 +02:00
return QPointF(x_, y_);
2017-04-06 01:06:42 +02:00
}
2017-08-20 12:47:22 +02:00
inline qreal
TextFieldLabel::scale() const
2017-04-06 01:06:42 +02:00
{
2017-09-10 11:59:21 +02:00
return scale_;
2017-04-06 01:06:42 +02:00
}
2017-08-20 12:47:22 +02:00
inline QColor
TextFieldLabel::color() const
2017-04-06 01:06:42 +02:00
{
2017-09-10 11:59:21 +02:00
return color_;
2017-04-06 01:06:42 +02:00
}
class TextFieldStateMachine : public QStateMachine
{
2017-09-10 11:59:21 +02:00
Q_OBJECT
2017-04-06 01:06:42 +02:00
2017-09-10 11:59:21 +02:00
Q_PROPERTY(qreal progress WRITE setProgress READ progress)
2017-04-06 01:06:42 +02:00
public:
2017-09-10 11:59:21 +02:00
TextFieldStateMachine(TextField *parent);
~TextFieldStateMachine();
2017-04-06 01:06:42 +02:00
2017-09-10 11:59:21 +02:00
inline void setProgress(qreal progress);
void setLabel(TextFieldLabel *label);
2017-04-06 01:06:42 +02:00
2017-09-10 11:59:21 +02:00
inline qreal progress() const;
2017-04-06 01:06:42 +02:00
public slots:
2017-09-10 11:59:21 +02:00
void setupProperties();
2017-04-06 01:06:42 +02:00
private:
2017-09-10 11:59:21 +02:00
QPropertyAnimation *color_anim_;
QPropertyAnimation *offset_anim_;
2017-04-06 01:06:42 +02:00
2017-09-10 11:59:21 +02:00
QState *focused_state_;
QState *normal_state_;
2017-04-06 01:06:42 +02:00
2017-09-10 11:59:21 +02:00
TextField *text_field_;
TextFieldLabel *label_;
2017-04-06 01:06:42 +02:00
2017-09-10 11:59:21 +02:00
qreal progress_;
2017-04-06 01:06:42 +02:00
};
2017-08-20 12:47:22 +02:00
inline void
TextFieldStateMachine::setProgress(qreal progress)
2017-04-06 01:06:42 +02:00
{
2017-09-10 11:59:21 +02:00
progress_ = progress;
text_field_->update();
2017-04-06 01:06:42 +02:00
}
2017-08-20 12:47:22 +02:00
inline qreal
TextFieldStateMachine::progress() const
2017-04-06 01:06:42 +02:00
{
2017-09-10 11:59:21 +02:00
return progress_;
2017-04-06 01:06:42 +02:00
}