mirror of
https://git.wownero.com/wowlet/wowlet.git
synced 2024-08-15 01:03:14 +00:00
55 lines
1.2 KiB
C
55 lines
1.2 KiB
C
|
// SPDX-License-Identifier: BSD-3-Clause
|
||
|
// Copyright (c) 2020, The Monero Project.
|
||
|
|
||
|
#ifndef SETTINGS_H
|
||
|
#define SETTINGS_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include <QSettings>
|
||
|
#include <QAbstractButton>
|
||
|
|
||
|
#include "appcontext.h"
|
||
|
#include "widgets/nodewidget.h"
|
||
|
|
||
|
namespace Ui {
|
||
|
class Settings;
|
||
|
}
|
||
|
|
||
|
class Settings : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit Settings(QWidget *parent = nullptr);
|
||
|
~Settings() override;
|
||
|
|
||
|
signals:
|
||
|
void closed();
|
||
|
void preferredFiatCurrencyChanged(QString currency);
|
||
|
void homeWidgetChanged(QString widgetName);
|
||
|
void skinChanged(QString skinName);
|
||
|
void showHomeCCS(bool);
|
||
|
void blockExplorerChanged(QString blockExplorer);
|
||
|
|
||
|
public slots:
|
||
|
void copyToClipboard();
|
||
|
void checkboxExternalLinkWarn();
|
||
|
void checkboxCheckForAppUpdates();
|
||
|
void fiatCurrencySelected(int index);
|
||
|
void comboBox_homeWidgetChanged(int pos);
|
||
|
void comboBox_skinChanged(int pos);
|
||
|
void comboBox_blockExplorerChanged(int post);
|
||
|
|
||
|
private:
|
||
|
const QStringList m_homeWidgets{"ccs", "reddit"};
|
||
|
QStringList m_skins{"Native", "QDarkStyle", "Breeze/Dark", "Breeze/Light"};
|
||
|
|
||
|
private:
|
||
|
void setupSkinCombobox();
|
||
|
|
||
|
AppContext *m_ctx = nullptr;
|
||
|
Ui::Settings *ui;
|
||
|
};
|
||
|
|
||
|
#endif // SETTINGS_H
|