You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wowlet/src/calcwindow.cpp

38 lines
928 B

// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) 2020-2021, The Monero Project.
#include "calcwindow.h"
#include "mainwindow.h"
#include "ui_calcwindow.h"
CalcWindow::CalcWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::CalcWindow)
{
Qt::WindowFlags flags = this->windowFlags();
this->setWindowFlags(flags|Qt::WindowStaysOnTopHint); // on top
ui->setupUi(this);
this->setWindowIcon(QIcon("://assets/images/gnome-calc.png"));
connect(AppContext::prices, &Prices::fiatPricesUpdated, this, &CalcWindow::initFiat);
connect(AppContext::prices, &Prices::cryptoPricesUpdated, this, &CalcWindow::initCrypto);
}
void CalcWindow::initFiat() {
this->ui->calcWidget->initFiat();
}
void CalcWindow::initCrypto() {
this->ui->calcWidget->initCrypto();
}
void CalcWindow::closeEvent(QCloseEvent *foo) {
emit closed();
}
CalcWindow::~CalcWindow() {
delete ui;
}