From e4ad766315879e1ff05bb111229f073f8f0ed68e Mon Sep 17 00:00:00 2001 From: Andreas Grois Date: Mon, 10 Oct 2022 21:30:02 +0200 Subject: PassFish: Initial Commit Well, that's a lie. But nobody needs to see all the iterations I decided to sweep under the rug. That said, I think the repo is, while not clean, clean enough now, to not be embarrassed by uploading it to github. --- src/GraphemeCountValidator.h | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/GraphemeCountValidator.h (limited to 'src/GraphemeCountValidator.h') diff --git a/src/GraphemeCountValidator.h b/src/GraphemeCountValidator.h new file mode 100644 index 0000000..e2a5dc7 --- /dev/null +++ b/src/GraphemeCountValidator.h @@ -0,0 +1,26 @@ +#ifndef GRAPHEMECOUNTVALIDATOR_H +#define GRAPHEMECOUNTVALIDATOR_H + +#include + +class Q_GUI_EXPORT GraphemeCountValidator : public QValidator +{ + Q_OBJECT + Q_PROPERTY(uint minGraphemeCount READ minGraphemeCount WRITE setMinGraphemeCount NOTIFY minGraphemeCountChanged) +public: + explicit GraphemeCountValidator(QObject *parent = nullptr); + explicit GraphemeCountValidator(uint min_count, QObject *parent = nullptr); + virtual QValidator::State validate(QString &, int &) const override; + + uint minGraphemeCount() const; + void setMinGraphemeCount(uint c); + + +Q_SIGNALS: + void minGraphemeCountChanged(uint minGraphemeCount); + +private: + uint minCount; +}; + +#endif // GRAPHEMECOUNTVALIDATOR_H -- cgit v1.2.3