mirror of
https://github.com/transmission/transmission
synced 2024-12-23 00:04:06 +00:00
19 lines
305 B
C
19 lines
305 B
C
|
/*
|
||
|
* 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
|
||
|
{
|
||
|
public:
|
||
|
static QIcon::Mode getIconMode (QStyle::State state);
|
||
|
};
|