You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
944 B
C++
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
|