PIVX Core  5.6.99
P2P Digital Currency
networkstyle.h
Go to the documentation of this file.
1 // Copyright (c) 2014 The Bitcoin 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 PIVX_QT_NETWORKSTYLE_H
6 #define PIVX_QT_NETWORKSTYLE_H
7 
8 #include <QIcon>
9 #include <QPixmap>
10 #include <QString>
11 
12 /* Coin network-specific GUI style information */
14 {
15 public:
17  static const NetworkStyle* instantiate(const QString& networkId);
18 
19  const QString& getAppName() const { return appName; }
20  const QIcon& getAppIcon() const { return appIcon; }
21  const QString& getTitleAddText() const { return titleAddText; }
22  const QPixmap& getSplashImage() const { return splashImage; }
23 
24 private:
25  NetworkStyle(const QString& appName, const QString& appIcon, const char* titleAddText, const QString& splashImage);
26 
27  QString appName;
28  QIcon appIcon;
29  QString titleAddText;
30  QPixmap splashImage;
31 };
32 
33 #endif // PIVX_QT_NETWORKSTYLE_H
QString appName
Definition: networkstyle.h:27
static const NetworkStyle * instantiate(const QString &networkId)
Get style associated with provided network id, or 0 if not known.
const QString & getTitleAddText() const
Definition: networkstyle.h:21
const QString & getAppName() const
Definition: networkstyle.h:19
const QPixmap & getSplashImage() const
Definition: networkstyle.h:22
QPixmap splashImage
Definition: networkstyle.h:30
const QIcon & getAppIcon() const
Definition: networkstyle.h:20
NetworkStyle(const QString &appName, const QString &appIcon, const char *titleAddText, const QString &splashImage)
QString titleAddText
Definition: networkstyle.h:29
const char * networkId