QortalOS Brooklyn for Raspberry Pi 4
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 lines
430 B

/*
SPDX-FileCopyrightText: 2019 Benjamin Port <[email protected]>
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;
};