3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-12 10:15:54 +00:00
Brooklyn/plasma/workspace/kcms/icons/iconssettings.h

24 lines
430 B
C
Raw Normal View History

2022-04-02 18:24:21 +05:00
/*
SPDX-FileCopyrightText: 2019 Benjamin Port <benjamin.port@enioka.com>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#pragma once
#include "iconssettingsbase.h"
class IconsSettings : public IconsSettingsBase
{
Q_OBJECT
public:
IconsSettings(QObject *parent = nullptr);
~IconsSettings() override;
public Q_SLOTS:
void updateIconTheme();
void updateThemeDirty();
private:
bool m_themeDirty;
};