Browse Source

Merge branch 'dev' of https://git.hush.is/hush/SilentDragonLite into onryo

onryo
onryo 1 year ago
parent
commit
c5f437d9f3
  1. 2
      README.md
  2. BIN
      res/images/silentdragonlite.png
  3. 2
      src/addressbook.h
  4. 6
      src/balancestablemodel.h
  5. 6
      src/controller.h
  6. 11
      src/firsttimewizard.h
  7. 6
      src/memoedit.h
  8. 4
      src/recurring.h
  9. 2
      src/viewalladdresses.h

2
README.md

@ -2,7 +2,7 @@
SilentDragonLite is a lightwallet for HUSH ($HUSH) runs on Linux and Windows which does not require you to download the full blockchain. This is experimental software under active development!
![HushChat screenshot](https://git.hush.is/attachments/d85d2bf3-3430-47e7-98a7-7017bfa19259)
<img src="res/images/silentdragonlite.png" width="750">
## PRIVACY NOTICE

BIN
res/images/silentdragonlite.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 123 KiB

2
src/addressbook.h

@ -11,6 +11,8 @@ class MainWindow;
class AddressBookModel : public QAbstractTableModel {
Q_OBJECT
public:
AddressBookModel(QTableView* parent);
~AddressBookModel();

6
src/balancestablemodel.h

@ -8,8 +8,10 @@
#include "camount.h"
class BalancesTableModel : public QAbstractTableModel
{
class BalancesTableModel : public QAbstractTableModel {
Q_OBJECT
public:
BalancesTableModel(QObject* parent);
~BalancesTableModel();

6
src/controller.h

@ -29,8 +29,10 @@ struct WatchedTx {
};
class Controller
{
class Controller {
Q_OBJECT
public:
Controller(MainWindow* main);
~Controller();

11
src/firsttimewizard.h

@ -9,8 +9,7 @@
#include "ui_newwallet.h"
#include "mainwindow.h"
class FirstTimeWizard: public QWizard
{
class FirstTimeWizard: public QWizard {
Q_OBJECT
@ -51,6 +50,8 @@ private:
class NewOrRestorePage: public QWizardPage {
Q_OBJECT
public:
NewOrRestorePage(FirstTimeWizard* parent);
@ -65,6 +66,9 @@ private:
class NewSeedPage: public QWizardPage {
Q_OBJECT
public:
NewSeedPage(FirstTimeWizard* parent);
@ -80,6 +84,9 @@ private:
class RestoreSeedPage: public QWizardPage {
Q_OBJECT
public:
RestoreSeedPage(FirstTimeWizard* parent);

6
src/memoedit.h

@ -5,8 +5,10 @@
#include "precompiled.h"
class MemoEdit : public QPlainTextEdit
{
class MemoEdit : public QPlainTextEdit {
Q_OBJECT
public:
MemoEdit(QWidget* parent);

4
src/recurring.h

@ -121,6 +121,8 @@ private:
// Model for list of configured recurring payments
class RecurringListViewModel : public QAbstractTableModel {
Q_OBJECT
public:
RecurringListViewModel(QTableView* parent);
~RecurringListViewModel() = default;
@ -138,6 +140,8 @@ private:
// Model for history of payments
class RecurringPaymentsListViewModel : public QAbstractTableModel {
Q_OBJECT
public:
RecurringPaymentsListViewModel(QTableView* parent, RecurringPaymentInfo rpi);
~RecurringPaymentsListViewModel() = default;

2
src/viewalladdresses.h

@ -8,6 +8,8 @@
class ViewAllAddressesModel : public QAbstractTableModel {
Q_OBJECT
public:
ViewAllAddressesModel(QTableView* parent, QList<QString> taddrs, Controller* rpc);
~ViewAllAddressesModel() = default;

Loading…
Cancel
Save