]> Git Repo - VerusCoin.git/blob - src/qt/scicon.h
Merge pull request #5360
[VerusCoin.git] / src / qt / scicon.h
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 BITCOIN_QT_SCICON_H
6 #define BITCOIN_QT_SCICON_H
7
8 #include <QtCore>
9
10 QT_BEGIN_NAMESPACE
11 class QColor;
12 class QIcon;
13 class QString;
14 QT_END_NAMESPACE
15
16 QImage SingleColorImage(const QString& filename, const QColor&);
17 QIcon SingleColorIcon(const QIcon&, const QColor&);
18 QIcon SingleColorIcon(const QString& filename, const QColor&);
19 QColor SingleColor();
20 QIcon SingleColorIcon(const QString& filename);
21 QIcon TextColorIcon(const QIcon&);
22 QIcon TextColorIcon(const QString& filename);
23
24 #endif // BITCOIN_QT_SCICON_H
This page took 0.028045 seconds and 4 git commands to generate.