Bitcoin ABC 0.32.4
P2P Digital Currency
networkstyle.cpp
Go to the documentation of this file.
1// Copyright (c) 2014-2016 The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5#include <qt/networkstyle.h>
6
7#include <qt/guiconstants.h>
8
9#include <tinyformat.h>
10#include <util/chaintype.h>
11
12#include <QApplication>
13
14static const struct {
16 const char *appName;
19} network_styles[] = {
23};
24
25// titleAddText needs to be const char* for tr()
26NetworkStyle::NetworkStyle(const QString &_appName, const int iconColorHueShift,
28 const char *_titleAddText)
29 : appName(_appName),
30 titleAddText(qApp->translate("SplashScreen", _titleAddText)) {
31 // load pixmap
32 QPixmap pixmap(":/icons/bitcoin");
33
35 // generate QImage from QPixmap
36 QImage img = pixmap.toImage();
37
38 int h, s, l, a;
39
40 // traverse though lines
41 for (int y = 0; y < img.height(); y++) {
42 QRgb *scL = reinterpret_cast<QRgb *>(img.scanLine(y));
43
44 // loop through pixels
45 for (int x = 0; x < img.width(); x++) {
46 // preserve alpha because QColor::getHsl doesn't return the
47 // alpha value
48 a = qAlpha(scL[x]);
49 QColor col(scL[x]);
50
51 // get hue value
52 col.getHsl(&h, &s, &l);
53
54 // rotate color on RGB color circle
55 // 70° should end up with the typical "testnet" green
57
58 // change saturation value
61 }
62 col.setHsl(h, s, l, a);
63
64 // set the pixel
65 scL[x] = col.rgba();
66 }
67 }
68
69 // convert back to QPixmap
70 pixmap.convertFromImage(img);
71 }
72
73 appIcon = QIcon(pixmap);
74 trayAndWindowIcon = QIcon(pixmap.scaled(QSize(256, 256)));
75}
76
78 std::string titleAddText =
80 ? ""
82 for (const auto &network_style : network_styles) {
83 if (networkId == network_style.networkId) {
84 return new NetworkStyle(network_style.appName,
85 network_style.iconColorHueShift,
86 network_style.iconColorSaturationReduction,
87 titleAddText.c_str());
88 }
89 }
90 return nullptr;
91}
std::string ChainTypeToString(ChainType chain)
Definition: chaintype.cpp:11
ChainType
Definition: chaintype.h:11
QIcon trayAndWindowIcon
Definition: networkstyle.h:34
QString titleAddText
Definition: networkstyle.h:35
NetworkStyle(const QString &appName, const int iconColorHueShift, const int iconColorSaturationReduction, const char *titleAddText)
static const NetworkStyle * instantiate(const ChainType networkId)
Get style associated with provided BIP70 network id, or 0 if not known.
#define QAPP_APP_NAME_TESTNET
Definition: guiconstants.h:49
#define QAPP_APP_NAME_REGTEST
Definition: guiconstants.h:50
#define QAPP_APP_NAME_DEFAULT
Definition: guiconstants.h:48
const int iconColorHueShift
const ChainType networkId
static const struct @5 network_styles[]
const char * appName
const int iconColorSaturationReduction
#define strprintf
Format arguments and return the string or write to given std::ostream (see tinyformat::format doc for...
Definition: tinyformat.h:1202