Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
8f3b79c
initial paper wallet commit
bit-bucks May 22, 2016
fed2b27
initial paper wallet commit
bit-bucks May 22, 2016
64b0b60
initial paper wallet commit
bit-bucks May 22, 2016
0872f95
initial paper wallet commit
bit-bucks May 22, 2016
67ffaf2
initial paper wallet commit
bit-bucks May 22, 2016
7cbb64b
initial paper wallet commit
bit-bucks May 22, 2016
1dcac8c
initial paper wallet commit
bit-bucks May 22, 2016
7047185
initial paper wallet commit
bit-bucks May 22, 2016
a101a9a
initial paper wallet commit
bit-bucks May 22, 2016
ca39568
initial paper wallet commit
bit-bucks May 22, 2016
680917a
initial paper wallet commit
bit-bucks May 22, 2016
f7b3aef
initial paper wallet commit
bit-bucks May 22, 2016
c8406e5
initial paper wallet commit
bit-bucks May 22, 2016
ac095e7
initial paper wallet commit
bit-bucks May 22, 2016
5c353e3
Update genandprintdialog.ui
bit-bucks Jun 10, 2016
a65d98d
Update darknet.qrc
bit-bucks Jun 10, 2016
160766d
Update darknet.cpp
bit-bucks Jun 10, 2016
a331e22
Update bitcoingui.cpp
bit-bucks Jun 10, 2016
36356e6
Update utilitydialog.h
bit-bucks Jun 10, 2016
9dee0d8
Update utilitydialog.cpp
bit-bucks Jun 10, 2016
ab4c47d
Update walletmodel.cpp
bit-bucks Jun 10, 2016
1515b9b
CKey , Encryptionstatus
bit-bucks Jun 10, 2016
88d6eca
Ckey generateNewKey()
bit-bucks Jun 10, 2016
101ad3d
Ckey encrypt, decrypt, append paper account to addressbook
bit-bucks Jun 10, 2016
0b82ab0
fix naming
bit-bucks Jun 10, 2016
94c205e
append network checks
bit-bucks Jun 10, 2016
a3e1f3e
initial paper wallet commit
bit-bucks Jun 10, 2016
2481011
initial paper wallet commit
bit-bucks Jun 10, 2016
92f60be
initial paper wallet commit, fulfill dependencies
bit-bucks Jun 10, 2016
1731bd5
initial paper wallet commit, fulfill dependencies
bit-bucks Jun 10, 2016
009cbd8
initial paper wallet commit, fulfill dependencies
bit-bucks Jun 10, 2016
1f7d037
initial paper wallet commit, fulfill dependencies
bit-bucks Jun 10, 2016
d47d0e0
initial paper wallet commit, fulfill dependencies
bit-bucks Jun 10, 2016
91a434c
initial paper wallet commit, fulfill dependencies
bit-bucks Jun 10, 2016
738f89b
initial paper wallet commit append QT extra deps
bit-bucks Jun 10, 2016
f450190
initial paper wallet commit append QT extra deps
bit-bucks Jun 10, 2016
7667eac
initial paper wallet commit
bit-bucks Jun 10, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions build-aux/m4/bitcoin_qt.m4
Original file line number Diff line number Diff line change
Expand Up @@ -113,13 +113,16 @@ AC_DEFUN([BITCOIN_QT_CONFIGURE],[
if test x$qt_plugin_path != x; then
QT_LIBS="$QT_LIBS -L$qt_plugin_path/accessible"
QT_LIBS="$QT_LIBS -L$qt_plugin_path/platforms"
QT_LIBS="$QT_LIBS -L$qt_plugin_path/printsupport"
fi
if test x$use_pkgconfig = xyes; then
PKG_CHECK_MODULES([QTPLATFORM], [Qt5PlatformSupport], [QT_LIBS="$QTPLATFORM_LIBS $QT_LIBS"])
fi
_BITCOIN_QT_CHECK_STATIC_PLUGINS([Q_IMPORT_PLUGIN(AccessibleFactory)], [-lqtaccessiblewidgets])
if test x$TARGET_OS = xwindows; then
_BITCOIN_QT_CHECK_STATIC_PLUGINS([Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin)],[-lqwindows])
_BITCOIN_QT_CHECK_STATIC_PLUGINS([Q_IMPORT_PLUGIN(QMinimalIntegrationPlugin)],[-lqminimal])
_BITCOIN_QT_CHECK_STATIC_PLUGINS([Q_IMPORT_PLUGIN(QWindowsPrinterSupportPlugin)],[-lwindowsprintersupport])
AC_DEFINE(QT_QPA_PLATFORM_WINDOWS, 1, [Define this symbol if the qt platform is windows])
elif test x$TARGET_OS = xlinux; then
PKG_CHECK_MODULES([X11XCB], [x11-xcb], [QT_LIBS="$X11XCB_LIBS $QT_LIBS"])
Expand All @@ -146,8 +149,9 @@ AC_DEFUN([BITCOIN_QT_CONFIGURE],[
Q_IMPORT_PLUGIN(qjpcodecs)
Q_IMPORT_PLUGIN(qtwcodecs)
Q_IMPORT_PLUGIN(qkrcodecs)
Q_IMPORT_PLUGIN(AccessibleFactory)],
[-lqcncodecs -lqjpcodecs -lqtwcodecs -lqkrcodecs -lqtaccessiblewidgets])
Q_IMPORT_PLUGIN(AccessibleFactory)
Q_IMPORT_PLUGIN(QWindowsPrinterSupportPlugin)],
[-lqcncodecs -lqjpcodecs -lqtwcodecs -lqkrcodecs -lqtaccessiblewidgets -lwindowsprintersupport])
fi
fi
CPPFLAGS=$TEMP_CPPFLAGS
Expand Down Expand Up @@ -301,7 +305,7 @@ AC_DEFUN([_BITCOIN_QT_FIND_LIBS_WITH_PKGCONFIG],[
QT_LIB_PREFIX=Qt
bitcoin_qt_got_major_vers=4
fi
qt5_modules="Qt5Core Qt5Gui Qt5Network Qt5Widgets"
qt5_modules="Qt5Core Qt5Gui Qt5Network Qt5Widgets Qt5PrintSupport"
qt4_modules="QtCore QtGui QtNetwork"
BITCOIN_QT_CHECK([
if test x$bitcoin_qt_want_version = xqt5 || ( test x$bitcoin_qt_want_version = xauto && test x$auto_priority_version = xqt5 ); then
Expand Down Expand Up @@ -345,7 +349,7 @@ AC_DEFUN([_BITCOIN_QT_FIND_LIBS_WITHOUT_PKGCONFIG],[
TEMP_LIBS="$LIBS"
BITCOIN_QT_CHECK([
if test x$qt_include_path != x; then
QT_INCLUDES="-I$qt_include_path -I$qt_include_path/QtCore -I$qt_include_path/QtGui -I$qt_include_path/QtWidgets -I$qt_include_path/QtNetwork -I$qt_include_path/QtTest -I$qt_include_path/QtDBus"
QT_INCLUDES="-I$qt_include_path -I$qt_include_path/QtCore -I$qt_include_path/QtGui -I$qt_include_path/QtWidgets -I$qt_include_path/QtNetwork -I$qt_include_path/QtTest -I$qt_include_path/QtDBus -I$qt_include_path/QtPrintSupport"
CPPFLAGS="$QT_INCLUDES $CPPFLAGS"
fi
])
Expand Down Expand Up @@ -387,6 +391,7 @@ AC_DEFUN([_BITCOIN_QT_FIND_LIBS_WITHOUT_PKGCONFIG],[
BITCOIN_QT_CHECK(AC_CHECK_LIB([${QT_LIB_PREFIX}Network],[main],,BITCOIN_QT_FAIL(lib$QT_LIB_PREFIXNetwork not found)))
if test x$bitcoin_qt_got_major_vers = x5; then
BITCOIN_QT_CHECK(AC_CHECK_LIB([${QT_LIB_PREFIX}Widgets],[main],,BITCOIN_QT_FAIL(lib$QT_LIB_PREFIXWidgets not found)))
BITCOIN_QT_CHECK(AC_CHECK_LIB([${QT_LIB_PREFIX}PrintSupport],[main],,BITCOIN_QT_FAIL(lib$QT_LIB_PREFIXPrintSupport not found)))
fi
QT_LIBS="$LIBS"
LIBS="$TEMP_LIBS"
Expand All @@ -412,4 +417,3 @@ AC_DEFUN([_BITCOIN_QT_FIND_LIBS_WITHOUT_PKGCONFIG],[
CPPFLAGS="$TEMP_CPPFLAGS"
LIBS="$TEMP_LIBS"
])

6 changes: 6 additions & 0 deletions contrib/darknet-qt.pro
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ DEPENDPATH += . \
src/qt/forms \
src/qt/locale \
src/qt/test \
src/qt/forms/html \
src/secp256k1/include \
src/secp256k1/src \
src/test/data \
Expand Down Expand Up @@ -177,6 +178,7 @@ HEADERS += src/activemasternode.h \
src/qt/csvmodelwriter.h \
src/qt/obfuscationconfig.h \
src/qt/editaddressdialog.h \
src/qt/genandprintdialog.h \
src/qt/guiconstants.h \
src/qt/guiutil.h \
src/qt/intro.h \
Expand Down Expand Up @@ -343,6 +345,7 @@ FORMS += src/qt/forms/addressbookpage.ui \
src/qt/forms/coincontroldialog.ui \
src/qt/forms/obfuscationconfig.ui \
src/qt/forms/editaddressdialog.ui \
src/qt/forms/genandprintdialog.ui \
src/qt/forms/helpmessagedialog.ui \
src/qt/forms/intro.ui \
src/qt/forms/openuridialog.ui \
Expand Down Expand Up @@ -474,6 +477,7 @@ SOURCES += src/activemasternode.cpp \
src/qt/darknet.cpp \
src/qt/darknetstrings.cpp \
src/qt/editaddressdialog.cpp \
src/qt/genandprintdialog.cpp \
src/qt/guiutil.cpp \
src/qt/intro.cpp \
src/qt/networkstyle.cpp \
Expand Down Expand Up @@ -642,6 +646,8 @@ SOURCES += src/activemasternode.cpp \
src/leveldb/helpers/memenv/memenv_test.cc \
src/secp256k1/src/java/org_bitcoin_NativeSecp256k1.c
RESOURCES += src/qt/darknet.qrc src/qt/darknet_locale.qrc
QT += \
printsupport
TRANSLATIONS += src/qt/locale/darknet_bg.ts \
src/qt/locale/darknet_de.ts \
src/qt/locale/darknet_en.ts \
Expand Down
2 changes: 1 addition & 1 deletion depends/packages/qt.mk
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ $(package)_sha256_hash=84e924181d4ad6db00239d87250cc89868484a14841f77fb85ab1f1db
$(package)_dependencies=openssl
$(package)_linux_dependencies=freetype fontconfig dbus libxcb libX11 xproto libXext
$(package)_build_subdir=qtbase
$(package)_qt_libs=corelib network widgets gui plugins testlib
$(package)_qt_libs=corelib network widgets gui plugins testlib printsupport
$(package)_patches=mac-qmake.conf fix-xcb-include-order.patch qt5-tablet-osx.patch

define $(package)_set_vars
Expand Down
17 changes: 17 additions & 0 deletions src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,13 @@ BITCOIN_CORE_H = \
walletdb.h \
compat/sanity.h

BIP_H = \
bip/crypto_aesctr.h \
bip/crypto_scrypt.h \
bip/sha256.h \
bip/bip38.h \
bip/crypto.h

JSON_H = \
json/json_spirit.h \
json/json_spirit_error_position.h \
Expand Down Expand Up @@ -204,6 +211,9 @@ libbitcoin_server_a_SOURCES = \

# wallet: shared between darknetd and darknet-qt, but only linked
# when wallet enabled

libbitcoin_wallet_a_CFLAGS = -fPIC

libbitcoin_wallet_a_CPPFLAGS = $(BITCOIN_INCLUDES)
libbitcoin_wallet_a_SOURCES = \
activemasternode.cpp \
Expand All @@ -224,6 +234,13 @@ libbitcoin_wallet_a_SOURCES = \
wallet_ismine.cpp \
walletdb.cpp \
keepass.cpp \
bip/crypto_aesctr.c \
bip/crypto_scrypt-nosse.c \
bip/crypto_scrypt-ref.c \
bip/crypto_scrypt-sse.c \
bip/sha256.c \
bip/bip38.cpp \
bip/crypto.c \
$(BITCOIN_CORE_H)

# crypto primitives library
Expand Down
7 changes: 7 additions & 0 deletions src/Makefile.qt.include
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ QT_FORMS_UI = \
qt/forms/coincontroldialog.ui \
qt/forms/obfuscationconfig.ui \
qt/forms/editaddressdialog.ui \
qt/forms/genandprintdialog.ui \
qt/forms/helpmessagedialog.ui \
qt/forms/intro.ui \
qt/forms/openuridialog.ui \
Expand Down Expand Up @@ -53,6 +54,7 @@ QT_MOC_CPP = \
qt/moc_csvmodelwriter.cpp \
qt/moc_obfuscationconfig.cpp \
qt/moc_editaddressdialog.cpp \
qt/moc_genandprintdialog.cpp \
qt/moc_guiutil.cpp \
qt/moc_intro.cpp \
qt/moc_macdockiconhandler.cpp \
Expand Down Expand Up @@ -119,6 +121,7 @@ BITCOIN_QT_H = \
qt/csvmodelwriter.h \
qt/obfuscationconfig.h \
qt/editaddressdialog.h \
qt/genandprintdialog.h \
qt/guiconstants.h \
qt/guiutil.h \
qt/intro.h \
Expand Down Expand Up @@ -165,6 +168,7 @@ RES_ICONS = \
qt/res/icons/bitcoin_testnet.ico \
qt/res/icons/bitcoin_testnet.png \
qt/res/icons/browse.png \
qt/res/icons/cash_icon.png \
qt/res/icons/clock1.png \
qt/res/icons/clock2.png \
qt/res/icons/clock3.png \
Expand All @@ -177,6 +181,7 @@ RES_ICONS = \
qt/res/icons/connect3_16.png \
qt/res/icons/connect4_16.png \
qt/res/icons/debugwindow.png \
qt/res/icons/dnet_cash_print.png \
qt/res/icons/drk_editpaste.png \
qt/res/icons/drk_address-book.png \
qt/res/icons/drk_editcopy.png \
Expand All @@ -198,6 +203,7 @@ RES_ICONS = \
qt/res/icons/eye_plus.png \
qt/res/icons/filesave.png \
qt/res/icons/history.png \
qt/res/icons/import.png \
qt/res/icons/key.png \
qt/res/icons/lock_closed.png \
qt/res/icons/lock_open.png \
Expand Down Expand Up @@ -253,6 +259,7 @@ BITCOIN_QT_CPP += \
qt/coincontroltreewidget.cpp \
qt/obfuscationconfig.cpp \
qt/editaddressdialog.cpp \
qt/genandprintdialog.cpp \
qt/openuridialog.cpp \
qt/overviewpage.cpp \
qt/paymentrequestplus.cpp \
Expand Down
Loading