/* SPDX-FileCopyrightText: 2020 Michail Vourlakos SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef APPLETDATA_H #define APPLETDATA_H //! local #include "genericdata.h" #include "generictable.h" //! Qt #include #include namespace Latte { namespace Data { class Applet : public Generic { public: Applet(); Applet(Applet &&o); Applet(const Applet &o); //! Layout data bool isSelected; QString description; QString icon; QString storageId; QString subcontainmentId; bool isInstalled() const; bool isValid() const; QString visibleName() const; //! Operators Applet &operator=(const Applet &rhs); Applet &operator=(Applet &&rhs); bool operator==(const Applet &rhs) const; bool operator!=(const Applet &rhs) const; }; typedef GenericTable AppletsTable; } } Q_DECLARE_METATYPE(Latte::Data::Applet) #endif