1 // Copyright (c) 2014 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.
5 #ifndef BITCOIN_QT_NETWORKSTYLE_H
6 #define BITCOIN_QT_NETWORKSTYLE_H
12 /* Coin network-specific GUI style information */
16 /** Get style associated with provided BIP70 network id, or 0 if not known */
17 static const NetworkStyle *instantiate(const QString &networkId);
19 const QString &getAppName() const { return appName; }
20 const QIcon &getAppIcon() const { return appIcon; }
21 const QIcon &getTrayAndWindowIcon() const { return trayAndWindowIcon; }
22 const QString &getTitleAddText() const { return titleAddText; }
25 NetworkStyle(const QString &appName, const int iconColorHueShift, const int iconColorSaturationReduction, const char *titleAddText);
29 QIcon trayAndWindowIcon;
33 #endif // BITCOIN_QT_NETWORKSTYLE_H