2017-02-07 22:06:28 +00:00
|
|
|
/*
|
|
|
|
* This file Copyright (C) 2017 Mnemosyne LLC
|
|
|
|
*
|
|
|
|
* It may be used under the GNU GPL versions 2 or 3
|
|
|
|
* or any future license endorsed by Mnemosyne LLC.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QIcon>
|
|
|
|
#include <QStyle>
|
|
|
|
|
|
|
|
class StyleHelper
|
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
public:
|
|
|
|
static QIcon::Mode getIconMode(QStyle::State state);
|
2017-02-07 22:06:28 +00:00
|
|
|
};
|