]> Git Repo - VerusCoin.git/blame - src/qt/scicon.h
maturity
[VerusCoin.git] / src / qt / scicon.h
CommitLineData
9b7d3fb1
LD
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
10QT_BEGIN_NAMESPACE
11class QColor;
12class QIcon;
13class QString;
14QT_END_NAMESPACE
15
16QImage SingleColorImage(const QString& filename, const QColor&);
17QIcon SingleColorIcon(const QIcon&, const QColor&);
18QIcon SingleColorIcon(const QString& filename, const QColor&);
19QColor SingleColor();
20QIcon SingleColorIcon(const QString& filename);
21QIcon TextColorIcon(const QIcon&);
22QIcon TextColorIcon(const QString& filename);
23
24#endif // BITCOIN_QT_SCICON_H
This page took 0.104929 seconds and 4 git commands to generate.