2015-04-01 08:56:05 +00:00
|
|
|
// Copyright (c) 2014-2015, The Monero Project
|
|
|
|
//
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms, with or without modification, are
|
|
|
|
// permitted provided that the following conditions are met:
|
|
|
|
//
|
|
|
|
// 1. Redistributions of source code must retain the above copyright notice, this list of
|
|
|
|
// conditions and the following disclaimer.
|
|
|
|
//
|
|
|
|
// 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
|
|
|
// of conditions and the following disclaimer in the documentation and/or other
|
|
|
|
// materials provided with the distribution.
|
|
|
|
//
|
|
|
|
// 3. Neither the name of the copyright holder nor the names of its contributors may be
|
|
|
|
// used to endorse or promote products derived from this software without specific
|
|
|
|
// prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
|
|
|
|
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
|
|
|
// THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
|
|
|
// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
2014-07-07 17:08:30 +00:00
|
|
|
#include <QApplication>
|
|
|
|
#include <QQmlApplicationEngine>
|
2014-07-16 12:40:09 +00:00
|
|
|
#include <QtQml>
|
2016-02-08 07:58:01 +00:00
|
|
|
#include <QStandardPaths>
|
2016-07-27 19:32:33 +00:00
|
|
|
#include <QDebug>
|
2014-07-16 12:40:09 +00:00
|
|
|
#include "clipboardAdapter.h"
|
2014-07-07 17:08:30 +00:00
|
|
|
#include "filter.h"
|
2016-02-03 15:37:10 +00:00
|
|
|
#include "oscursor.h"
|
2016-06-10 13:41:13 +00:00
|
|
|
#include "oshelper.h"
|
2016-02-23 15:59:26 +00:00
|
|
|
#include "WalletManager.h"
|
|
|
|
#include "Wallet.h"
|
2016-06-16 14:13:46 +00:00
|
|
|
#include "PendingTransaction.h"
|
2016-07-19 20:31:09 +00:00
|
|
|
#include "TranslationManager.h"
|
2016-10-04 20:12:58 +00:00
|
|
|
#include "TransactionInfo.h"
|
2016-10-02 18:40:40 +00:00
|
|
|
#include "model/TransactionHistoryModel.h"
|
2014-07-07 17:08:30 +00:00
|
|
|
|
2016-06-10 13:41:13 +00:00
|
|
|
|
|
|
|
|
2014-07-07 17:08:30 +00:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
QApplication app(argc, argv);
|
2016-06-15 10:25:45 +00:00
|
|
|
|
2016-07-27 19:32:33 +00:00
|
|
|
qDebug() << "app startd";
|
|
|
|
|
2016-06-15 10:25:45 +00:00
|
|
|
app.setApplicationName("monero-core");
|
|
|
|
app.setOrganizationDomain("getmonero.org");
|
|
|
|
app.setOrganizationName("The Monero Project");
|
|
|
|
|
2014-07-07 17:08:30 +00:00
|
|
|
filter *eventFilter = new filter;
|
|
|
|
app.installEventFilter(eventFilter);
|
|
|
|
|
2016-10-02 18:40:40 +00:00
|
|
|
qmlRegisterType<clipboardAdapter>("moneroComponents.Clipboard", 1, 0, "Clipboard");
|
|
|
|
|
|
|
|
qmlRegisterUncreatableType<Wallet>("moneroComponents.Wallet", 1, 0, "Wallet", "Wallet can't be instantiated directly");
|
2016-07-19 20:31:09 +00:00
|
|
|
|
|
|
|
|
2016-10-02 18:40:40 +00:00
|
|
|
qmlRegisterUncreatableType<PendingTransaction>("moneroComponents.PendingTransaction", 1, 0, "PendingTransaction",
|
2016-06-16 14:13:46 +00:00
|
|
|
"PendingTransaction can't be instantiated directly");
|
2016-07-13 12:24:40 +00:00
|
|
|
|
2016-10-02 18:40:40 +00:00
|
|
|
qmlRegisterUncreatableType<WalletManager>("moneroComponents.WalletManager", 1, 0, "WalletManager",
|
2016-07-19 20:31:09 +00:00
|
|
|
"WalletManager can't be instantiated directly");
|
|
|
|
|
|
|
|
qmlRegisterUncreatableType<TranslationManager>("moneroComponents", 1, 0, "TranslationManager",
|
|
|
|
"TranslationManager can't be instantiated directly");
|
|
|
|
|
2016-06-28 19:37:14 +00:00
|
|
|
qRegisterMetaType<PendingTransaction::Priority>();
|
2016-06-07 13:26:25 +00:00
|
|
|
|
2016-10-04 20:12:58 +00:00
|
|
|
qRegisterMetaType<TransactionInfo::Direction>();
|
|
|
|
|
2014-07-16 12:40:09 +00:00
|
|
|
|
2016-10-02 18:40:40 +00:00
|
|
|
qmlRegisterUncreatableType<TransactionHistoryModel>("moneroComponents", 1, 0, "TransactionHistoryModel",
|
|
|
|
"TranslationManager can't be instantiated directly");
|
2016-08-23 08:55:51 +00:00
|
|
|
|
|
|
|
|
2014-07-07 17:08:30 +00:00
|
|
|
QQmlApplicationEngine engine;
|
2016-02-03 15:37:10 +00:00
|
|
|
|
|
|
|
OSCursor cursor;
|
|
|
|
engine.rootContext()->setContextProperty("globalCursor", &cursor);
|
2016-06-10 13:41:13 +00:00
|
|
|
OSHelper osHelper;
|
|
|
|
engine.rootContext()->setContextProperty("oshelper", &osHelper);
|
|
|
|
|
2016-02-23 15:59:26 +00:00
|
|
|
engine.rootContext()->setContextProperty("walletManager", WalletManager::instance());
|
2016-02-03 15:37:10 +00:00
|
|
|
|
2016-07-19 20:31:09 +00:00
|
|
|
engine.rootContext()->setContextProperty("translationManager", TranslationManager::instance());
|
|
|
|
|
2016-08-23 08:55:51 +00:00
|
|
|
|
2016-02-08 07:58:01 +00:00
|
|
|
// export to QML monero accounts root directory
|
|
|
|
// wizard is talking about where
|
|
|
|
// to save the wallet file (.keys, .bin), they have to be user-accessible for
|
|
|
|
// backups - I reckon we save that in My Documents\Monero Accounts\ on
|
|
|
|
// Windows, ~/Monero Accounts/ on nix / osx
|
2016-02-24 10:25:20 +00:00
|
|
|
|
2016-02-08 07:58:01 +00:00
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
QStringList moneroAccountsRootDir = QStandardPaths::standardLocations(QStandardPaths::DocumentsLocation);
|
|
|
|
#elif defined(Q_OS_UNIX)
|
|
|
|
QStringList moneroAccountsRootDir = QStandardPaths::standardLocations(QStandardPaths::HomeLocation);
|
|
|
|
#endif
|
2016-02-24 10:25:20 +00:00
|
|
|
|
2016-02-08 07:58:01 +00:00
|
|
|
if (!moneroAccountsRootDir.empty()) {
|
2016-02-24 10:25:20 +00:00
|
|
|
QString moneroAccountsDir = moneroAccountsRootDir.at(0) + "/Monero Accounts";
|
|
|
|
QDir tempDir;
|
|
|
|
tempDir.mkpath(moneroAccountsDir);
|
|
|
|
engine.rootContext()->setContextProperty("moneroAccountsDir", moneroAccountsDir);
|
2016-02-08 07:58:01 +00:00
|
|
|
}
|
|
|
|
|
2014-08-19 12:58:02 +00:00
|
|
|
engine.rootContext()->setContextProperty("applicationDirectory", QApplication::applicationDirPath());
|
2014-07-07 17:08:30 +00:00
|
|
|
engine.load(QUrl(QStringLiteral("qrc:///main.qml")));
|
|
|
|
QObject *rootObject = engine.rootObjects().first();
|
|
|
|
|
2014-07-13 12:27:50 +00:00
|
|
|
QObject::connect(eventFilter, SIGNAL(sequencePressed(QVariant,QVariant)), rootObject, SLOT(sequencePressed(QVariant,QVariant)));
|
|
|
|
QObject::connect(eventFilter, SIGNAL(sequenceReleased(QVariant,QVariant)), rootObject, SLOT(sequenceReleased(QVariant,QVariant)));
|
2014-07-09 14:18:48 +00:00
|
|
|
QObject::connect(eventFilter, SIGNAL(mousePressed(QVariant,QVariant,QVariant)), rootObject, SLOT(mousePressed(QVariant,QVariant,QVariant)));
|
|
|
|
QObject::connect(eventFilter, SIGNAL(mouseReleased(QVariant,QVariant,QVariant)), rootObject, SLOT(mouseReleased(QVariant,QVariant,QVariant)));
|
2014-07-07 17:08:30 +00:00
|
|
|
|
2016-09-26 19:55:25 +00:00
|
|
|
// WalletManager::instance()->setLogLevel(WalletManager::LogLevel_Max);
|
2016-08-23 07:32:01 +00:00
|
|
|
|
2014-07-07 17:08:30 +00:00
|
|
|
return app.exec();
|
|
|
|
}
|