1
0
mirror of https://github.com/KDE/latte-dock.git synced 2025-03-29 10:50:33 +03:00
latte-dock/app/data/appletdata.h
2021-05-27 15:01:00 +00:00

55 lines
944 B
C++

/*
SPDX-FileCopyrightText: 2020 Michail Vourlakos <mvourlakos@gmail.com>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef APPLETDATA_H
#define APPLETDATA_H
//! local
#include "genericdata.h"
#include "generictable.h"
//! Qt
#include <QMetaType>
#include <QString>
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<Applet> AppletsTable;
}
}
Q_DECLARE_METATYPE(Latte::Data::Applet)
#endif