Ready for beta

pull/45/head
dsc 3 years ago
parent c0cb90bf79
commit 8b1250030b

@ -186,6 +186,7 @@ target_compile_definitions(wowlet PUBLIC VR_API_PUBLIC)
if(QML)
qt5_import_qml_plugins(${PROJECT_NAME})
target_compile_definitions(wowlet PRIVATE HAS_QML=1)
endif()
target_compile_definitions(wowlet

@ -829,9 +829,16 @@ void AppContext::onTransactionCreated(PendingTransaction *tx, const QVector<QStr
// tx created, but not sent yet. ask user to verify first.
emit createTransactionSuccess(tx, address);
if(this->autoCommitTx) {
this->currentWallet->commitTransactionAsync(tx);
}
}
QString AppContext::getAddress(quint32 accountIndex, quint32 addressIndex) {
return this->currentWallet->address(accountIndex, addressIndex);
}
#if defined(HAS_OPENVR)
void AppContext::onAskReceivingPIN() {
// request new receiving PIN from wowlet-backend
if(this->currentWallet == nullptr)
@ -870,7 +877,6 @@ void AppContext::onLookupReceivingPIN(QString pin) {
QJsonDocument doc = QJsonDocument(obj);
this->ws->sendMsg(doc.toJson(QJsonDocument::Compact));
}
#endif
void AppContext::onTransactionCommitted(bool status, PendingTransaction *tx, const QStringList& txid){
this->currentWallet->history()->refresh(this->currentWallet->currentSubaddressAccount());

@ -78,6 +78,11 @@ public:
PendingTransaction::Priority tx_priority = PendingTransaction::Priority::Priority_Low;
quint32 tx_mixin = static_cast<const quint32 &>(10);
QString seedLanguage = "English"; // 14 word `monero-seed` only has English
// turn this on if you want to auto commit tx's after they have
// been created. Caution while using this setting is advised. This
// probably also breaks the default QtWidgets GUI. It is meant for
// alternative users of AppContext.
bool autoCommitTx = false;
QNetworkAccessManager *network;
QNetworkAccessManager *networkClearnet;
@ -142,6 +147,7 @@ public slots:
void onPreferredFiatCurrencyChanged(const QString &symbol);
Q_INVOKABLE void onAskReceivingPIN();
Q_INVOKABLE void onLookupReceivingPIN(QString pin);
Q_INVOKABLE QString getAddress(quint32 accountIndex, quint32 addressIndex);
private slots:
void onWSNodes(const QJsonArray &nodes);

@ -114,7 +114,7 @@ if (AttachConsole(ATTACH_PARENT_PROCESS)) {
qRegisterMetaType<QVector<QString>>();
#ifdef QML
#ifdef HAS_QML
qputenv("QML_DISABLE_DISK_CACHE", "1");
#endif

@ -25,6 +25,7 @@ static const QHash<Config::ConfigKey, ConfigDirective> configStrings = {
{Config::homeWidget,{QS("homeWidget"), "ccs"}},
{Config::donateBeg,{QS("donateBeg"), 1}},
{Config::skin,{QS("skin"), "light"}},
{Config::openVRSkin,{QS("openVRSkin"), "default"}},
{Config::preferredFiatCurrency,{QS("preferredFiatCurrency"), "USD"}},
{Config::blockExplorer,{QS("blockExplorer"), "explore.wownero.com"}},
{Config::walletDirectory,{QS("walletDirectory"), ""}},

@ -28,6 +28,7 @@ public:
donateBeg,
autoOpenWalletPath,
skin,
openVRSkin,
preferredFiatCurrency,
blockExplorer,
walletDirectory,

@ -399,6 +399,11 @@ QLocale Utils::getCurrencyLocale(const QString &currencyCode) {
return locale;
}
double Utils::roundUp(double value, int decimal_places) {
const double multiplier = std::pow(10.0, decimal_places);
return std::ceil(value * multiplier) / multiplier;
}
QString Utils::amountToCurrencyString(double amount, const QString &currencyCode) {
QLocale locale = getCurrencyLocale(currencyCode);

@ -73,6 +73,7 @@ public:
static QLocale getCurrencyLocale(const QString &currencyCode);
static QString amountToCurrencyString(double amount, const QString &currencyCode);
static int maxLength(const QVector<QString> &array);
static double roundUp(double value, int decimal_places);
static QMap<QString, QLocale> localeCache;
static QString balanceFormat(quint64 balance);
static QTextCharFormat addressTextFormat(const SubaddressIndex &index);

@ -38,6 +38,9 @@ WSServer::WSServer(AppContext *ctx, const QHostAddress &host, const quint16 port
if (!m_pWebSocketServer->listen(QHostAddress::Any, port))
return;
// turn on auto tx commits
ctx->autoCommitTx = true;
qDebug() << "websocket server listening on port" << port;
connect(m_pWebSocketServer, &QWebSocketServer::newConnection, this, &WSServer::onNewConnection);
@ -364,8 +367,7 @@ void WSServer::onCreateTransactionError(const QString &message) {
}
void WSServer::onCreateTransactionSuccess(PendingTransaction *tx, const QVector<QString> &address) {
// auto-commit all tx's
m_ctx->currentWallet->commitTransactionAsync(tx);
}
void WSServer::onTransactionCommitted(bool status, PendingTransaction *tx, const QStringList &txid) {

@ -0,0 +1,39 @@
{
"default": {
"fontColor": "white",
"fontColorDimmed": "#cccccc",
"fontColorBright": "white",
"backgroundGradientStartColor": "#194f64",
"backgroundGradientStopColor": "#192e43",
"backgroundColor": "#1b2939",
"divideColor": "50ffffff",
"btnEnteredColor": "#aa3b689b",
"btnExitedColor": "#aa375c87",
"btnPressedColor": "#aa467dbb",
"btnTextHoverColor": "white",
"btnTextColor": "white",
"btnMainMenuBackground": "#aa3b689b",
"historyBackgroundColor": "#2c435d",
"historyBackgroundColorBright": "#406288",
"historyFontColorPlusAmount": "#00d304",
"historyFontColorMinAmount": "red"
},
"wownero": {
"fontColor": "#bd93f9",
"fontColorBright": "#e5d3ff",
"backgroundGradientStartColor": "#383a59",
"backgroundGradientStopColor": "#282a36",
"backgroundColor": "#282a36",
"divideColor": "50ffffff",
"btnEnteredColor": "#bd93f9",
"btnExitedColor": "#50000000",
"btnPressedColor": "#bd93f9",
"btnTextHoverColor": "black",
"btnTextColor": "#bcc2cd",
"btnMainMenuBackground": "#50000000",
"historyBackgroundColor": "#30314d",
"historyBackgroundColorBright": "#383a59",
"historyFontColorPlusAmount": "#00d304",
"historyFontColorMinAmount": "red"
}
}

@ -32,8 +32,15 @@ namespace wowletvr {
WowletVR::WowletVR(AppContext *ctx, QCommandLineParser *parser, QObject *parent) :
QObject(parent), ctx(ctx), m_parser(parser) {
desktopMode = m_parser->isSet("openvr-debug");
AppContext::isQML = true;
m_pClipboard = QGuiApplication::clipboard();
desktopMode = m_parser->isSet("openvr-debug");
// Init QML themes
this->readThemes();
// turn on auto tx commits
ctx->autoCommitTx = true;
// write icon to disk so openvr overlay can refer to it
auto icon = ":/assets/images/wowlet.png";
@ -47,7 +54,7 @@ namespace wowletvr {
#ifdef Q_OS_WIN
if(desktopMode)
qputenv("QMLSCENE_DEVICE", "softwarecontext");
qputenv("QMLSCENE_DEVICE", "softwarecontext"); // virtualbox
#endif
qDebug() << "QMLSCENE_DEVICE: " << qgetenv("QMLSCENE_DEVICE");
qInfo() << "OPENSSL VERSION: " << QSslSocket::sslLibraryBuildVersionString();
@ -59,10 +66,11 @@ namespace wowletvr {
m_engine.rootContext()->setContextProperty("ctx", ctx);
// qmlRegisterType<clipboardAdapter>("moneroComponents.Clipboard", 1, 0, "Clipboard");
m_engine.rootContext()->setContextProperty("WowletVR", this);
qRegisterMetaType<NetworkType::Type>();
qmlRegisterType<NetworkType>("wowlet.NetworkType", 1, 0, "NetworkType");
qmlRegisterUncreatableType<WalletKeysFiles>("wowlet.WalletKeysFiles", 1, 0, "WalletKeysFiles", "lol");
qmlRegisterUncreatableType<WalletKeysFiles>("wowlet.WalletKeysFiles", 1, 0, "WalletKeysFiles", "WalletKeysFiles can't be instantiated directly");
qmlRegisterUncreatableType<Wallet>("wowlet.Wallet", 1, 0, "Wallet", "Wallet can't be instantiated directly");
qmlRegisterType<WalletManager>("wowlet.WalletManager", 1, 0, "WalletManager");
@ -82,11 +90,11 @@ namespace wowletvr {
if(!desktopMode) {
if(!openvr_init::initializeOpenVR(openvr_init::OpenVrInitializationType::Overlay))
throw std::runtime_error("Error: initializeOpenVR()");
m_controller = new wowletvr::OverlayController(desktopMode, m_engine);
m_engine.rootContext()->setContextProperty("OverlayController", m_controller);
}
m_controller = new wowletvr::OverlayController(desktopMode, m_engine);
m_engine.rootContext()->setContextProperty("OverlayController", m_controller);
auto widgetUrl = QUrl(QStringLiteral("qrc:///main"));
m_component = new QQmlComponent(&m_engine, widgetUrl);
@ -116,8 +124,30 @@ namespace wowletvr {
m_controller->SetWidget(quickObjItem, displayName, appKey, iconPath.toStdString());
}
WowletVR::~WowletVR() {
int weoignwieog = 1;
void WowletVR::readThemes() {
theme_names = QVariantList();
themes = QVariantMap();
auto lol = Utils::fileOpen(":/qml_themes.json");
auto doc = QJsonDocument::fromJson(lol);
QJsonObject obj = doc.object();
foreach(const QString &themeName, obj.keys()) {
theme_names << themeName;
QJsonValue value = obj.value(themeName);
QJsonObject theme = value.toObject();
QVariantMap map;
foreach(const QString &key, theme.keys()) {
map[key] = theme.value(key).toString();
}
themes[themeName] = map;
}
};
WowletVR::~WowletVR() {
// bla
}
}

@ -8,9 +8,13 @@
#include <QQmlError>
#include <QQmlApplicationEngine>
#include <QtQml>
#include <QGuiApplication>
#include <QClipboard>
#include <globals.h>
#include "overlaycontroller.h"
#include "appcontext.h"
#include "utils/config.h"
namespace wowletvr {
@ -20,9 +24,46 @@ namespace wowletvr {
explicit WowletVR(AppContext *ctx, QCommandLineParser *cmdargs, QObject *parent = nullptr);
~WowletVR() override;
void readThemes();
void render();
QList<QQmlError> errors;
QVariantList theme_names;
QVariantMap themes;
Q_INVOKABLE QVariantMap getThemes() {
return themes;
}
Q_INVOKABLE QString getCurrentTheme() {
return config()->get(Config::openVRSkin).toString();
}
Q_INVOKABLE void setCurrentTheme(QString theme) {
config()->set(Config::openVRSkin, theme);
}
Q_INVOKABLE double cdiv(double amount) { return amount / globals::cdiv; }
Q_INVOKABLE double add(double x, double y) const { return Utils::roundUp(x + y, 4); } // round ceil 4 decimals
Q_INVOKABLE double sub(double x, double y) const { return Utils::roundUp(x - y, 4); } // round ceil 4 decimals
Q_INVOKABLE void onCreateTransaction(const QString &address, const QString &amount_str, const QString description, bool all) {
auto amount = WalletManager::amountFromString(amount_str);
ctx->onCreateTransaction(address, amount, description, false);
}
Q_INVOKABLE void setClipboard(const QString &text) {
m_pClipboard->setText(text, QClipboard::Clipboard);
m_pClipboard->setText(text, QClipboard::Selection);
}
Q_INVOKABLE QString amountToFiat(double amount) {
auto preferredFiatCurrency = config()->get(Config::preferredFiatCurrency).toString();
if (amount <= 0) return QString("0.00 %1").arg(preferredFiatCurrency);
double conversionAmount = AppContext::prices->convert("WOW", preferredFiatCurrency, amount);
return QString("~%1 %2").arg(QString::number(conversionAmount, 'f', 2), preferredFiatCurrency);
}
private:
AppContext *ctx;
@ -31,6 +72,7 @@ namespace wowletvr {
QQmlComponent *m_component;
bool desktopMode = false;
wowletvr::OverlayController *m_controller;
QClipboard *m_pClipboard;
};
}

@ -5,6 +5,7 @@ import QtGraphicalEffects 1.0
import QtQuick.Window 2.0
import QtQuick.Controls.Styles 1.4
import QtQuick.Dialogs 1.2
import QtGraphicalEffects 1.0
import "."
@ -18,16 +19,58 @@ Rectangle {
id: appWindow
width: 1600
height: 800
color: "#1b2939"
color: "transparent"
property var themes: {}
property string theme: "wownero"
signal initTheme();
// Components that have been dynamically created need to redraw
// after theme change (such as Repeater{}, Flow{} items, etc) so
// that the changes propogate.
signal redraw();
// For gradient background
property int start_x: 0
property int start_y: 64
property int end_x: 1080
property int end_y: 416
property double gradientTicks: 1.0;
LinearGradient {
anchors.fill: parent
start: Qt.point(start_x, start_y)
end: Qt.point(end_x, end_y)
gradient: Gradient {
GradientStop { position: 0.0; color: Style.backgroundGradientStartColor }
GradientStop { position: 1.0; color: Style.backgroundGradientStopColor }
}
}
Timer {
// animates the gradient background a bit.
id: gradientBackgroundTimer
repeat: true
interval: 10
triggeredOnStart: true
onTriggered: {
appWindow.gradientTicks += 0.004; // speed
let newx = ((1080 - 200) * Math.sin(appWindow.gradientTicks) + 1080 + 200) / 2;
appWindow.end_x = newx;
}
}
property var currentWallet;
property bool disconnected: currentWallet ? currentWallet.disconnected : false
property string walletTitle: "long wallet name"
property string walletTitle: "placeholder"
property string walletPath: ""
property string statusText: "Idle"
property string balanceFormatted: "Balance: 25928.9543 WOW"
property string balanceFormatted: "Balance: 0.0 WOW"
property bool wsConnected: false
property int connectionStatus: Wallet.ConnectionStatus_Disconnected;
signal aboutClicked();
property var balance: 0.0
property var spendable: 0.0
@ -36,6 +79,10 @@ Rectangle {
visible: false
}
property SettingsPage settingsPage: SettingsPage {
visible: false
}
property AboutPage aboutPage: AboutPage {
visible: false
}
@ -66,13 +113,14 @@ Rectangle {
Layout.rightMargin: 16
MyText {
fontColor: Style.fontColorBright
text: "Password: "
}
MyTextField {
id: walletOpenPassword
keyBoardUID: 591
color: "#cccccc"
color: Style.fontColorDimmed
text: ""
Layout.fillWidth: true
font.pointSize: 20
@ -110,13 +158,14 @@ Rectangle {
Layout.rightMargin: 16
MyText {
fontColor: Style.fontColorBright
text: "Name: "
}
MyTextField {
id: newWalletName
keyBoardUID: 590
color: "#cccccc"
color: Style.fontColorDimmed
text: ""
Layout.fillWidth: true
font.pointSize: 20
@ -132,13 +181,14 @@ Rectangle {
Layout.rightMargin: 16
MyText {
fontColor: Style.fontColorBright
text: "Password: "
}
MyTextField {
id: newWalletPassword
keyBoardUID: 592
color: "#cccccc"
color: Style.fontColorDimmed
text: ""
Layout.fillWidth: true
font.pointSize: 20
@ -152,7 +202,7 @@ Rectangle {
Layout.topMargin: 20
Layout.leftMargin: 16
fontSize: 16
fontColor: "#cccccc"
fontColor: Style.fontColorDimmed
text: "The password field is optional."
}
@ -174,8 +224,35 @@ Rectangle {
}
}
// About/credits button
Rectangle {
visible: mainView.currentItem == dashboardPage
color: "transparent"
width: 140
height: 60
anchors.bottom: parent.bottom
anchors.right: parent.right
MyText {
text: "Credits"
fontSize: 12
opacity: 0.3
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
fontColor: Style.fontColor
}
MouseArea {
anchors.fill: parent
onClicked: {
aboutClicked();
}
}
}
StackView {
id: mainView
visible: true
anchors.fill: parent
pushEnter: Transition {
@ -225,6 +302,54 @@ Rectangle {
ctx.initTor();
ctx.initWS();
}
// Start animating the background
gradientBackgroundTimer.start();
try {
appWindow.themes = WowletVR.getThemes();
appWindow.theme = WowletVR.getCurrentTheme();
}
catch(err) {
// for debugging purposes - do not change color codes here, use themes.json instead.
appWindow.themes = {
"default": {
"fontColor": "white",
"fontColorDimmed": "#cccccc",
"fontColorBright": "#white",
"backgroundGradientStartColor": "#194f64",
"backgroundGradientStopColor": "#192e43",
},
"wownero": {
"fontColor": "#bd93f9",
"fontColorDimmed": "#cccccc",
"fontColorBright": "#e5d3ff",
"backgroundGradientStartColor": "#383a59",
"backgroundGradientStopColor": "#282a36",
}
}
}
appWindow.changeTheme(appWindow.theme);
appWindow.initTheme();
}
function changeTheme(theme) {
console.log("changeTheme", theme);
for (var key in appWindow.themes[theme]){
let val = appWindow.themes[theme][key];
if(Style.hasOwnProperty(key))
Style[key] = val;
}
if(appWindow.theme != theme) {
appWindow.theme = theme;
try { WowletVR.setCurrentTheme(theme); }
catch(err) {}
}
appWindow.redraw();
}
Connections {
@ -251,17 +376,6 @@ Rectangle {
appWindow.currentWallet.connectionStatusChanged.connect(onConnectionStatusChanged);
}
// function onWalletOpened(Wallet *wallet) {
// currentWallet.moneySpent.connect(onWalletMoneySent)
// currentWallet.moneyReceived.connect(onWalletMoneyReceived)
// currentWallet.unconfirmedMoneyReceived.connect(onWalletUnconfirmedMoneyReceived)
// currentWallet.transactionCreated.connect(onTransactionCreated)
// currentWallet.connectionStatusChanged.connect(onWalletConnectionStatusChanged)
// currentWallet.transactionCommitted.connect(onTransactionCommitted);
// middlePanel.paymentClicked.connect(handlePayment);
// }
function onBlockchainSync(height, target) {
let blocks = (target > height) ? (target - height) : "?";
let heightText = "Blockchain sync: " + blocks + " blocks remaining";
@ -277,8 +391,6 @@ Rectangle {
function onWalletClosed() {
console.log("onWalletClosed");
appWindow.currentWallet.connectionStatusChanged.disconnect(onConnectionStatusChanged);
appWindow.walletTitle = "";
appWindow.balanceFormatted = "";
appWindow.balance = 0.0;
@ -291,8 +403,9 @@ Rectangle {
}
function onBalanceUpdated(balance, spendable) {
appWindow.balance = balance;
appWindow.spendable = spendable;
appWindow.balance = WowletVR.cdiv(balance);
appWindow.spendable = WowletVR.cdiv(spendable);
console.log("onBalanceUpdated", appWindow.spendable);
}
function onWalletOpenedError(err) {
@ -327,8 +440,6 @@ Rectangle {
}
function onCreateTransactionSuccess(tx, address) { // PendingTransaction
// auto-commit all tx's
//m_ctx->currentWallet->commitTransactionAsync(tx);
console.log("onCreateTransactionSuccess", address)
}
@ -337,6 +448,18 @@ Rectangle {
}
}
Connections {
target: OverlayController
function onDashboardDeactivated() {
gradientBackgroundTimer.stop();
}
function onDashboardActivated() {
gradientBackgroundTimer.start();
}
}
function onConnectionStatusChanged(status) {
console.log("onConnectionStatusChanged", status)
appWindow.connectionStatus = status;

@ -73,7 +73,7 @@ OverlayController::OverlayController(bool desktopMode, QQmlEngine& qmlEngine) :
m_offscreenSurface.create();
m_openGLContext.makeCurrent( &m_offscreenSurface );
if (!vr::VROverlay()){
if (!vr::VROverlay() && !desktopMode){
QMessageBox::critical(nullptr, "Wowlet VR Overlay", "Is OpenVR running?");
throw std::runtime_error( std::string( "No Overlay interface" ) );
}
@ -418,6 +418,8 @@ void OverlayController::mainEventLoop() {
void OverlayController::showKeyboard(QString existingText, unsigned long userValue)
{
if(m_desktopMode) return;
vr::VROverlay()->ShowKeyboardForOverlay(
m_ulOverlayHandle,
vr::k_EGamepadTextInputModeNormal,

@ -39,6 +39,7 @@
<file alias="status_connected">assets/img/status_connected.svg</file>
<file alias="status_waiting">assets/img/status_waiting.svg</file>
<file alias="status_lagging">assets/img/status_lagging.svg</file>
<file alias="qml_themes.json">assets/themes.json</file>
<file alias="main">main.qml</file>
<file>qml/common/HourComboBox.qml</file>
@ -56,12 +57,15 @@
<file>qml/common/MyText.qml</file>
<file>qml/common/MyToggleButton.qml</file>
<file>qml/common/MyPushButton.qml</file>
<file>qml/common/Style.qml</file>
<file>qml/common/qmldir</file>
<file>qml/common/MySlider.qml</file>
<file>qml/common/mainwidget.qml</file>
<file>qml/common/MyNumPad.qml</file>
<file>qml/common/MyNumPadButton.qml</file>
<file>qml/common/MyNumPadSendAmount.qml</file>
<file>qml/common/MyStackViewPage.qml</file>
<file>qml/common/ImageMask.qml</file>
<file>qml/wallet/ReceivePage.qml</file>
<file>qml/wallet/HistoryTable.qml</file>
<file>qml/wallet/WalletDashBoardPage.qml</file>
@ -69,9 +73,11 @@
<file>qml/DashboardPage.qml</file>
<file>qml/WalletPage.qml</file>
<file>qml/AboutPage.qml</file>
<file>qml/SettingsPage.qml</file>
<file>qml/wallet/send/SendPage.qml</file>
<file>qml/wallet/send/SendPageDashboard.qml</file>
<file>qml/wallet/send/SendPageDashboardButton.qml</file>
<file>qml/wallet/send/SendPageNavBack.qml</file>
<file>qml/wallet/send/SendPagePIN.qml</file>
<file>qml/wallet/send/SendPageQR.qml</file>

@ -28,8 +28,6 @@ ColumnLayout {
source: "qrc:/illuminati"
}
}
ColumnLayout {
@ -39,11 +37,9 @@ ColumnLayout {
Layout.leftMargin: 40
Layout.rightMargin: 40
Layout.fillWidth: true
text: "Wowlet VR is an alternative QML interface for wowlet and was made over a 4 week period whilst eating lots of pizzas. It is the world's first cryptocurrency wallet with support for VR. Wowlet is Free and open-source (BSD-3) software and the source code can be studied on git.wownero.com/wowlet/wowlet"
text: "Wowlet VR is an alternative QML interface for wowlet and was made over a 4 week period eating lots of pizzas. It is the world's first cryptocurrency wallet with support for VR. Wowlet is Free and open-source (BSD-3) software and the source code can be studied on git.wownero.com/wowlet/wowlet"
wrap: true
}
}
}
@ -52,6 +48,7 @@ ColumnLayout {
Layout.rightMargin: 40
Layout.fillWidth: true
text: "Greetings: matzman666, qvqc, ez, Gatto, cisme, wowario, lza_menace, jwinterm, nioc, asymptotically, azy, selsta, kico, laura, thrmo, rottensox, solar, bl4sty, scoobybejesus"
fontSize: 14
wrap: true
}

@ -14,9 +14,6 @@ ColumnLayout {
height: 800
property var walletList: [];
property string enteredColor: "#365473"
property string exitedColor: "#2c435d"
property string pressedColor: "#406288"
Layout.fillWidth: true
Layout.fillHeight: true
@ -48,13 +45,13 @@ ColumnLayout {
anchors.right: parent.right
anchors.bottom: parent.bottom
fontSize: 14
text: "Version 0.1 (Qt " + qtRuntimeVersion + ")"
text: "Version beta (Qt " + qtRuntimeVersion + ")"
}
}
}
Rectangle {
color: "#cccccc"
color: Style.dividerColor
height: 1
Layout.topMargin: 10
Layout.fillWidth: true
@ -80,29 +77,28 @@ ColumnLayout {
model: walletList
delegate: Rectangle {
// inherited roles from walletKeysFilesModel:
// index, fileName, modified, accessed, path, networktype, address
// @TODO: maybe enforce networktype === 0 (mainnet)
id: item
property var currentItem: walletList[index]
property bool about: currentItem.hasOwnProperty("about")
property bool settings: currentItem.hasOwnProperty("settings")
property bool create: currentItem.hasOwnProperty("create")
color: root.enteredColor
height: 256
width: 256
property bool exit: currentItem.hasOwnProperty("exit")
color: Style.btnMainMenuBackground
height: 242
width: 232
Image {
width: 182
height: 182
width: 158
height: 158
anchors.horizontalCenter: parent.horizontalCenter
anchors.bottom: parent.bottom
anchors.bottomMargin: 10
source: {
if(about) {
if(settings) {
return "qrc:/hypnotoad";
} else if(create) {
return "qrc:/wizard";
} else if(exit) {
return "qrc:/tutorial";
} else {
return "qrc:/chest";
}
@ -110,12 +106,15 @@ ColumnLayout {
}
Text {
color: "white"
id: btnText
color: Style.btnTextColor
text: {
if(about) {
return "About";
if(settings) {
return "Settings";
} else if(create) {
return "Create wallet";
} else if(exit) {
return "Exit";
} else {
return currentItem['fileName'].replace(".keys", "");
}
@ -133,16 +132,20 @@ ColumnLayout {
cursorShape: Qt.PointingHandCursor
onEntered: {
parent.color = root.pressedColor
parent.color = Style.btnPressedColor;
btnText.color = Style.btnTextHoverColor;
}
onExited: {
parent.color = root.enteredColor;
parent.color = Style.btnMainMenuBackground;
btnText.color = Style.btnTextColor;
}
onClicked: {
if(about) {
mainView.push(aboutPage);
if(settings) {
mainView.push(settingsPage);
} else if(create) {
createWalletDialog.openPopup();
} else if(exit) {
OverlayController.exitApp();
} else {
appWindow.walletPath = currentItem['path'];
ctx.onOpenWallet(currentItem['path'], "");
@ -161,6 +164,7 @@ ColumnLayout {
function onPageCompleted(previousView){
console.log("list wallets");
root.walletList = [];
let wallets = [];
if(typeof ctx !== 'undefined')
wallets = ctx.listWallets();
@ -168,16 +172,27 @@ ColumnLayout {
let _walletList = [];
for(var i = 0; i != wallets.length; i++) {
if(i == 8) // draw 10 items at any time
if(i == 9) // draw 10 items at any time
break;
_walletList.push(wallets[i]);
}
_walletList.push({"create": true});
_walletList.push({"about": true});
_walletList.push({"settings": true});
_walletList.push({"exit": true});
root.walletList = _walletList;
}
}
// OverlayController.exitApp();
Connections {
target: appWindow
function onAboutClicked() {
mainView.push(aboutPage);
}
function onRedraw() {
console.log("hooray");
onPageCompleted(1);
}
}
}

@ -0,0 +1,124 @@
import QtQuick 2.7
import QtQuick.Controls 2.0
import QtQuick.Layouts 1.2
import "."
import "common"
ColumnLayout {
id: root
property bool needsRestart: false
spacing: 30
Layout.fillHeight: true
Layout.fillWidth: true
ColumnLayout {
spacing: 30
Layout.topMargin: 40
Layout.fillWidth: true
Layout.leftMargin: 40
Layout.rightMargin: 40
MyText {
Layout.fillWidth: true
fontSize: 26
text: "Settings"
wrap: true
}
RowLayout {
spacing: 30
MyText {
text: "Theme"
}
MyComboBox {
id: themeCombo
Layout.preferredHeight: 60
Layout.preferredWidth: 378
displayText: "-"
model: [""]
delegate: ItemDelegate {
width: parent.width
text: modelData.text
hoverEnabled: true
contentItem: MyText {
horizontalAlignment: Text.AlignLeft
verticalAlignment: Text.AlignVCenter
text: parent.text
color: parent.enabled ? Style.fontColor : Style.fontColorDimmed
}
background: Rectangle {
color: parent.pressed ? "#406288" : (parent.hovered ? "#365473" : "#2c435d")
}
}
onCurrentIndexChanged: {
displayText = themeCombo.model[currentIndex]["text"];
if(displayText !== "" && displayText !== appWindow.theme) {
appWindow.changeTheme(displayText);
needsRestart = true;
}
}
}
}
}
Component.onCompleted: {
}
MyDialogOkPopup {
id: restartPopup
dialogTitle: "Restart required"
dialogText: "WowletVR needs a restart to load the theme. Exiting."
onClosed: {
OverlayController.exitApp();
}
}
MyPushButton {
text: "Back"
Layout.leftMargin: 40
Layout.preferredWidth: 220
onClicked: {
if(root.needsRestart) {
restartPopup.open();
} else {
mainView.pop();
}
}
}
Item {
Layout.fillWidth: true
Layout.fillHeight: true
}
function onPageCompleted(previousView){
}
Connections {
target: appWindow
function onInitTheme() {
// populate combobox
let themeComboBoxItems = [{ value: 0, text: ""}];
for (let _theme in appWindow.themes){
if (!appWindow.themes.hasOwnProperty(_theme))
continue;
themeComboBoxItems.push({ value: 0, text: _theme });
}
themeCombo.model = themeComboBoxItems;
themeCombo.displayText = appWindow.theme;
}
}
}
// OverlayController.exitApp();

@ -0,0 +1,96 @@
import QtQuick 2.7
import QtQuick.Controls 2.0
import QtQuick.Layouts 1.2
import "."
// This file is used to debug the background gradient animation and can be ignored.
ColumnLayout {
property int start_x: 0
property int start_y: 64
property int end_x: 1080
property int end_y: 416
visible: false
width: parent.width
height: parent.height
MyText {
fontColor: "red"
text: "start_x: " + start_x
}
MySlider {
from: 0
to: 1600
value: start_x
Layout.fillWidth: true
Layout.preferredHeight: 40
onValueChanged: {
appWindow.start_x = value;
}
}
MyText {
fontColor: "red"
text: "start_y: " + start_y
}
MySlider {
from: 0
to: 1600
value: start_y
Layout.fillWidth: true
Layout.preferredHeight: 40
onValueChanged: {
appWindow.start_y = value;
}
}
Item {
Layout.fillWidth: true
Layout.fillHeight: true
}
MyText {
fontColor: "red"
text: "end_x: " + end_x
}
MySlider {
from: 0
to: 1600
value: end_x
Layout.fillWidth: true
Layout.preferredHeight: 40
onValueChanged: {
appWindow.end_x = value;
}
}
MyText {
fontColor: "red"
text: "end_y: " + end_y
}
MySlider {
from: 0
to: 1600
value: end_y
Layout.fillWidth: true
Layout.preferredHeight: 40
onValueChanged: {
appWindow.end_y = value;
}
}
Item {
Layout.fillWidth: true
Layout.fillHeight: true
}
}

@ -0,0 +1,36 @@
// Copyright (c) 2014-2019, The Monero Project
import QtQuick 2.9
import QtGraphicalEffects 1.0
Item {
// Use this component to color+opacity change images with transparency (svg/png)
// Does not work in low graphics mode, use fontAwesome fallback option.
id: root
property string image: ""
property string color: ""
property alias svgMask: svgMask
property alias imgMockColor: imgMockColor
width: 0
height: 0
Image {
id: svgMask
source: root.image
sourceSize.width: root.width
sourceSize.height: root.height
smooth: true
mipmap: true
visible: false
}
ColorOverlay {
id: imgMockColor
anchors.fill: root
source: svgMask
color: root.color
}
}

@ -14,7 +14,7 @@ ComboBox {
leftPadding: 0
rightPadding: parent.indicator.width + parent.spacing
text: parent.displayText
horizontalAlignment: Text.AlignLeft
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
elide: Text.ElideRight
}
@ -27,7 +27,7 @@ ComboBox {
horizontalAlignment: Text.AlignLeft
verticalAlignment: Text.AlignVCenter
text: parent.text
color: parent.enabled ? "#ffffff" : "#909090"
color: parent.enabled ? Style.fontColor : Style.fontColorDimmed
}
background: Rectangle {
color: parent.pressed ? "#406288" : (parent.hovered ? "#365473" : "#2c435d")
@ -61,11 +61,11 @@ ComboBox {
}
}
onActivated: {
if (activeFocus) {
MyResources.playActivationSound()
}
}
// onActivated: {
// if (activeFocus) {
// MyResources.playActivationSound()
// }
// }
Component.onCompleted: {
popup.background.color = "#2c435d"

@ -2,6 +2,8 @@ import QtQuick 2.7
import QtQuick.Controls 2.0
import QtQuick.Layouts 1.3
import "."
Popup {
id: myDialogPopup
@ -18,6 +20,7 @@ Popup {
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
Layout.fillWidth: true
fontColor: Style.fontColor
}
property bool okClicked: false
@ -37,8 +40,8 @@ Popup {
implicitHeight: dialogHeight
anchors.centerIn: parent
radius: 24
color: "#1b2939"
border.color: "#cccccc"
color: Style.backgroundColor
border.color: Style.fontColorDimmed
border.width: 2
ColumnLayout {
anchors.fill: parent
@ -49,7 +52,7 @@ Popup {
text: dialogTitle
}
Rectangle {
color: "#cccccc"
color: Style.fontColorDimmed
height: 1
Layout.fillWidth: true
}

@ -2,28 +2,32 @@ import QtQuick 2.7
import QtQuick.Controls 2.0
import QtQuick.Layouts 1.3
import "."
Popup {
id: myDialogPopup
property bool dismissible: true
implicitHeight: parent.height
implicitWidth: parent.width
property string dialogTitle: ""
property string dialogText: ""
property int dialogWidth: 800
property int dialogWidth: 900
property int dialogHeight: 300
property Item dialogContentItem: MyText {
fontSize:16
fontSize: 16
text: dialogText
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
Layout.fillWidth: true
wrap: true
}
property bool okClicked: false
closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutsideParent
closePolicy: myDialogPopup.dismissible ? Popup.CloseOnEscape | Popup.CloseOnPressOutsideParent : Popup.NoAutoClose
background: Rectangle {
color: "black"
@ -36,8 +40,8 @@ Popup {
implicitHeight: dialogHeight
anchors.centerIn: parent
radius: 24
color: "#1b2939"
border.color: "#cccccc"
color: Style.backgroundColor
border.color: Style.fontColorDimmed
border.width: 2
ColumnLayout {
anchors.fill: parent
@ -48,7 +52,7 @@ Popup {
text: dialogTitle
}
Rectangle {
color: "#cccccc"
color: Style.fontColorDimmed
height: 1
Layout.fillWidth: true
}
@ -64,6 +68,7 @@ Popup {
Layout.fillWidth: true
}
RowLayout {
visible: myDialogPopup.dismissible
Layout.fillWidth: true
Layout.leftMargin: 24
Layout.rightMargin: 24

@ -6,21 +6,20 @@ Rectangle {
id: root
property string text: ""
property int fontSize: 22
property string enteredColor: "#365473"
property string exitedColor: "#2c435d"
property string pressedColor: "#406288"
property alias mouseArea: mouseArea
property alias btnTextColor: btnText.fontColor
signal clicked;
Layout.preferredWidth: 92
Layout.preferredHeight: 92
color: root.exitedColor
color: Style.btnExitedColor
MyText {
id: btnText
anchors.verticalCenter: parent.verticalCenter
anchors.horizontalCenter: parent.horizontalCenter
color: "white"
fontColor: Style.btnTextColor
text: root.text
fontSize: root.fontSize
fontBold: true
@ -30,9 +29,18 @@ Rectangle {
id: mouseArea
anchors.fill: parent
hoverEnabled: true
onEntered: parent.color = root.enteredColor
onExited: parent.color = root.exitedColor
onPressed: parent.color = root.pressedColor
onEntered: {
parent.color = Style.btnEnteredColor
btnText.color = Style.btnTextHoverColor
}
onExited: {
parent.color = Style.btnExitedColor
btnText.color = Style.btnTextColor
}
onPressed: {
parent.color = Style.btnPressedColor
btnText.color = Style.btnTextHoverColor
}
onClicked: {
root.clicked();
}

@ -8,10 +8,6 @@ RowLayout {
property double amount: 0.0;
property bool add: true;
property string enteredColor: "#365473"
property string exitedColor: "#2c435d"
property string pressedColor: "#406288"
signal amountUpdated(double amount);
spacing: 24
@ -28,8 +24,8 @@ RowLayout {
Layout.preferredWidth: 128
Layout.preferredHeight: 112
color: root.add ? root.exitedColor : root.enteredColor
color: root.add ? Style.btnExitedColor : Style.btnPressedColor
btnTextColor: !root.add ? Style.btnTextHoverColor : Style.btnTextColor
text: "-"
MouseArea {
@ -37,15 +33,18 @@ RowLayout {
hoverEnabled: true
onEntered: {
if(!root.add) return;
parent.color = root.enteredColor
parent.color = Style.btnPressedColor
parent.btnTextColor = Style.btnTextHoverColor
}
onExited: {
if(!root.add) return;
parent.color = root.exitedColor
parent.color = Style.btnExitedColor
Style.btnTextHoverColor
}
onClicked: {
root.add = false;
plusButton.color = root.exitedColor
plusButton.color = Style.btnExitedColor
plusButton.btnTextColor = Style.btnTextColor;
}
}
}
@ -58,8 +57,8 @@ RowLayout {
Layout.preferredWidth: 128
Layout.preferredHeight: 112
color: root.add ? root.enteredColor : root.exitedColor
color: root.add ? Style.btnPressedColor : Style.btnExitedColor
btnTextColor: root.add ? Style.btnTextHoverColor : Style.btnTextColor
text: "+"
MouseArea {
@ -67,21 +66,23 @@ RowLayout {
hoverEnabled: true
onEntered: {
if(root.add) return;
parent.color = root.enteredColor
parent.color = Style.btnPressedColor
parent.btnTextColor = Style.btnTextHoverColor
}
onExited: {
if(root.add) return;
parent.color = root.exitedColor
parent.color = Style.btnExitedColor
}
onClicked: {
root.add = true;
minButton.color = root.exitedColor
minButton.color = Style.btnExitedColor
minButton.btnTextColor = Style.btnTextColor;
}
}
}
Rectangle {
color: "#cccccc"
color: Style.fontColorDimmed
width: 1
Layout.fillHeight: true
}
@ -92,7 +93,7 @@ RowLayout {
Layout.preferredHeight: 112
text: "0.001"
onClicked: {
root.add ? root.amount += 0.001 : root.amount -= 0.001;
root.add ? root.amount = WowletVR.add(root.amount, 0.001) : root.amount = WowletVR.sub(root.amount, 0.001);
if(root.amount <= 0.0) root.amount = 0.0;
amountUpdated(root.amount);
}
@ -104,7 +105,7 @@ RowLayout {
Layout.preferredHeight: 112
text: "0.01"
onClicked: {
root.add ? root.amount += 0.01 : root.amount -= 0.01;
root.add ? root.amount = WowletVR.add(root.amount, 0.01) : root.amount = WowletVR.sub(root.amount, 0.01);
if(root.amount <= 0.0) root.amount = 0.0;
amountUpdated(root.amount);
}
@ -116,7 +117,7 @@ RowLayout {
Layout.preferredHeight: 112
text: "0.1"
onClicked: {
root.add ? root.amount += 0.1 : root.amount -= 0.1;
root.add ? root.amount = WowletVR.add(root.amount, 0.1) : root.amount = WowletVR.sub(root.amount, 0.1);
if(root.amount <= 0.0) root.amount = 0.0;
amountUpdated(root.amount);
}
@ -128,7 +129,7 @@ RowLayout {
Layout.preferredHeight: 112
text: "1"
onClicked: {
root.add ? root.amount += 1.0 : root.amount -= 1.0;
root.add ? root.amount = WowletVR.add(root.amount, 1.0) : root.amount = WowletVR.sub(root.amount, 1.0);
if(root.amount <= 0.0) root.amount = 0.0;
amountUpdated(root.amount);
}
@ -140,7 +141,7 @@ RowLayout {
Layout.preferredHeight: 112
text: "10"
onClicked: {
root.add ? root.amount += 10.0 : root.amount -= 10.0;
root.add ? root.amount = WowletVR.add(root.amount, 10.0) : root.amount = WowletVR.sub(root.amount, 10.0);
if(root.amount <= 0.0) root.amount = 0.0;
amountUpdated(root.amount);
}
@ -152,7 +153,7 @@ RowLayout {
Layout.preferredHeight: 112
text: "100"
onClicked: {
root.add ? root.amount += 100.0 : root.amount -= 100.0;
root.add ? root.amount = WowletVR.add(root.amount, 100.0) : root.amount = WowletVR.sub(root.amount, 100.0);
if(root.amount <= 0.0) root.amount = 0.0;
amountUpdated(root.amount);
}
@ -164,7 +165,7 @@ RowLayout {
Layout.preferredHeight: 112
text: "1000"
onClicked: {
root.add ? root.amount += 1000.0 : root.amount -= 1000.0;
root.add ? root.amount = WowletVR.add(root.amount, 1000.0) : root.amount = WowletVR.sub(root.amount, 1000.0);
if(root.amount <= 0.0) root.amount = 0.0;
amountUpdated(root.amount);
}

@ -5,14 +5,14 @@ import "." // QTBUG-34418, singletons require explicit import to load qmldir fil
Item {
id: root
property string text: "testy"
property string text: "-"
property string iconPath: ""
property bool hasIcon: iconPath !== ""
property bool hoverEnabled: true
property bool activationSoundEnabled: true
property string enteredColor: "#365473"
property string exitedColor: "#2c435d"
property string pressedColor: "#406288"
property string enteredColor: Style.btnEnteredColor
property string exitedColor: Style.btnExitedColor
property string pressedColor: Style.btnPressedColor
signal clicked;
Layout.preferredHeight: 70
@ -23,22 +23,36 @@ Item {
anchors.verticalCenter: parent.verticalCenter
Layout.minimumHeight: 54
Image {
// Image {
// visible: hasIcon
// source: iconPath
// Layout.leftMargin: 20
// Layout.rightMargin: 20
// Layout.preferredWidth: 32
// Layout.preferredHeight: 32
// }
ImageMask {
id: backIcon
visible: hasIcon
source: iconPath
Layout.leftMargin: 20
Layout.rightMargin: 20
Layout.preferredWidth: 32
Layout.preferredHeight: 32
image: iconPath
color: Style.fontColorBright
}
MyText {
id: btnText
Layout.leftMargin: root.hasIcon ? 0 : 20
Layout.rightMargin: root.hasIcon ? 0 : 20
Layout.fillWidth: root.hasIcon ? true : false
Layout.alignment: root.hasIcon ? Qt.AlignLeft : Qt.AlignHCenter
text: root.text
fontSize: 16
fontColor: Style.btnTextColor
}
}
@ -46,14 +60,23 @@ Item {
z: root.z - 1
anchors.fill: root
Layout.fillWidth: root.Layout.fillWidth
color: root.down ? root.pressedColor : (root.activeFocus ? root.enteredColor : root.exitedColor)
color: root.down ? Style.btnPressedColor : (root.activeFocus ? Style.btnEnteredColor : Style.btnExitedColor)
MouseArea {
anchors.fill: parent
hoverEnabled: true
onEntered: parent.color = root.enteredColor
onExited: parent.color = root.exitedColor
onPressed: parent.color = root.pressedColor
onEntered: {
parent.color = Style.btnEnteredColor;
btnText.fontColor = Style.btnTextHoverColor;
}
onExited: {
parent.color = Style.btnExitedColor;
btnText.fontColor = Style.btnTextColor;
}
onPressed: {
parent.color = Style.btnPressedColor;
btnText.fontColor = Style.btnTextHoverColor;
}
onClicked: {
root.clicked();
}

@ -17,7 +17,7 @@ Slider {
width: parent.availableWidth
height: parent.availableHeight
radius: 2
color: parent.activeFocus ? "#2c435d" : "#1b2939"
color: "transparent"
Rectangle {
y: parent.height / 2 - height / 2
implicitHeight: 4

@ -10,7 +10,7 @@ import wowlet.Wallet 1.0
Rectangle {
id: root
color: "#1b2939"
color: "transparent"
width: 1600
height: 800
@ -18,9 +18,7 @@ Rectangle {
property string headerText: "Header Title"
property bool headerShowBackButton: true
property string enteredColor: "#365473"
property string exitedColor: "transparent"
property string pressedColor: "#406288"
signal backClicked();
@ -41,11 +39,13 @@ Rectangle {
Layout.preferredHeight: 50
Layout.preferredWidth: 50
Image {
source: "qrc:/backarrow"
sourceSize.width: 50
sourceSize.height: 50
ImageMask {
id: backIcon
anchors.fill: parent
image: "qrc:/backarrow"
color: Style.fontColorBright
width: 50
height: 50
}
}
@ -60,6 +60,7 @@ Rectangle {
text: headerText
font.pointSize: 26
anchors.verticalCenter: parent.verticalCenter
fontColor: Style.fontColorBright
}
}
}
@ -68,9 +69,21 @@ Rectangle {
enabled: headerShowBackButton
anchors.fill: parent
hoverEnabled: true
onEntered: parent.color = root.enteredColor
onExited: parent.color = root.exitedColor
onPressed: parent.color = root.pressedColor
onEntered: {
parent.color = Style.btnEnteredColor
headerTitle.fontColor = Style.btnTextHoverColor
backIcon.color = Style.btnTextHoverColor
}
onExited: {
parent.color = root.exitedColor
headerTitle.fontColor = Style.fontColorBright
backIcon.color = Style.fontColorBright
}
onPressed: {
parent.color = Style.btnPressedColor
headerTitle.fontColor = Style.btnTextHoverColor
backIcon.color = Style.btnTextHoverColor
}
onClicked: {
stackView.pop();
backClicked();
@ -100,7 +113,7 @@ Rectangle {
}
Rectangle {
color: "#cccccc"
color: Style.dividerColor
height: 1
Layout.topMargin: 10
Layout.fillWidth: true
@ -120,7 +133,7 @@ Rectangle {
}
Rectangle {
id: testy66
id: bigRect
color: "transparent"
Layout.fillWidth: true
@ -134,7 +147,7 @@ Rectangle {
anchors.leftMargin: 40
anchors.rightMargin: 40
color: "#cccccc"
color: Style.fontColorDimmed
height: 1
}
@ -150,13 +163,13 @@ Rectangle {
fontSize: 14
text: appWindow.statusText
color: "#cccccc"
color: Style.fontColorDimmed
}
Rectangle {
Layout.fillHeight: true
Layout.preferredWidth: 1
color: "#cccccc"
color: Style.fontColorDimmed
}
RowLayout {
@ -166,7 +179,7 @@ Rectangle {
MyText {
fontSize: 14
text: "Daemon: "
color: "#cccccc"
color: Style.fontColorDimmed
}
Image {
@ -191,7 +204,7 @@ Rectangle {
Rectangle {
Layout.fillHeight: true
Layout.preferredWidth: 1
color: "#cccccc"
color: Style.fontColorDimmed
}
RowLayout {
@ -201,7 +214,7 @@ Rectangle {
MyText {
fontSize: 14
text: "WS: "
color: "#cccccc"
color: Style.fontColorDimmed
}
Image {
@ -215,67 +228,17 @@ Rectangle {
Rectangle {
Layout.fillHeight: true
Layout.preferredWidth: 1
color: "#cccccc"
color: Style.fontColorDimmed
}
MyText {
fontSize: 14
text: "Fiat: $0.05 USD"
color: "#cccccc"
text: "Balance: " + WowletVR.amountToFiat(appWindow.spendable);
color: Style.fontColorDimmed
}
}
}
// Rectangle {
// z: 100
// color: "black"
// height: 64
// // anchors.bottom: parent.bottom
// // anchors.left: parent.left
// // anchors.right: parent.right
// Rectangle {
// anchors.top: parent.top
// anchors.left: parent.left
// anchors.right: parent.right
// anchors.leftMargin: 40
// anchors.rightMargin: 40
// color: "#cccccc"
// height: 1
// }
// RowLayout {
// spacing: 30
// anchors.left: parent.left
// anchors.leftMargin: 40
// anchors.rightMargin: 40
// anchors.verticalCenter: parent.verticalCenter
// MyText {
// fontSize: 14
// text: "Status: idle"
// }
// MyText {
// fontSize: 14
// text: "WS: OK"
// }
// MyText {
// fontSize: 14
// text: "Tor: OK"
// }
// MyText {
// fontSize: 14
// text: "Height: OK"
// }
// }
// }
Component.onCompleted: {
header.parent = mainLayout
header.Layout.leftMargin = 40
@ -290,6 +253,6 @@ Rectangle {
content.Layout.rightMargin = 40
content.Layout.bottomMargin = 40
testy66.parent = mainLayout
bigRect.parent = mainLayout
}
}

@ -1,15 +1,15 @@
import QtQuick 2.7
import QtQuick.Controls 2.0
import "."
Text {
property bool wrap: false
property int fontSize: 16
property bool fontBold: false
property string fontColor: "#ffffff"
property string fontColor: Style.fontColor
color: fontColor
font.bold: fontBold
font.pointSize: fontSize
wrapMode: wrap ? Text.WordWrap : Text.NoWrap
wrapMode: wrap ? Text.Wrap : Text.NoWrap
}

@ -8,14 +8,14 @@ TextField {
id: myTextField
echoMode: passwordField ? TextInput.Password : TextInput.Normal
color: "#cccccc"
color: Style.fontColorDimmed
text: ""
font.pointSize: 20
background: Button {
hoverEnabled: true
background: Rectangle {
color: parent.hovered ? "#2c435d" : "#1b2939"
border.color: "#cccccc"
border.color: Style.fontColorDimmed
border.width: 2
}
onClicked: {

@ -0,0 +1,31 @@
pragma Singleton
import QtQuick 2.7
// These color codes are overriden by assets/themes.json, we are just
// making sure the property names exist.
QtObject {
id: root
property string fontColor: "white"
property string fontColorDimmed: "#cccccc"
property string fontColorBright: "white"
property string backgroundGradientStartColor: "#194f64"
property string backgroundGradientStopColor: "#192e43"
property string backgroundColor: "#1b2939"
property string dividerColor: "#50ffffff"
property string btnEnteredColor: "#aa3b689b"
property string btnExitedColor: "#aa375c87"
property string btnPressedColor: "#aa467dbb"
property string btnTextColor: "white"
property string btnTextHoverColor: "white"
property string btnMainMenuBackground: "#aa3b689b"
property string historyBackgroundColor: "#2c435d"
property string historyBackgroundColorBright: "#406288"
property string historyFontColorPlusAmount: "#00d304"
property string historyFontColorMinAmount: "red"
}

@ -0,0 +1 @@
singleton Style 1.0 Style.qml

@ -27,8 +27,8 @@ Item {
MyText {
visible: txCount == 0
opacity: 0.75
text: "No transactions to display."
fontColor: Style.fontColorBright
}
ListView {
@ -46,7 +46,7 @@ Item {
anchors.left: parent ? parent.left : undefined
anchors.right: parent ? parent.right : undefined
height: 54
color: "#2c435d"
color: Style.historyBackgroundColor
property bool isout: false;
property string amount: "0";
@ -84,7 +84,7 @@ Item {
Rectangle {
Layout.preferredWidth: 56
Layout.fillHeight: true
color: "#406288"
color: Style.historyBackgroundColorBright
Image {
width: 32
@ -113,7 +113,7 @@ Item {
// date
anchors.verticalCenter: parent.verticalCenter
fontSize: 12
fontColor: "white"
fontColor: Style.fontColorBright
text: date
Component.onCompleted: {
@ -131,7 +131,7 @@ Item {
anchors.verticalCenter: parent.verticalCenter
fontSize: 14
text: description !== "" ? description : "..."
fontColor: description !== "" ? "white" : "#cccccc"
fontColor: description !== "" ? Style.fontColorBright : Style.fontColorDimmed
Component.onCompleted: {
parent.Layout.preferredWidth = width;
}
@ -145,7 +145,7 @@ Item {
Rectangle {
Layout.preferredWidth: 420
Layout.fillHeight: true
color: "#406288"
color: Style.historyBackgroundColorBright
MyText {
anchors.right: parent.right
@ -155,7 +155,7 @@ Item {
fontSize: 14
fontBold: true
text: amount
fontColor: !isout ? "#00d304" : "red"
fontColor: !isout ? Style.historyFontColorPlusAmount : Style.historyFontColorMinAmount
}
}
}

@ -30,6 +30,7 @@ MyStackViewPage {
width: parent.width
wrap: true
fontSize: 14
fontColor: Style.fontColorBright
text: "Give the following 4 digit PIN to the person that is sending you Wownero. PIN's are valid for 10 minutes and automatically renew."
}
}
@ -46,14 +47,14 @@ MyStackViewPage {
width: parent.width
visible: true
fontSize: 14
fontColor: Style.fontColorBright
text: "Generating PIN..."
}
Text {
id: pinText
visible: false
text: "- - - -"
color: "#ffffff"
color: Style.fontColor
font.bold: true
font.pointSize: 40
leftPadding: 20
@ -75,7 +76,7 @@ MyStackViewPage {
}
Rectangle {
color: "#cccccc"
color: Style.fontColorDimmed
width: 1
Layout.fillHeight: true
}
@ -93,6 +94,7 @@ MyStackViewPage {
width: parent.width
fontSize: 14
wrap: true
fontColor: Style.fontColorBright
text: "Alternatively, you may use one of the following methods to retreive your address."
}
}
@ -104,7 +106,8 @@ MyStackViewPage {
Layout.fillWidth: true
onClicked: {
//walletView.push(chaperoneAdditionalPage)
let address = ctx.getAddress(0, 1);
messagePopup.showMessage("Your Wownero receiving address", address);
}
}
@ -115,8 +118,9 @@ MyStackViewPage {
Layout.fillWidth: true
onClicked: {
MyResources.playFocusChangedSound()
walletView.push(chaperoneAdditionalPage)
let address = ctx.getAddress(0, 1);
WowletVR.setClipboard(address);
messagePopup.showMessage("Clipboard", "Address copied to clipboard.");
}
}
@ -127,7 +131,7 @@ MyStackViewPage {
Layout.fillWidth: true
onClicked: {
chaperoneNewProfileDialog.open();
}
}
@ -155,7 +159,6 @@ MyStackViewPage {
pinAskTimer.stop();
statusText.visible = true;
statusText.text = "Generating PIN...";
pinText.visible = false;
pinText.text = "- - - -";
}
@ -182,7 +185,6 @@ MyStackViewPage {
function onPinReceived(pin) {
console.log("onPINReceived", pin);
statusText.visible = false;
pinText.visible = true;
pinText.text = pin[0] + " " + pin[1] + " " + pin[2] + " " + pin[3];
}
}

@ -72,8 +72,7 @@ MyStackViewPage {
text: "Close"
Layout.fillWidth: true
onClicked: {
//MyResources.playFocusChangedSound()
ctx.onCloseWallet(true, true);
ctx.closeWallet(true, true);
mainView.pop();
}
}

@ -13,10 +13,6 @@ MyStackViewPage {
property string destinationAddress: ""
property string enteredColor: "#365473"
property string exitedColor: "#2c435d"
property string pressedColor: "#406288"
content: ColumnLayout {
id: sendStateView
property Item currentView

@ -11,6 +11,7 @@ ColumnLayout {
MyText {
Layout.fillWidth: true
wrap: true
fontColor: Style.fontColorBright
text: "How to transfer Wownero?"
}
@ -19,39 +20,19 @@ ColumnLayout {
Layout.fillWidth: true
spacing: 30
Rectangle {
color: sendStateController.exitedColor
Layout.fillWidth: true
Layout.fillHeight: true
MouseArea {
anchors.fill: parent
hoverEnabled: true
onEntered: parent.color = sendStateController.enteredColor
onExited: parent.color = sendStateController.exitedColor
onPressed: parent.color = sendStateController.pressedColor
onClicked: {
sendStateView.state = "pinPage";
}
SendPageDashboardButton {
displayText: "Send via PIN"
onClicked: {
sendStateView.state = "pinPage";
}
}
Rectangle {
color: sendStateController.exitedColor
Layout.fillWidth: true
Layout.fillHeight: true
}
MouseArea {
anchors.fill: parent
hoverEnabled: true
onEntered: parent.color = sendStateController.enteredColor
onExited: parent.color = sendStateController.exitedColor
onPressed: parent.color = sendStateController.pressedColor
onClicked: {
sendStateView.state = "qrPage";
}
SendPageDashboardButton {
displayText: "Send via QR code"
onClicked: {
sendStateView.state = "qrPage";
}
}
}
}
Item {

@ -0,0 +1,44 @@
import QtQuick 2.7
import QtQuick.Controls 2.0
import QtQuick.Layouts 1.3
import "../../common"
Rectangle {
id: root
color: Style.btnExitedColor
Layout.fillWidth: true
Layout.fillHeight: true
property string displayText: ""
signal clicked();
MyText{
id: btnText
text: displayText
fontSize: 24
fontColor: Style.btnTextColor
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
}
MouseArea {
anchors.fill: parent
hoverEnabled: true
onEntered: {
parent.color = Style.btnEnteredColor;
btnText.fontColor = Style.btnTextHoverColor;
}
onExited: {
parent.color = Style.btnExitedColor;
btnText.fontColor = Style.btnTextColor;
}
onPressed: {
parent.color = Style.btnPressedColor;
btnText.fontColor = Style.btnTextHoverColor;
}
onClicked: {
root.clicked();
}
}
}

@ -14,6 +14,7 @@ ColumnLayout {
MyText {
Layout.fillWidth: true
wrap: true
fontColor: Style.fontColorBright
text: "Enter a 4 digit PIN and wait for it to resolve."
}
@ -66,7 +67,7 @@ ColumnLayout {
Layout.preferredWidth: 390
visible: true
text: "0 0 0 0"
color: "#ffffff"
color: Style.fontColor
font.bold: true
font.pointSize: 40
leftPadding: 20
@ -87,7 +88,7 @@ ColumnLayout {
}
Rectangle {
color: "#cccccc"
color: Style.fontColorDimmed
width: 1
Layout.fillHeight: true
}
@ -105,6 +106,7 @@ ColumnLayout {
MyText {
fontSize: 18
fontColor: Style.fontColorBright
text: "Waiting on input..."
}
}
@ -118,6 +120,7 @@ ColumnLayout {
MyText {
fontSize: 18
fontColor: Style.fontColorBright
text: "Looking up address..."
}
@ -128,6 +131,7 @@ ColumnLayout {
MyText {
fontBold: true
fontColor: Style.fontColorBright
text: "Code:"
}
@ -136,45 +140,6 @@ ColumnLayout {
}
}
}
// Image {
// visible: false
// id: loadingImage
// source: "qrc:/illuminati"
// sourceSize.width: 400
// sourceSize.height: 400
// }
ColumnLayout {
id: foundContainer
visible: false
spacing: 30
Layout.fillWidth: true
RowLayout {
spacing: 20
Layout.fillWidth: true
MyText {
fontBold: true
text: "Address found:"
}
MyText {
text: "WW2xG...gKgrcC7"
}
}
MyPushButton {
id: continueButton
text: "Continue"
Layout.preferredWidth: 220
onClicked: {
//
}
}
}
}
}
@ -190,7 +155,6 @@ ColumnLayout {
_PINLookup = code;
idleContainer.visible = false;
foundContainer.visible = false;
loadingContainer.visible = true;
numPad.enabled = false;
@ -202,13 +166,11 @@ ColumnLayout {
reset();
}
function reset() {
// reset state
_PINLookup = "";
idleContainer.visible = true;
foundContainer.visible = false;
loadingContainer.visible = false;
sendStateController.destinationAddress = "";

@ -14,6 +14,7 @@ ColumnLayout {
MyText {
Layout.fillWidth: true
wrap: true
fontColor: Style.fontColorBright
text: "Look at a QR code in VR and take a screenshot."
}
@ -32,6 +33,7 @@ ColumnLayout {
visible: false
Layout.fillWidth: true
wrap: true
fontColor: Style.fontColorBright
text: "Status message."
}

@ -1,21 +1,23 @@
import QtQuick 2.7
import QtQuick.Controls 2.0
import QtQuick.Layouts 1.3
import "../../common"
ColumnLayout {
id: root
spacing: 30
property string txDialogText: ""
property double amount: 0.0
property bool canSend: false
property bool isSending: false
Layout.fillWidth: true
MyText {
Layout.fillWidth: true
wrap: true
fontColor: Style.fontColorBright
text: "How much would you like to send?"
}
@ -27,10 +29,13 @@ ColumnLayout {
onAmountUpdated: {
root.amount = amount;
fiatText.text = WowletVR.amountToFiat(root.amount);
// @TODO: create tx validation here
// @TODO: tx validation here
if(root.amount <= 0) {
root.canSend = false;
} else if(root.amount > appWindow.spendable) {
root.canSend = false;
} else {
root.canSend = true;
}
@ -68,10 +73,11 @@ ColumnLayout {
Rectangle {
color: "transparent"
Layout.fillWidth: true
Layout.preferredHeight: 48
Layout.preferredHeight: 68
MyText {
fontSize: 18
fontSize: 24
fontColor: Style.fontColorBright
text: root.amount + " WOW"
anchors.verticalCenter: parent.verticalCenter
anchors.right: parent.right
@ -102,8 +108,10 @@ ColumnLayout {
Layout.preferredHeight: 48
MyText {
id: fiatText
fontSize: 18
text: "$853.20 USD"
fontColor: Style.fontColorBright
text: "$0.00 USD"
anchors.verticalCenter: parent.verticalCenter
anchors.right: parent.right
}
@ -133,7 +141,8 @@ ColumnLayout {
Layout.preferredHeight: 48
MyText {
text: destinationAddress
text: destinationAddress.slice(0, 12) + "...";
fontColor: Style.fontColorBright
anchors.verticalCenter: parent.verticalCenter
anchors.right: parent.right
}
@ -153,19 +162,12 @@ ColumnLayout {
}
}
Item {
Layout.fillWidth: true
Layout.fillHeight: true
}
RowLayout {
Layout.preferredWidth: parent.width
Layout.preferredHeight: 128
MyPushButton {
id: keyboardButton
enabled: !isSending
opacity: isSending ? 0.5 : 1.0
Layout.preferredWidth: 700
text: "Enter amount via virtual keyboard"
@ -186,23 +188,100 @@ ColumnLayout {
text: "Create transaction"
onClicked: {
currentWallet.createTransactionAsync(addresses, paymentId, amountsxmr, mixinCount, priority);
WowletVR.onCreateTransaction(destinationAddress, root.amount, "", false); // no description
sendButton.enabled = false;
}
}
}
Item {
Layout.fillWidth: true
Layout.fillHeight: true
}
Connections {
target: OverlayController
function onKeyBoardInputSignal(input, userValue) {
if (userValue == 1337) {
let val = parseFloat(input);
myNumPadSendAmount.onAmountUpdated(val);
if(val >= 0)
myNumPadSendAmount.onAmountUpdated(val);
}
}
}
Connections {
target: ctx
function onInitiateTransaction() {
console.log("transactionStarted");
mainView.opacity = 0.4;
mainView.enabled = false;
root.canSend = false;
root.txDialogText = "Busy creating transaction. Hold on tight!";
waitPopup.open();
}
function onCreateTransactionError(message) { // str
console.log("onCreateTransactionError", message);
waitPopup.close();
mainView.opacity = 1.0;
mainView.enabled = true;
root.canSend = true;
root.txDialogText = "";
messagePopup.showMessage("Error creating tx", message);
}
function onCreateTransactionSuccess(tx, address) { // PendingTransaction
console.log("onCreateTransactionSuccess", address)
root.txDialogText = "Submitting transaction to the Wownero network.";
}
function onTransactionCommitted(status, tx, txid) { // bool,PendingTransaction,stringlist
console.log("onTransactionCommitted", status);
waitPopup.close();
mainView.opacity = 1.0;
mainView.enabled = true;
root.canSend = true;
root.txDialogText = "";
walletView.pop();
}
}
function onPageCompleted(previousView){
}
Popup {
id: waitPopup
implicitHeight: 100
implicitWidth: 1200
x: (parent.width - width) / 2
y: (parent.height - height) / 2
ColumnLayout {
anchors.fill: parent
MyText {
Layout.alignment: Qt.AlignHCenter
fontColor: Style.fontColor
text: root.txDialogText
}
}
background: Rectangle {
color: "black"
opacity: 0.8
}
}
Component.onCompleted: {
}
}
Loading…
Cancel
Save