2022-01-20 12:27:56 -06:00
|
|
|
// This file Copyright © 2017-2022 Mnemosyne LLC.
|
2022-08-08 13:05:39 -05:00
|
|
|
// It may be used under GPLv2 (SPDX: GPL-2.0-only), GPLv3 (SPDX: GPL-3.0-only),
|
2022-01-20 12:27:56 -06:00
|
|
|
// or any future license endorsed by Mnemosyne LLC.
|
|
|
|
// License text can be found in the licenses/ folder.
|
2017-02-08 01:06:28 +03:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QIcon>
|
|
|
|
#include <QStyle>
|
|
|
|
|
|
|
|
class StyleHelper
|
|
|
|
{
|
2017-04-19 15:04:45 +03:00
|
|
|
public:
|
2022-11-19 15:46:03 +00:00
|
|
|
static QIcon::Mode getIconMode(QStyle::State const& state);
|
2017-02-08 01:06:28 +03:00
|
|
|
};
|