File indexing completed on 2024-05-19 05:44:25

0001 /*
0002     SPDX-FileCopyrightText: 2020 Milian Wolff <mail@milianw.de>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-or-later
0005 */
0006 
0007 #ifndef PROXYSTYLE_H
0008 #define PROXYSTYLE_H
0009 
0010 #include <QProxyStyle>
0011 
0012 class ProxyStyle : public QProxyStyle
0013 {
0014 public:
0015     int styleHint(StyleHint hint, const QStyleOption* option = nullptr, const QWidget* widget = nullptr,
0016                   QStyleHintReturn* returnData = nullptr) const override;
0017 };
0018 
0019 #endif // PROXYSTYLE_H