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/widgets/tickerwidget.h

39 lines
774 B

// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) 2020, The Monero Project.
#ifndef TICKERWIDGET_H
#define TICKERWIDGET_H
#include <QWidget>
#include "appcontext.h"
namespace Ui {
class TickerWidget;
}
class TickerWidget : public QWidget
{
Q_OBJECT
public:
explicit TickerWidget(QWidget *parent, QString symbol, QString title = "", bool convertBalance = false, bool hidePercent = false);
void setFiatText(QString &fiatCurrency, double amount);
void setPctText(QString &text, bool positive);
void setFontSizes();
~TickerWidget() override;
public slots:
void init();
private:
Ui::TickerWidget *ui;
QString m_symbol;
bool m_convertBalance;
bool m_hidePercent;
AppContext *m_ctx;
};
#endif // TICKERWIDGET_H