/* * This file is part of smolbote. It's copyrighted by the contributors recorded * in the version control history of the file, available from its original * location: https://neueland.iserlohn-fortress.net/cgit/smolbote * * SPDX-License-Identifier: GPL-3.0 */ #ifndef SMOLBOTE_APPLICATION_STYLE_H #define SMOLBOTE_APPLICATION_STYLE_H #include class ApplicationStyle : public QProxyStyle { public: ApplicationStyle(); ~ApplicationStyle() override = default; QIcon standardIcon(QStyle::StandardPixmap standardPixmap, const QStyleOption *opt, const QWidget *widget) const override; static QIcon applicationIcon(); static QIcon windowIcon(); }; #endif