aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-calculator/EqValidator.h
blob: 8bceb24000ac94c420400c6d2622e3fe5c24edc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//===========================================
//  Lumina Desktop source code
//  Copyright (c) 2016, Ken Moore
//  Available under the 3-clause BSD license
//  See the LICENSE file for full details
//===========================================
#ifndef _LUMINA_CALCULATOR_VALIDATOR_H
#define _LUMINA_CALCULATOR_VALIDATOR_H

#define VALIDCHARS QString("x*+-/^%eE().0123456789#acosinthqrlog\u03C0")
#define NOSTARTCHARS QString("x*/^%)eE.")
#define NOENDCHARS QString("x*/^(eE.#")
#define NOCHANGE QString("().#")

#include <QValidator>
#include <QString>
#include <QDebug>

class EqValidator : public QValidator{
	Q_OBJECT
public:
	EqValidator(QObject *parent = 0) : QValidator(parent){}
	~EqValidator(){}

	virtual void fixup(QString &input) const{
	  if(input.isEmpty()){ return; }
	  if( NOSTARTCHARS.contains(input.left(1)) && !NOCHANGE.contains(input.left(1)) ){ input.prepend("1"); }
	  if( NOENDCHARS.contains(input.right(1)) && !NOCHANGE.contains(input.right(1)) ){ input.append("1"); }
	}

	virtual QValidator::State validate(QString &input, int&pos) const {
	  //qDebug() << "Got validate:" << input << pos;
	  if(pos>0 && !VALIDCHARS.contains(input[pos-1])){ return QValidator::Invalid; }
	  if(!input.isEmpty() && NOSTARTCHARS.contains(input.left(1))){ return QValidator::Intermediate; }
	  if(!input.isEmpty() && NOENDCHARS.contains(input.right(1))){ return QValidator::Intermediate; }
	  return QValidator::Acceptable;
	}
};
#endif
bgstack15