qskinny/skins/squiek/QskSquiekSkin.h
2023-03-02 09:16:55 +01:00

32 lines
794 B
C++

/******************************************************************************
* QSkinny - Copyright (C) 2016 Uwe Rathmann
* This file may be used under the terms of the QSkinny License, Version 1.0
*****************************************************************************/
#ifndef QSK_SQUIEK_SKIN_H
#define QSK_SQUIEK_SKIN_H
#include "QskSquiekGlobal.h"
#include <QskSkin.h>
#include <memory>
class QSK_SQUIEK_EXPORT QskSquiekSkin : public QskSkin
{
Q_OBJECT
using Inherited = QskSkin;
public:
QskSquiekSkin( QObject* parent = nullptr );
~QskSquiekSkin() override;
private:
void resetColors( const QColor& accent ) override;
void addGraphicRole( int role, const QColor& );
class PrivateData;
std::unique_ptr< PrivateData > m_data;
};
#endif