Skip to content

Commit 6cc1f17

Browse files
committed
UI overhaul and update config
1 parent fac1282 commit 6cc1f17

File tree

484 files changed

+1910
-897
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

484 files changed

+1910
-897
lines changed

CMakeLists.txt

100644100755
+3-3
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ elseif (UNIX)
179179
set(PLATFORM_DIR OSX)
180180
set(MACOSX_BUNDLE_INFO_STRING "Cryptonote GUI wallet")
181181
set(MACOSX_BUNDLE_LONG_VERSION_STRING "${VERSION_VERSION}.${VERSION_MINOR}.${VERSION_PATCH}")
182-
set(MACOSX_BUNDLE_BUNDLE_NAME BlockChain-Coin.net)
182+
set(MACOSX_BUNDLE_BUNDLE_NAME BLOC.MONEY)
183183
set(MACOSX_BUNDLE_SHORT_VERSION_STRING "${VERSION_VERSION}.${VERSION_MINOR}.${VERSION_PATCH}")
184184
set(MACOSX_BUNDLE_BUNDLE_VERSION "$${VERSION_VERSION}.${VERSION_MINOR}.${VERSION_PATCH}")
185185

@@ -191,8 +191,8 @@ elseif (UNIX)
191191
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c11 -maes -D_DARWIN_C_SOURCE")
192192
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -framework Cocoa -framework OpenGL -framework CoreFoundation -framework Carbon -framework IOKit -L/usr/lib")
193193

194-
set(MACOSX_BUNDLE_ICON_FILE blockchain-coin.icns)
195-
set(APPLICATION_ICON src/images/blockchain-coin.icns)
194+
set(MACOSX_BUNDLE_ICON_FILE bloc.icns)
195+
set(APPLICATION_ICON src/images/bloc.icns)
196196
set_source_files_properties(${APPLICATION_ICON} PROPERTIES MACOSX_PACKAGE_LOCATION "Resources")
197197

198198
set(BUILD_PLATFORM MACOSX_BUNDLE)

CryptoNoteWallet.cmake

100644100755
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
set(CN_PROJECT_NAME "BlockChain-Coin")
2-
set(CN_CURRENCY_DISPLAY_NAME "blockchaincoin")
1+
set(CN_PROJECT_NAME "BLOC")
2+
set(CN_CURRENCY_DISPLAY_NAME "BLOC")
33
set(CN_CURRENCY_TICKER "BLOC")
44
set(CN_VERSION 1.2.0)

Fireice_uk

100644100755
File mode changed.

LICENSE

100644100755
File mode changed.

Platform/Linux/ApplicationEventHandler.cpp

100644100755
File mode changed.

Platform/Linux/ApplicationEventHandler.h

100644100755
File mode changed.

Platform/OSX/ApplicationEventHandler.h

100644100755
File mode changed.

Platform/OSX/ApplicationEventHandler.mm

100644100755
File mode changed.

Platform/OSX/INotificationMonitorObserver.h

100644100755
File mode changed.

Platform/OSX/NotificationMonitor.h

100644100755
File mode changed.

Platform/OSX/NotificationMonitor.mm

100644100755
File mode changed.

Platform/OSX/WalletApplication.mm

100644100755
File mode changed.

Platform/Posix/System/MemoryMappedFile.cpp

100644100755
File mode changed.

Platform/Posix/System/MemoryMappedFile.h

100644100755
File mode changed.

Platform/Windows/ApplicationEventHandler.cpp

100644100755
File mode changed.

Platform/Windows/ApplicationEventHandler.h

100644100755
File mode changed.

README.md

100644100755
File mode changed.

ReleaseNotes.txt

100644100755
File mode changed.

include/IAddressBookManager.h

100644100755
File mode changed.

include/IApplicationEventHandler.h

100644100755
File mode changed.

include/IBlockChainExplorerAdapter.h

100644100755
File mode changed.

include/ICryptoNoteAdapter.h

100644100755
File mode changed.

include/IDonationManager.h

100644100755
File mode changed.

include/IMinerWorker.h

100644100755
File mode changed.

include/IMiningManager.h

100644100755
File mode changed.

include/INewsReader.h

100644100755
File mode changed.

include/INodeAdapter.h

100644100755
File mode changed.

include/IOptimizationManager.h

100644100755
File mode changed.

include/IPoolClient.h

100644100755
File mode changed.

include/IPoolMiner.h

100644100755
File mode changed.

include/IWalletAdapter.h

100644100755
File mode changed.

src/Application/AddressBookManager.cpp

100644100755
File mode changed.

src/Application/AddressBookManager.h

100644100755
File mode changed.

src/Application/BlogReader.cpp

100644100755
+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ BlogReader::~BlogReader() {
5858
}
5959

6060
QString BlogReader::getName() const {
61-
return tr("Blockchain-coin.net News:");
61+
return tr("BLOC.MONEY NEWS:");
6262
}
6363

6464
QPixmap BlogReader::getIcon() const {

src/Application/BlogReader.h

100644100755
File mode changed.

src/Application/CommandLineParser.cpp

100644100755
File mode changed.

src/Application/CommandLineParser.h

100644100755
File mode changed.

src/Application/IWalletUiItem.h

100644100755
File mode changed.

src/Application/LogFileWatcher.cpp

100644100755
File mode changed.

src/Application/LogFileWatcher.h

100644100755
File mode changed.

src/Application/MiningManager.cpp

100644100755
File mode changed.

src/Application/MiningManager.h

100644100755
File mode changed.

src/Application/OptimizationManager.cpp

100644100755
File mode changed.

src/Application/OptimizationManager.h

100644100755
File mode changed.

src/Application/SignalHandler.cpp

100644100755
File mode changed.

src/Application/SignalHandler.h

100644100755
File mode changed.

src/Application/WalletApplication.cpp

100644100755
+7-7
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ namespace WalletGui {
6060

6161
namespace {
6262

63-
const char BYTECOIN_URI_SCHEME_NAME[] = "blockchain-coin";
63+
const char BYTECOIN_URI_SCHEME_NAME[] = "BLOC";
6464
const QRegularExpression LOG_SPLASH_REG_EXP("\\[Core\\] Imported block with index");
6565

6666
quint16 findPort() {
@@ -105,7 +105,7 @@ WalletApplication::WalletApplication(int& _argc, char** _argv) : QApplication(_a
105105
m_systemTrayIcon(new QSystemTrayIcon(this)), m_applicationEventHandler(new ApplicationEventHandler(this)),
106106
m_optimizationManager(nullptr), m_blogReader(new BlogReader(this)), m_mainWindow(nullptr), m_splash(nullptr),
107107
m_logWatcher(nullptr), m_isAboutToQuit(false) {
108-
setApplicationName("blockchain-coinwallet");
108+
setApplicationName("blocwallet");
109109
setApplicationVersion(Settings::instance().getVersion());
110110
setQuitOnLastWindowClosed(false);
111111
setStyle(QStyleFactory::create("fusion"));
@@ -141,7 +141,7 @@ bool WalletApplication::init() {
141141
makeDataDir();
142142
WalletLogger::init(Settings::instance().getDataDir(), Settings::instance().hasDebugOption(), this);
143143
WalletLogger::info(tr("[Application] Initializing..."));
144-
m_lockFile = new QLockFile(Settings::instance().getDataDir().absoluteFilePath("blockchain-coinwallet.lock"));
144+
m_lockFile = new QLockFile(Settings::instance().getDataDir().absoluteFilePath("blocwallet.lock"));
145145
QUrl paymentUrl = QUrl::fromUserInput(arguments().last());
146146
if (paymentUrl.scheme() != BYTECOIN_URI_SCHEME_NAME) {
147147
paymentUrl = QUrl();
@@ -153,9 +153,9 @@ bool WalletApplication::init() {
153153
}
154154
#endif
155155
if (!m_lockFile->tryLock()) {
156-
WalletLogger::warning(tr("[Application] Blockchain-Coin wallet already running"));
156+
WalletLogger::warning(tr("[Application] BLOC wallet already running"));
157157
if (!paymentUrl.isValid()) {
158-
QMessageBox::warning(nullptr, QObject::tr("Fail"), "Blockchain-Coin wallet already running");
158+
QMessageBox::warning(nullptr, QObject::tr("Fail"), "BLOC wallet already running");
159159
}
160160

161161
return false;
@@ -241,7 +241,7 @@ bool WalletApplication::initCryptoNoteAdapter() {
241241
for (;;) {
242242
if (m_splash != nullptr) {
243243
m_splash->show();
244-
m_splash->showMessage(QObject::tr("Loading blockchain..."), Qt::AlignLeft | Qt::AlignBottom, Qt::white);
244+
m_splash->showMessage(QObject::tr("Loading BLOC.MONEY..."), Qt::AlignLeft | Qt::AlignBottom, Qt::white);
245245
if (m_logWatcher == nullptr) {
246246
m_logWatcher = new LogFileWatcher(Settings::instance().getDataDir().absoluteFilePath(CORE_LOG_FILE_NAME), this);
247247
connect(m_logWatcher, &LogFileWatcher::newLogStringSignal, this, &WalletApplication::newLogString);
@@ -346,7 +346,7 @@ void WalletApplication::initUi() {
346346
m_optimizationManager= new OptimizationManager(m_cryptoNoteAdapter, this);
347347
m_miningManager = new MiningManager(m_cryptoNoteAdapter, m_donationManager, this);
348348
if (m_splash != nullptr) {
349-
m_splash->showMessage(QObject::tr("Initializing GUI..."), Qt::AlignLeft | Qt::AlignBottom, Qt::white);
349+
m_splash->showMessage(QObject::tr("Initializing GUI..."), Qt::AlignCenter | Qt::AlignBottom, Qt::white);
350350
}
351351

352352
QFile styleSheetFile(":style/qss");

src/Application/WalletApplication.h

100644100755
File mode changed.

src/Application/WalletSplashScreen.cpp

100644100755
File mode changed.

src/Application/WalletSplashScreen.h

100644100755
File mode changed.

src/CryptoNoteWalletConfig.h.in

100644100755
File mode changed.

src/CryptoNoteWrapper/BlockChainExplorerAdapter.cpp

100644100755
File mode changed.

src/CryptoNoteWrapper/BlockChainExplorerAdapter.h

100644100755
File mode changed.

src/CryptoNoteWrapper/BlockChainExplorerWorker.cpp

100644100755
File mode changed.

src/CryptoNoteWrapper/BlockChainExplorerWorker.h

100644100755
File mode changed.

src/CryptoNoteWrapper/CommonNodeAdapter.cpp

100644100755
File mode changed.

src/CryptoNoteWrapper/CommonNodeAdapter.h

100644100755
File mode changed.

src/CryptoNoteWrapper/CryptoNoteAdapter.cpp

100644100755
File mode changed.

src/CryptoNoteWrapper/CryptoNoteAdapter.h

100644100755
File mode changed.

src/CryptoNoteWrapper/GuardExecutor.cpp

100644100755
File mode changed.

src/CryptoNoteWrapper/GuardExecutor.h

100644100755
File mode changed.

src/CryptoNoteWrapper/InProcessNodeAdapter.cpp

100644100755
File mode changed.

src/CryptoNoteWrapper/InProcessNodeAdapter.h

100644100755
File mode changed.

src/CryptoNoteWrapper/InProcessNodeWorker.cpp

100644100755
File mode changed.

src/CryptoNoteWrapper/InProcessNodeWorker.h

100644100755
File mode changed.

src/CryptoNoteWrapper/ProxyRpcNodeAdapter.cpp

100644100755
File mode changed.

src/CryptoNoteWrapper/ProxyRpcNodeAdapter.h

100644100755
File mode changed.

src/CryptoNoteWrapper/ProxyRpcNodeWorker.cpp

100644100755
File mode changed.

src/CryptoNoteWrapper/ProxyRpcNodeWorker.h

100644100755
File mode changed.

src/CryptoNoteWrapper/SemaphoreUtils.cpp

100644100755
File mode changed.

src/CryptoNoteWrapper/SemaphoreUtils.h

100644100755
File mode changed.

src/CryptoNoteWrapper/WalletGreenAdapter.cpp

100644100755
File mode changed.

src/CryptoNoteWrapper/WalletGreenAdapter.h

100644100755
File mode changed.

src/CryptoNoteWrapper/WalletGreenWorker.cpp

100644100755
File mode changed.

src/CryptoNoteWrapper/WalletGreenWorker.h

100644100755
File mode changed.

src/Gui/AddressBook/AddressBookDelegate.cpp

100644100755
File mode changed.

src/Gui/AddressBook/AddressBookDelegate.h

100644100755
File mode changed.

src/Gui/AddressBook/AddressBookFrame.cpp

100644100755
File mode changed.

src/Gui/AddressBook/AddressBookFrame.h

100644100755
File mode changed.

src/Gui/AddressBook/AddressBookFrame.ui

100644100755
File mode changed.

src/Gui/AddressBook/DonationColumnDelegate.cpp

100644100755
File mode changed.

src/Gui/AddressBook/DonationColumnDelegate.h

100644100755
File mode changed.

src/Gui/AddressBook/NewAddressDialog.cpp

100644100755
File mode changed.

src/Gui/AddressBook/NewAddressDialog.h

100644100755
File mode changed.

src/Gui/AddressBook/NewAddressDialog.ui

100644100755
File mode changed.

src/Gui/AddressBook/ui_AddressBookFrame.h

100644100755
File mode changed.

src/Gui/AddressBook/ui_NewAddressDialog.h

100644100755
File mode changed.

src/Gui/BlockchainExplorer/BlockDetailsDialog.cpp

100644100755
+8-5
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ const char BLOCK_DETAILS_DIALOG_STYLE_SHEET_TEMPLATE[] =
5555

5656
"#BlockDetailsDialog > #m_blockDetailsTabBar QTabBar::tab {"
5757
"font-size: %fontSizeLarge%;"
58+
"font-color: #FFFFFF;"
59+
"color: #FFFFFF;"
5860
"font-weight: bold;"
5961
"min-width: 380px;"
6062
"max-width: 380px;"
@@ -68,18 +70,18 @@ const char BLOCK_DETAILS_DIALOG_STYLE_SHEET_TEMPLATE[] =
6870
"}"
6971

7072
"#BlockDetailsDialog > #m_blockDetailsTabBar QTabBar::tab:selected {"
71-
"background: #ffffff;"
73+
"background: #031b46;"
7274
"border: 1px solid %borderColorDark%;"
73-
"border-bottom: 1px solid #ffffff;"
75+
"border-bottom: 1px solid #031b46;"
7476
"}"
7577

7678
"#BlockDetailsDialog > #m_blockDetailsTabBar QTabBar::tab:!selected {"
77-
"background: %backgroundColorGray%;"
79+
"background: #031b46;"
7880
"border: 1px solid %borderColorDark%;"
7981
"}"
8082

8183
"#m_generalTab {"
82-
"background-color: #ffffff;"
84+
"background-color: #031b46;"
8385
"border: none;"
8486
"}"
8587

@@ -90,6 +92,7 @@ const char BLOCK_DETAILS_DIALOG_STYLE_SHEET_TEMPLATE[] =
9092
"padding-left: 30px;"
9193
"padding-right: 30px;"
9294
"border: none;"
95+
"font-color: #FFFFFF;"
9396
"}"
9497

9598
"#m_generalTab > #m_blockTextLabel,"
@@ -99,7 +102,7 @@ const char BLOCK_DETAILS_DIALOG_STYLE_SHEET_TEMPLATE[] =
99102
"}"
100103

101104
"#m_generalTab, #m_transactionsTab {"
102-
"background-color: #ffffff;"
105+
"background-color: #031b46;"
103106
"}"
104107

105108
"#m_generalTab > #m_heightTextLabel,"

src/Gui/BlockchainExplorer/BlockDetailsDialog.h

100644100755
File mode changed.

src/Gui/BlockchainExplorer/BlockDetailsDialog.ui

100644100755
File mode changed.

src/Gui/BlockchainExplorer/BlockExplorerFrame.cpp

100644100755
File mode changed.

src/Gui/BlockchainExplorer/BlockExplorerFrame.h

100644100755
File mode changed.

src/Gui/BlockchainExplorer/BlockExplorerFrame.ui

100644100755
File mode changed.

src/Gui/BlockchainExplorer/FilteredBlockModel.cpp

100644100755
File mode changed.

src/Gui/BlockchainExplorer/FilteredBlockModel.h

100644100755
File mode changed.

src/Gui/BlockchainExplorer/TransactionsBlockModel.cpp

100644100755
File mode changed.

src/Gui/BlockchainExplorer/TransactionsBlockModel.h

100644100755
File mode changed.

src/Gui/BlockchainExplorer/WindowedBlockModel.cpp

100644100755
File mode changed.

src/Gui/BlockchainExplorer/WindowedBlockModel.h

100644100755
File mode changed.

src/Gui/BlockchainExplorer/ui_BlockDetailsDialog.h

100644100755
File mode changed.

src/Gui/BlockchainExplorer/ui_BlockExplorerFrame.h

100644100755
File mode changed.

src/Gui/Common/AboutDialog.cpp

100644100755
File mode changed.

src/Gui/Common/AboutDialog.h

100644100755
File mode changed.

src/Gui/Common/AboutDialog.ui

100644100755
+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
</size>
3030
</property>
3131
<property name="windowTitle">
32-
<string>About BlockChain-Coin</string>
32+
<string>About BLOC</string>
3333
</property>
3434
<layout class="QVBoxLayout" name="verticalLayout" stretch="0,0">
3535
<item>
@@ -41,7 +41,7 @@
4141
</sizepolicy>
4242
</property>
4343
<property name="text">
44-
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;&lt;span style=&quot; font-family:'Open Sans'; font-size:14px;&quot;&gt;BlockChain-Coin version %1-%2&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot; font-family:'Open Sans'; font-size:14px;&quot;&gt;BlockChain-Coin is the next generation anonymous cryptocurrency.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot; font-family:'Open Sans'; font-size:14px;&quot;&gt;Copyright © 2012-%3 The Bytecoin developers&lt;br&gt;Copyright © BlockChain-Coin developers&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot; font-family:'Open Sans'; font-size:14px;&quot;&gt;This is free software.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot; font-family:'Open Sans'; font-size:14px;&quot;&gt;Distributed under the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot; font-family:'Open Sans'; font-size:14px;&quot;&gt;Distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details:&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://www.gnu.org/licenses/lgpl.html&quot;&gt;&lt;span style=&quot; font-family:'Open Sans'; font-size:14px; text-decoration: underline; color:#0000ff;&quot;&gt;https://www.gnu.org/licenses/lgpl.html&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://BlockChain-Coin.net/&quot;&gt;&lt;span style=&quot; font-family:'Open Sans'; font-size:14px; text-decoration: underline; color:#0000ff;&quot;&gt;https://BlockChain-Coin.net/&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
44+
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;&lt;span style=&quot; font-family:'Open Sans'; font-size:14px;&quot;&gt;BLOC version %1-%2&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot; font-family:'Open Sans'; font-size:14px;&quot;&gt;BLOC is the next generation anonymous cryptocurrency.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot; font-family:'Open Sans'; font-size:14px;&quot;&gt;Copyright © 2012-%3 The Bytecoin developers&lt;br&gt;Copyright © BLOC developers&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot; font-family:'Open Sans'; font-size:14px;&quot;&gt;This is free software.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot; font-family:'Open Sans'; font-size:14px;&quot;&gt;Distributed under the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot; font-family:'Open Sans'; font-size:14px;&quot;&gt;Distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details:&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://www.gnu.org/licenses/lgpl.html&quot;&gt;&lt;span style=&quot; font-family:'Open Sans'; font-size:14px; text-decoration: underline; color:#0000ff;&quot;&gt;https://www.gnu.org/licenses/lgpl.html&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://bloc.money/&quot;&gt;&lt;span style=&quot; font-family:'Open Sans'; font-size:14px; text-decoration: underline; color:#0000ff;&quot;&gt;https://bloc.money/&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
4545
</property>
4646
<property name="textFormat">
4747
<enum>Qt::RichText</enum>

src/Gui/Common/AddressBookDialog.cpp

100644100755
File mode changed.

src/Gui/Common/AddressBookDialog.h

100644100755
File mode changed.

src/Gui/Common/AddressBookDialog.ui

100644100755
File mode changed.

src/Gui/Common/BlockchainInstaller.cpp

100644100755
File mode changed.

src/Gui/Common/BlockchainInstaller.h

100644100755
File mode changed.

src/Gui/Common/ChangePasswordDialog.cpp

100644100755
File mode changed.

src/Gui/Common/ChangePasswordDialog.h

100644100755
File mode changed.

src/Gui/Common/ChangePasswordDialog.ui

100644100755
File mode changed.

src/Gui/Common/ClearableLineEdit.cpp

100644100755
File mode changed.

src/Gui/Common/ClearableLineEdit.h

100644100755
File mode changed.

src/Gui/Common/CopyColumnDelegate.cpp

100644100755
File mode changed.

src/Gui/Common/CopyColumnDelegate.h

100644100755
File mode changed.

src/Gui/Common/CopyMagicLabel.cpp

100644100755
File mode changed.

src/Gui/Common/CopyMagicLabel.h

100644100755
File mode changed.

src/Gui/Common/ExitWidget.cpp

100644100755
File mode changed.

src/Gui/Common/ExitWidget.h

100644100755
File mode changed.

src/Gui/Common/ExitWidget.ui

100644100755
File mode changed.

src/Gui/Common/GlassFrame.cpp

100644100755
File mode changed.

src/Gui/Common/GlassFrame.h

100644100755
File mode changed.

src/Gui/Common/KeyDialog.cpp

100644100755
File mode changed.

src/Gui/Common/KeyDialog.h

100644100755
File mode changed.

src/Gui/Common/KeyDialog.ui

100644100755
File mode changed.

src/Gui/Common/LinkLikeColumnDelegate.cpp

100644100755
File mode changed.

src/Gui/Common/LinkLikeColumnDelegate.h

100644100755
File mode changed.

src/Gui/Common/MagicLabel.cpp

100644100755
File mode changed.

src/Gui/Common/MagicLabel.h

100644100755
File mode changed.

src/Gui/Common/NewPasswordDialog.cpp

100644100755
File mode changed.

src/Gui/Common/NewPasswordDialog.h

100644100755
File mode changed.

src/Gui/Common/NewPasswordDialog.ui

100644100755
File mode changed.

src/Gui/Common/NewTransactionDelegate.cpp

100644100755
File mode changed.

src/Gui/Common/NewTransactionDelegate.h

100644100755
File mode changed.

src/Gui/Common/NewsFrame.cpp

100644100755
+2-2
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const char NEWS_FRAME_STYLE_SHEEET_TEMPLATE[] =
4848
"max-width: 45px;"
4949
"border: none;"
5050
"border-left: 1px solid %borderColor%;"
51-
"background-color: %headerBackgroundColor%;"
51+
"background-color: #031b46;"
5252
"}"
5353

5454
"WalletGui--NewsFrame #m_scrollFrame QPushButton {"
@@ -74,7 +74,7 @@ const char NEWS_FRAME_STYLE_SHEEET_TEMPLATE[] =
7474

7575
const char TEXT_HTML_TEMPLATE[] =
7676
"<html><body style=\"font-family:%fontFamily%;font-size:%fontSizeNormal%;\"><p><font color=\"%fontColorGray%\">%1</font>"
77-
" <font color=\"black\">%2</font></p></body></html>";
77+
" <font color=\"white\">%2</font></p></body></html>";
7878

7979
}
8080

src/Gui/Common/NewsFrame.h

100644100755
File mode changed.

src/Gui/Common/NewsFrame.ui

100644100755
File mode changed.

src/Gui/Common/P2pBindPortErrorDialog.cpp

100644100755
File mode changed.

src/Gui/Common/P2pBindPortErrorDialog.h

100644100755
File mode changed.

src/Gui/Common/P2pBindPortErrorDialog.ui

100644100755
File mode changed.

src/Gui/Common/PoolTransactionDetailsDialog.cpp

100644100755
+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const char POOL_TRANSACTION_DETAILS_DIALOG_STYLE_SHEET_TEMPLATE[] =
3535
"}"
3636

3737
"WalletGui--PoolTransactionDetailsDialog {"
38-
"background-color: #ffffff;"
38+
"background-color: #031b46;"
3939
"}"
4040

4141
"WalletGui--PoolTransactionDetailsDialog WalletGui--WalletNormalGrayTextLabel, "

src/Gui/Common/PoolTransactionDetailsDialog.h

100644100755
File mode changed.

src/Gui/Common/PoolTransactionDetailsDialog.ui

100644100755
File mode changed.

src/Gui/Common/QuestionDialog.cpp

100644100755
File mode changed.

src/Gui/Common/QuestionDialog.h

100644100755
File mode changed.

src/Gui/Common/QuestionDialog.ui

100644100755
File mode changed.

src/Gui/Common/ResizableScrollArea.cpp

100644100755
File mode changed.

src/Gui/Common/ResizableScrollArea.h

100644100755
File mode changed.

src/Gui/Common/RightAlignmentColumnDelegate.cpp

100644100755
File mode changed.

src/Gui/Common/RightAlignmentColumnDelegate.h

100644100755
File mode changed.

src/Gui/Common/TransactionDetailsDialog.cpp

100644100755
+6-3
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ namespace {
3737
const char TRANSACTION_DETAILS_DIALOG_STYLE_SHEET_TEMPLATE[] =
3838
"* {"
3939
"font-family: %fontFamily%;"
40+
"background-color: #031b46;"
4041
"}"
4142

4243
"WalletGui--TransactionDetailsDialog {"
@@ -86,6 +87,8 @@ const char TRANSACTION_DETAILS_DIALOG_STYLE_SHEET_TEMPLATE[] =
8687

8788
"WalletGui--TransactionDetailsDialog > #m_transactionDetailsTabBar QTabBar::tab {"
8889
"font-size: %fontSizeLarge%;"
90+
"font-color: #FFFFFF;"
91+
"color: #FFFFFF;"
8992
"font-weight: bold;"
9093
"min-width: 300px;"
9194
"max-width: 300px;"
@@ -99,9 +102,9 @@ const char TRANSACTION_DETAILS_DIALOG_STYLE_SHEET_TEMPLATE[] =
99102
"}"
100103

101104
"WalletGui--TransactionDetailsDialog > #m_transactionDetailsTabBar QTabBar::tab:selected {"
102-
"background: #ffffff;"
105+
"background: #031b46;"
103106
"border: 1px solid %borderColorDark%;"
104-
"border-bottom: 1px solid #ffffff;"
107+
"border-bottom: 1px solid #031b46;"
105108
"}"
106109

107110
"WalletGui--TransactionDetailsDialog > #m_transactionDetailsTabBar QTabBar::tab:!selected {"
@@ -111,7 +114,7 @@ const char TRANSACTION_DETAILS_DIALOG_STYLE_SHEET_TEMPLATE[] =
111114

112115
"WalletGui--TransactionDetailsDialog #m_transactionTab,"
113116
"WalletGui--TransactionDetailsDialog #m_transfersTab {"
114-
"background-color: #ffffff;"
117+
"background-color: #031b46;"
115118
"border: none;"
116119
"}";
117120

src/Gui/Common/TransactionDetailsDialog.h

100644100755
File mode changed.

src/Gui/Common/TransactionDetailsDialog.ui

100644100755
File mode changed.

src/Gui/Common/TransactionsAmountDelegate.cpp

100644100755
+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ const int AMOUNT_DECIMAL_COUNT = 3;
3434
TransactionsAmountDelegate::TransactionsAmountDelegate(bool _hideLongAmounts, QObject* _parent) : QStyledItemDelegate(_parent),
3535
m_hideLongAmounts(_hideLongAmounts), m_amountGradient(0, 0, 1, 0) {
3636
m_amountGradient.setCoordinateMode(QLinearGradient::ObjectBoundingMode);
37-
m_amountGradient.setColorAt(0, Qt::black);
38-
m_amountGradient.setColorAt(0.7, Qt::black);
37+
m_amountGradient.setColorAt(0, Qt::white);
38+
m_amountGradient.setColorAt(0.7, Qt::white);
3939
m_amountGradient.setColorAt(1, Settings::instance().getCurrentStyle().backgroundColorAlternate());
4040
}
4141

src/Gui/Common/TransactionsAmountDelegate.h

100644100755
File mode changed.

src/Gui/Common/TransactionsHeaderView.cpp

100644100755
File mode changed.

src/Gui/Common/TransactionsHeaderView.h

100644100755
File mode changed.

src/Gui/Common/TransactionsTimeDelegate.cpp

100644100755
File mode changed.

src/Gui/Common/TransactionsTimeDelegate.h

100644100755
File mode changed.

src/Gui/Common/TransfersHeaderView.cpp

100644100755
File mode changed.

src/Gui/Common/TransfersHeaderView.h

100644100755
File mode changed.

src/Gui/Common/WalletBlueButton.cpp

100644100755
File mode changed.

src/Gui/Common/WalletBlueButton.h

100644100755
File mode changed.

src/Gui/Common/WalletCancelButton.cpp

100644100755
File mode changed.

src/Gui/Common/WalletCancelButton.h

100644100755
File mode changed.

src/Gui/Common/WalletDescriptionLabel.cpp

100644100755
File mode changed.

src/Gui/Common/WalletDescriptionLabel.h

100644100755
File mode changed.

src/Gui/Common/WalletGrayCheckBox.cpp

100644100755
File mode changed.

src/Gui/Common/WalletGrayCheckBox.h

100644100755
File mode changed.

src/Gui/Common/WalletLinkLikeButton.cpp

100644100755
File mode changed.

src/Gui/Common/WalletLinkLikeButton.h

100644100755
File mode changed.

src/Gui/Common/WalletNavigationButton.cpp

100644100755
+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const char WALLET_NAVIGATION_BUTTON_STYLE_SHEET_TEMPLATE[] =
4141
"}"
4242

4343
"WalletGui--WalletNavigationButton:hover {"
44-
"background-color: #ffffff;"
44+
"background-color: #031b46;"
4545
"color: %fontColorBlueHover%;"
4646
"}"
4747

src/Gui/Common/WalletNavigationButton.h

100644100755
File mode changed.

src/Gui/Common/WalletOkButton.cpp

100644100755
File mode changed.

src/Gui/Common/WalletOkButton.h

100644100755
File mode changed.

src/Gui/Common/WalletTableView.cpp

100644100755
+6-5
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ const char WALLET_VIEW_STYLE_SHEET_TEMPLATE[] =
3939
"WalletGui--WalletTableView {"
4040
"border: none;"
4141
"font-size: %fontSizeNormal%;"
42-
"background-color: #ffffff;"
42+
"background-color: #031b46;"
43+
"color: #ffffff;"
4344
"border-bottom: 1px solid transparent;"
4445
"}"
4546

@@ -49,7 +50,7 @@ const char WALLET_VIEW_STYLE_SHEET_TEMPLATE[] =
4950
"}"
5051

5152
"WalletGui--WalletTableView > QHeaderView {"
52-
"background-color: #ffffff;"
53+
"background-color: #031b46;"
5354
"border: none;"
5455
"border-bottom: 1px solid %borderColor%;"
5556
"}"
@@ -58,7 +59,7 @@ const char WALLET_VIEW_STYLE_SHEET_TEMPLATE[] =
5859
"height: 20px;"
5960
"font-size: %fontSizeSmall%;"
6061
"color: %fontColorGray%;"
61-
"background-color: #ffffff;"
62+
"background-color: #031b46;"
6263
"border: none;"
6364
"border-left: 23px solid transparent;"
6465
"border-right: 20px solid transparent;"
@@ -72,7 +73,7 @@ const char WALLET_VIEW_STYLE_SHEET_TEMPLATE[] =
7273
"}"
7374

7475
"WalletGui--WalletTableView::item:alternate {"
75-
"background: #ffffff;"
76+
"background: #031b46;"
7677
"}"
7778

7879
"WalletGui--WalletTableView::item:selected {"
@@ -82,7 +83,7 @@ const char WALLET_VIEW_STYLE_SHEET_TEMPLATE[] =
8283

8384
"WalletGui--WalletTableView[hoverIsVisible=\"true\"]::item:hover {"
8485
"background: #e9eaec;"
85-
"alternate-background-color: #e9eaec;"
86+
"alternate-background-color: #031b46;"
8687
"}";
8788

8889
}

src/Gui/Common/WalletTableView.h

100644100755
File mode changed.

src/Gui/Common/WalletTextLabel.cpp

100644100755
+6-5
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const char WALLET_TEXT_LABEL_STYLE_SHEET_TEMPLATE[] =
4949
"}"
5050

5151
"WalletGui--WalletSmallBlackTextLabel {"
52-
"color: #000000;"
52+
"color: #ffffff;"
5353
"font-size: %fontSizeSmall%;"
5454
"}"
5555

@@ -70,29 +70,30 @@ const char WALLET_TEXT_LABEL_STYLE_SHEET_TEMPLATE[] =
7070
"}"
7171

7272
"WalletGui--WalletNormalBlackTextLabel {"
73-
"color: #000000;"
73+
"color: #ffffff;"
7474
"font-size: %fontSizeNormal%;"
7575
"}"
7676

7777
"WalletGui--WalletExtraNormalBlackTextLabel {"
78-
"color: #000000;"
78+
"color: #ffffff;"
7979
"font-size: %fontSizeExtraNormal%;"
8080
"}"
8181

8282
"WalletGui--WalletLargeBlackTextLabel {"
83-
"color: #000000;"
83+
"color: #ffffff;"
8484
"font-size: %fontSizeLarge%;"
8585
"}"
8686

8787
"WalletGui--WalletExtraLargeBlackTextLabel {"
88-
"color: #000000;"
88+
"color: #ffffff;"
8989
"font-size: %fontSizeExtraLarge%;"
9090
"}"
9191

9292
"WalletGui--WalletHeaderLabel {"
9393
"min-height: 17;"
9494
"font-size: %fontSizeLarge%;"
9595
"font-weight: bold;"
96+
"color: #ffffff;"
9697
"}";
9798

9899
}

src/Gui/Common/WalletTextLabel.h

100644100755
File mode changed.

src/Gui/Common/WalletTreeView.cpp

100644100755
+6-6
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const char WALLET_VIEW_STYLE_SHEET_TEMPLATE[] =
3838
"WalletGui--WalletTreeView {"
3939
"border: none;"
4040
"font-size: %fontSizeNormal%;"
41-
"background-color: #ffffff;"
41+
"color: #ffffff;"
4242
"border-bottom: 1px solid transparent;"
4343
"}"
4444

@@ -50,15 +50,15 @@ const char WALLET_VIEW_STYLE_SHEET_TEMPLATE[] =
5050
"WalletGui--WalletTreeView > QHeaderView {"
5151
"min-height: 20px;"
5252
"max-height: 20px;"
53-
"background-color: #ffffff;"
53+
"background-color: #031b46;"
5454
"border: none;"
5555
"border-bottom: 1px solid %borderColor%;"
5656
"}"
5757

5858
"WalletGui--WalletTreeView > QHeaderView::section {"
5959
"font-size: %fontSizeSmall%;"
6060
"color: %fontColorGray%;"
61-
"background-color: #ffffff;"
61+
"background-color: #031b46;"
6262
"border: none;"
6363
"border-left: 23px solid transparent;"
6464
"border-right: 20px solid transparent;"
@@ -74,7 +74,7 @@ const char WALLET_VIEW_STYLE_SHEET_TEMPLATE[] =
7474
"}"
7575

7676
"WalletGui--WalletTreeView::item:alternate {"
77-
"background: #ffffff;"
77+
"background: #031b46;"
7878
"}"
7979

8080
"WalletGui--WalletTreeView::item:selected {"
@@ -83,8 +83,8 @@ const char WALLET_VIEW_STYLE_SHEET_TEMPLATE[] =
8383
"}"
8484

8585
"WalletGui--WalletTreeView::item:hover[hoverIsVisible=\"true\"] {"
86-
"background: #e9eaec;"
87-
"alternate-background-color: #e9eaec;"
86+
"background: #031b46;"
87+
"alternate-background-color: #031b46;"
8888
"}";
8989

9090
}

src/Gui/Common/WalletTreeView.h

100644100755
File mode changed.

src/Gui/Common/WalletWindowedItemModel.cpp

100644100755
File mode changed.

src/Gui/Common/WalletWindowedItemModel.h

100644100755
File mode changed.

0 commit comments

Comments
 (0)