2020-10-14 20:12:32 +00:00
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2020-12-26 19:56:06 +00:00
|
|
|
// Copyright (c) 2020-2021, The Monero Project.
|
2020-10-14 20:12:32 +00:00
|
|
|
|
|
|
|
#ifndef XMRIGWIDGET_H
|
|
|
|
#define XMRIGWIDGET_H
|
|
|
|
|
|
|
|
#include <QMenu>
|
|
|
|
#include <QWidget>
|
|
|
|
#include <QItemSelection>
|
|
|
|
|
|
|
|
#include "utils/xmrig.h"
|
|
|
|
#include "utils/config.h"
|
2020-10-16 19:01:18 +00:00
|
|
|
#include "appcontext.h"
|
2020-10-14 20:12:32 +00:00
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class XMRigWidget;
|
|
|
|
}
|
|
|
|
|
|
|
|
class XMRigWidget : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2021-05-18 15:59:18 +00:00
|
|
|
explicit XMRigWidget(QSharedPointer<AppContext> ctx, QWidget *parent = nullptr);
|
2020-12-11 13:36:08 +00:00
|
|
|
~XMRigWidget() override;
|
2020-10-14 20:12:32 +00:00
|
|
|
QStandardItemModel *model();
|
|
|
|
|
2021-05-23 13:58:28 +00:00
|
|
|
bool isMining();
|
|
|
|
|
2020-10-14 20:12:32 +00:00
|
|
|
public slots:
|
2020-10-16 19:01:18 +00:00
|
|
|
void onWalletClosed();
|
2020-10-14 20:12:32 +00:00
|
|
|
void onStartClicked();
|
|
|
|
void onStopClicked();
|
|
|
|
void onClearClicked();
|
|
|
|
void onDownloads(const QJsonObject &data);
|
|
|
|
void linkClicked();
|
2020-10-17 21:14:56 +00:00
|
|
|
void onProcessError(const QString &msg);
|
|
|
|
void onProcessOutput(const QByteArray &msg);
|
|
|
|
void onHashrate(const QString &hashrate);
|
|
|
|
void onSoloChecked(int state);
|
2020-10-14 20:12:32 +00:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void onBrowseClicked();
|
|
|
|
void onThreadsValueChanged(int date);
|
|
|
|
void onPoolChanged(int pos);
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void miningStarted();
|
|
|
|
void miningEnded();
|
|
|
|
|
|
|
|
private:
|
|
|
|
void showContextMenu(const QPoint &pos);
|
|
|
|
|
|
|
|
Ui::XMRigWidget *ui;
|
2021-05-18 15:59:18 +00:00
|
|
|
QSharedPointer<AppContext> m_ctx;
|
2021-05-10 13:20:33 +00:00
|
|
|
XmRig * m_XMRig;
|
2020-10-14 20:12:32 +00:00
|
|
|
QStandardItemModel *m_model;
|
|
|
|
QMenu *m_contextMenu;
|
2021-05-02 18:22:38 +00:00
|
|
|
|
2021-05-23 13:58:28 +00:00
|
|
|
bool m_isMining = false;
|
2020-12-11 13:36:08 +00:00
|
|
|
int m_threads;
|
2020-10-14 20:12:32 +00:00
|
|
|
QStringList m_urls;
|
2020-11-03 12:59:32 +00:00
|
|
|
QStringList m_pools{"pool.xmr.pt:9000", "pool.supportxmr.com:9000", "mine.xmrpool.net:443", "xmrpool.eu:9999", "xmr-eu1.nanopool.org:14433", "pool.minexmr.com:6666", "us-west.minexmr.com:6666", "monerohash.com:9999", "cryptonote.social:5555", "cryptonote.social:5556"};
|
2020-10-14 20:12:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // REDDITWIDGET_H
|