70 lines
2.2 KiB
C++
70 lines
2.2 KiB
C++
/*
|
|
* This file is part of the Flowee project
|
|
* Copyright (C) 2015 The Bitcoin Core developers
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef FLOWEE_QT_PLATFORMSTYLE_H
|
|
#define FLOWEE_QT_PLATFORMSTYLE_H
|
|
|
|
#include <QIcon>
|
|
#include <QPixmap>
|
|
#include <QString>
|
|
|
|
/* Coin network-specific GUI style information */
|
|
class PlatformStyle
|
|
{
|
|
public:
|
|
/** Get style associated with provided platform name, or 0 if not known */
|
|
static const PlatformStyle *instantiate(const QString &platformId);
|
|
|
|
const QString &getName() const { return name; }
|
|
|
|
bool getImagesOnButtons() const { return imagesOnButtons; }
|
|
bool getUseExtraSpacing() const { return useExtraSpacing; }
|
|
|
|
QColor TextColor() const { return textColor; }
|
|
QColor SingleColor() const { return singleColor; }
|
|
|
|
/** Colorize an image (given filename) with the icon color */
|
|
QImage SingleColorImage(const QString& filename) const;
|
|
|
|
/** Colorize an icon (given filename) with the icon color */
|
|
QIcon SingleColorIcon(const QString& filename) const;
|
|
|
|
/** Colorize an icon (given object) with the icon color */
|
|
QIcon SingleColorIcon(const QIcon& icon) const;
|
|
|
|
/** Colorize an icon (given filename) with the text color */
|
|
QIcon TextColorIcon(const QString& filename) const;
|
|
|
|
/** Colorize an icon (given object) with the text color */
|
|
QIcon TextColorIcon(const QIcon& icon) const;
|
|
|
|
private:
|
|
PlatformStyle(const QString &name, bool imagesOnButtons, bool colorizeIcons, bool useExtraSpacing);
|
|
|
|
QString name;
|
|
bool imagesOnButtons;
|
|
bool colorizeIcons;
|
|
bool useExtraSpacing;
|
|
QColor singleColor;
|
|
QColor textColor;
|
|
/* ... more to come later */
|
|
};
|
|
|
|
#endif
|
|
|