Skip to content

File styleoverride.h#

File List > config > styleoverride.h

Go to the documentation of this file.


// SPDX-License-Identifier: GPL-3.0-or-later
// SPDX-FileCopyrightText: 2020 Jeremy Borgman <borgman.jeremy@pm.me>
//
// Created by jeremy on 9/24/20.

#ifndef FLAMESHOT_STYLEOVERRIDE_H
#define FLAMESHOT_STYLEOVERRIDE_H

#include <QObject>
#include <QProxyStyle>

class StyleOverride : public QProxyStyle
{
    Q_OBJECT
public:
    int styleHint(StyleHint hint,
                  const QStyleOption* option = Q_NULLPTR,
                  const QWidget* widget = Q_NULLPTR,
                  QStyleHintReturn* returnData = Q_NULLPTR) const;
};

#endif // FLAMESHOT_STYLEOVERRIDE_H