aboutsummaryrefslogtreecommitdiff
path: root/src/qt/scicon.h
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2014-11-06 19:55:52 +0000
committerWladimir J. van der Laan <laanwj@gmail.com>2014-12-27 19:04:49 +0100
commit9b7d3fb16574f1604c0837f9ac0f402672add87f (patch)
treebd1944cb29df87da0e0b5bfa0ee6076721fc3c8f /src/qt/scicon.h
parenta39aa74a8d90c948c2dc2d1c0bf1a932d0a4a3b7 (diff)
downloadbitcoin-9b7d3fb16574f1604c0837f9ac0f402672add87f.tar.xz
Adopt style colour for button icons
Diffstat (limited to 'src/qt/scicon.h')
-rw-r--r--src/qt/scicon.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/qt/scicon.h b/src/qt/scicon.h
new file mode 100644
index 0000000000..1388069ddb
--- /dev/null
+++ b/src/qt/scicon.h
@@ -0,0 +1,24 @@
+// Copyright (c) 2014 The Bitcoin developers
+// Distributed under the MIT software license, see the accompanying
+// file COPYING or http://www.opensource.org/licenses/mit-license.php.
+
+#ifndef BITCOIN_QT_SCICON_H
+#define BITCOIN_QT_SCICON_H
+
+#include <QtCore>
+
+QT_BEGIN_NAMESPACE
+class QColor;
+class QIcon;
+class QString;
+QT_END_NAMESPACE
+
+QImage SingleColorImage(const QString& filename, const QColor&);
+QIcon SingleColorIcon(const QIcon&, const QColor&);
+QIcon SingleColorIcon(const QString& filename, const QColor&);
+QColor SingleColor();
+QIcon SingleColorIcon(const QString& filename);
+QIcon TextColorIcon(const QIcon&);
+QIcon TextColorIcon(const QString& filename);
+
+#endif // BITCOIN_QT_SCICON_H