Bitcoin Core  27.99.0
P2P Digital Currency
networkstyle.h
Go to the documentation of this file.
1 // Copyright (c) 2014-2019 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 #ifndef BITCOIN_QT_NETWORKSTYLE_H
6 #define BITCOIN_QT_NETWORKSTYLE_H
7 
8 #include <util/chaintype.h>
9 
10 #include <QIcon>
11 #include <QPixmap>
12 #include <QString>
13 
14 /* Coin network-specific GUI style information */
16 {
17 public:
19  static const NetworkStyle* instantiate(const ChainType networkId);
20 
21  const QString &getAppName() const { return appName; }
22  const QIcon &getAppIcon() const { return appIcon; }
23  const QIcon &getTrayAndWindowIcon() const { return trayAndWindowIcon; }
24  const QString &getTitleAddText() const { return titleAddText; }
25 
26 private:
27  NetworkStyle(const QString &appName, const int iconColorHueShift, const int iconColorSaturationReduction, const char *titleAddText);
28 
29  QString appName;
30  QIcon appIcon;
32  QString titleAddText;
33 };
34 
35 #endif // BITCOIN_QT_NETWORKSTYLE_H
ChainType
Definition: chaintype.h:11
QString appName
Definition: networkstyle.h:29
const QString & getTitleAddText() const
Definition: networkstyle.h:24
const QString & getAppName() const
Definition: networkstyle.h:21
QIcon trayAndWindowIcon
Definition: networkstyle.h:31
const QIcon & getAppIcon() const
Definition: networkstyle.h:22
QString titleAddText
Definition: networkstyle.h:32
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 network id, or 0 if not known.
const QIcon & getTrayAndWindowIcon() const
Definition: networkstyle.h:23
const int iconColorHueShift
const ChainType networkId
const int iconColorSaturationReduction