//=========================================== // Lumina Desktop source code // Copyright (c) 2016, Ken Moore // Available under the 3-clause BSD license // See the LICENSE file for full details //=========================================== #include "mainUI.h" #include "ui_mainUI.h" #include #include #include #include "EqValidator.h" #include #define BADVALUE NAN #define OPS QString("+-*/x^%") mainUI::mainUI() : QMainWindow(), ui(new Ui::mainUI()){ ui->setupUi(this); connect(ui->tool_clear, SIGNAL(clicked()), this, SLOT(clear_calc()) ); connect(ui->line_eq, SIGNAL(returnPressed()), this, SLOT(start_calc()) ); connect(ui->line_eq, SIGNAL(textEdited(const QString&)), this, SLOT(checkInput(const QString&)) ); connect(ui->button_1, SIGNAL (clicked()), this, SLOT (captureButton1())); connect(ui->button_2, SIGNAL (clicked()), this, SLOT (captureButton2())); connect(ui->button_3, SIGNAL (clicked()), this, SLOT (captureButton3())); connect(ui->button_4, SIGNAL (clicked()), this, SLOT (captureButton4())); connect(ui->button_5, SIGNAL (clicked()), this, SLOT (captureButton5())); connect(ui->button_6, SIGNAL (clicked()), this, SLOT (captureButton6())); connect(ui->button_7, SIGNAL (clicked()), this, SLOT (captureButton7())); connect(ui->button_8, SIGNAL (clicked()), this, SLOT (captureButton8())); connect(ui->button_9, SIGNAL (clicked()), this, SLOT (captureButton9())); connect(ui->button_0, SIGNAL (clicked()), this, SLOT (captureButton0())); connect(ui->button_Subtract, SIGNAL (clicked()), this, SLOT (captureButtonSubtract())); connect(ui->button_Add, SIGNAL (clicked()), this, SLOT (captureButtonAdd())); connect(ui->button_Divide, SIGNAL (clicked()), this, SLOT (captureButtonDivide())); connect(ui->button_Multiply, SIGNAL (clicked()), this, SLOT (captureButtonMultiply())); connect(ui->button_Decimal, SIGNAL (clicked()), this, SLOT (captureButtonDecimal())); connect(ui->button_Percent, SIGNAL(clicked()), this, SLOT(captureButtonPercent()) ); connect(ui->button_Equal, SIGNAL (clicked()), this, SLOT (start_calc())); connect(ui->list_results, SIGNAL(itemClicked(QListWidgetItem*)), this, SLOT(insert_history(QListWidgetItem*)) ); //connect(ui->list_results, SIGNAL(itemRightClicked(QListWidgetItem*)), this, SLOT(copt_to_clipboard(QListWidgetItem*)) ); this->setWindowTitle(tr("Calculator")); updateIcons(); ui->line_eq->setFocus(); ui->line_eq->setValidator(new EqValidator(this) ); } mainUI::~mainUI(){ } void mainUI::updateIcons(){ this->setWindowIcon( LXDG::findIcon("accessories-calculator","") ); ui->tool_clear->setIcon( LXDG::findIcon("edit-clear-locationbar-rtl","dialog-cancel") ); } void mainUI::start_calc(){ if(ui->line_eq->text().isEmpty()){ return; } //nothing to do QString eq = ui->line_eq->text(); eq.replace("%","/(100)"); double result = strToNumber(eq); if(result!=result){ return; } //bad calculation - NaN's values are special in that they don't equal itself QString res = "%1 \t= [ %2 ]"; ui->list_results->addItem(res.arg(QString::number(result), ui->line_eq->text())); ui->list_results->scrollToItem( ui->list_results->item( ui->list_results->count()-1) ); ui->line_eq->clear(); } void mainUI::clear_calc(){ ui->line_eq->clear(); ui->line_eq->setFocus(); } void mainUI::captureButton1(){ ui->line_eq->insert(ui->button_1->text()); } void mainUI::captureButton2(){ ui->line_eq->insert(ui->button_2->text()); } void mainUI::captureButton3(){ ui->line_eq->insert(ui->button_3->text()); } void mainUI::captureButton4(){ui->line_eq->insert(ui->button_4->text()); } void mainUI::captureButton5(){ ui->line_eq->insert(ui->button_5->text()); } void mainUI::captureButton6(){ ui->line_eq->insert(ui->button_6->text()); } void mainUI::captureButton7(){ ui->line_eq->insert(ui->button_7->text()); } void mainUI::captureButton8(){ ui->line_eq->insert(ui->button_8->text()); } void mainUI::captureButton9(){ ui->line_eq->insert(ui->button_9->text()); } void mainUI::captureButton0(){ ui->line_eq->insert(ui->button_0->text()); } void mainUI::captureButtonSubtract(){ ui->line_eq->insert(ui->button_Subtract->text()); } void mainUI::captureButtonAdd(){ ui->line_eq->insert(ui->button_Add->text()); } void mainUI::captureButtonDivide(){ ui->line_eq->insert(ui->button_Divide->text()); } void mainUI::captureButtonMultiply(){ ui->line_eq->insert(ui->button_Multiply->text()); } //void mainUI::captureButtonEqual(){ ui->line_eq->setText(ui->line_eq->text() += ui->button_Equal->text()); } void mainUI::captureButtonDecimal(){ ui->line_eq->insert(ui->button_Decimal->text()); } void mainUI::captureButtonPercent(){ ui->line_eq->insert(ui->button_Percent->text()); } void mainUI::insert_history(QListWidgetItem *it){ QString txt = it->text().section("[",1,-1).section("]",0,0).simplified(); ui->line_eq->insert("("+txt+")"); } void mainUI::copy_to_clipboard(QListWidgetItem *it){ QString txt = it->text(); QApplication::clipboard()->setText(txt); } void mainUI::checkInput(const QString &str){ if(str.length()==1 && ui->list_results->count()>0){ if(OPS.contains(str)){ QString lastresult = ui->list_results->item( ui->list_results->count()-1)->text().section("=",0,0).simplified(); ui->line_eq->setText( lastresult+str); } } } // ===================== // PRIVATE FUNCTIONS // ===================== double mainUI::performOperation(double LHS, double RHS, QChar symbol){ //qDebug() << "Perform Operation:" << LHS << symbol << RHS; if(symbol== '+'){ return (LHS+RHS); } else if(symbol== '-'){ return (LHS-RHS); } else if(symbol== '*' || symbol=='x'){ return (LHS*RHS); } else if(symbol== '/'){ return (LHS/RHS); } else if(symbol== '^'){ return ::pow(LHS, RHS); } //else if(symbol== '%'){ return (LHS%RHS); } qDebug() << "Invalid Symbol:" << symbol; return BADVALUE; } double mainUI::strToNumber(QString str){ //Look for perentheses first //qDebug() << "String to Number: " << str; if(str.indexOf("(")>=0){ //qDebug() << "Found Parenthesis"; int start = str.indexOf("("); int need = 1; int end = -1; for(int i=start+1; i0; i++){ if(str[i]=='('){ need++; } else if(str[i]==')'){ need--; } //qDebug() << "Check char:" << str[i] << need; if(need==0){ end = i; } } if(end0 && str[tmp-1].toLower()=='e') ){ tmp = str.indexOf(symbols[i], tmp+1); } //catch scientific notation if(sym < tmp){ //qDebug() << " - found:" << tmp << sym; sym = tmp; } } if(sym>0){ return performOperation( strToNumber(str.left(sym)), strToNumber(str.right(str.length()-sym-1)), str[sym]); } if(sym==0){ return BADVALUE; } //Now look for multiply/divide/power symbols.clear(); symbols << "x" << "*" << "/" << "^" ; for(int i=0; i0){ return performOperation( strToNumber(str.left(sym)), strToNumber(str.right(str.length()-sym-1)), str[sym]); } if(sym==0){ return BADVALUE; } //Could not find any operations - must be a raw number //qDebug() << " - Found Number:" << str << str.toDouble(); return str.toDouble(); }