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.
138 lines
3.1 KiB
138 lines
3.1 KiB
#ifndef MAIN_H
|
|
#define MAIN_H
|
|
|
|
#include <QtQml/QJSValue>
|
|
#include <QtNetwork/QNetworkAccessManager>
|
|
#include <QtCore/QAbstractListModel>
|
|
#include <QtCore/QMutex>
|
|
#include <QtWidgets/QMainWindow>
|
|
#include <libethcore/RLP.h>
|
|
#include <libethereum/CommonEth.h>
|
|
#include <libethereum/State.h>
|
|
#include <libqethereum/QEthereum.h>
|
|
|
|
namespace Ui {
|
|
class Main;
|
|
}
|
|
|
|
namespace eth {
|
|
class Client;
|
|
class State;
|
|
}
|
|
|
|
class QQuickView;
|
|
|
|
struct WorldState
|
|
{
|
|
eth::u256 curPC;
|
|
eth::u256 gas;
|
|
eth::u256s stack;
|
|
eth::bytes memory;
|
|
std::map<eth::u256, eth::u256> storage;
|
|
};
|
|
|
|
class Main : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit Main(QWidget *parent = 0);
|
|
~Main();
|
|
|
|
eth::Client* client() { return m_client.get(); }
|
|
|
|
QList<eth::KeyPair> const& owned() const { return m_myKeys; }
|
|
|
|
private slots:
|
|
void on_connect_triggered();
|
|
void on_mine_triggered();
|
|
void on_send_clicked();
|
|
void on_create_triggered();
|
|
void on_net_triggered();
|
|
void on_verbosity_sliderMoved();
|
|
void on_ourAccounts_doubleClicked();
|
|
void ourAccountsRowsMoved();
|
|
void on_accounts_doubleClicked();
|
|
void on_destination_currentTextChanged();
|
|
void on_data_textChanged();
|
|
void on_idealPeers_valueChanged();
|
|
void on_value_valueChanged() { updateFee(); }
|
|
void on_gas_valueChanged() { updateFee(); }
|
|
void on_valueUnits_currentIndexChanged() { updateFee(); }
|
|
void on_gasPriceUnits_currentIndexChanged() { updateFee(); }
|
|
void on_gasPrice_valueChanged() { updateFee(); }
|
|
void on_log_doubleClicked();
|
|
void on_blocks_currentItemChanged();
|
|
void on_contracts_doubleClicked();
|
|
void on_contracts_currentItemChanged();
|
|
void on_transactionQueue_currentItemChanged();
|
|
void on_about_triggered();
|
|
void on_paranoia_triggered();
|
|
void on_nameReg_textChanged();
|
|
void on_preview_triggered() { refresh(true); }
|
|
void on_quit_triggered() { close(); }
|
|
void on_urlEdit_returnPressed();
|
|
void on_debugStep_triggered();
|
|
void on_debug_clicked();
|
|
void on_debugTimeline_valueChanged();
|
|
void on_jsInput_returnPressed();
|
|
void on_killBlockchain_triggered();
|
|
void on_importKey_triggered();
|
|
void on_exportKey_triggered();
|
|
void on_inject_triggered();
|
|
|
|
void refresh(bool _override = false);
|
|
void refreshNetwork();
|
|
|
|
signals:
|
|
void changed(); // TODO: manifest
|
|
|
|
private:
|
|
QString pretty(eth::Address _a) const;
|
|
|
|
void initDebugger();
|
|
void updateDebugger();
|
|
void debugFinished();
|
|
QString render(eth::Address _a) const;
|
|
eth::Address fromString(QString const& _a) const;
|
|
|
|
eth::State const& state() const;
|
|
|
|
void updateFee();
|
|
void readSettings();
|
|
void writeSettings();
|
|
|
|
bool isCreation() const;
|
|
eth::u256 fee() const;
|
|
eth::u256 total() const;
|
|
eth::u256 value() const;
|
|
eth::u256 gasPrice() const;
|
|
|
|
std::unique_ptr<Ui::Main> ui;
|
|
|
|
std::unique_ptr<eth::Client> m_client;
|
|
|
|
QByteArray m_peers;
|
|
QMutex m_guiLock;
|
|
QTimer* m_refresh;
|
|
QTimer* m_refreshNetwork;
|
|
QStringList m_servers;
|
|
QList<eth::KeyPair> m_myKeys;
|
|
bool m_keysChanged = false;
|
|
eth::bytes m_data;
|
|
eth::Address m_nameReg;
|
|
|
|
unsigned m_backupGas;
|
|
|
|
eth::State m_executiveState;
|
|
std::unique_ptr<eth::Executive> m_currentExecution;
|
|
|
|
QMap<unsigned, unsigned> m_pcWarp;
|
|
QList<WorldState> m_history;
|
|
|
|
QNetworkAccessManager m_webCtrl;
|
|
|
|
QEthereum* m_ethereum;
|
|
};
|
|
|
|
#endif // MAIN_H
|
|
|