mirror of
https://github.com/KDE/latte-dock.git
synced 2024-12-24 17:33:50 +03:00
143 lines
5.2 KiB
C++
143 lines
5.2 KiB
C++
/*
|
|
* Copyright 2020 Michail Vourlakos <mvourlakos@gmail.com>
|
|
*
|
|
* This file is part of Latte-Dock
|
|
*
|
|
* Latte-Dock is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation; either version 2 of
|
|
* the License, or (at your option) any later version.
|
|
*
|
|
* Latte-Dock is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef LAYOUTSSTORAGE_H
|
|
#define LAYOUTSSTORAGE_H
|
|
|
|
// local
|
|
#include "../data/appletdata.h"
|
|
#include "../data/generictable.h"
|
|
#include "../data/viewstable.h"
|
|
|
|
// Qt
|
|
#include <QTemporaryDir>
|
|
|
|
// KDE
|
|
#include <KConfigGroup>
|
|
|
|
// Plasma
|
|
#include <Plasma/Applet>
|
|
#include <Plasma/Containment>
|
|
|
|
namespace Latte {
|
|
namespace Layout {
|
|
class GenericLayout;
|
|
}
|
|
}
|
|
|
|
namespace Latte {
|
|
namespace Layouts {
|
|
|
|
struct SubContaimentIdentityData
|
|
{
|
|
QString cfgGroup;
|
|
QString cfgProperty;
|
|
};
|
|
|
|
class Storage
|
|
{
|
|
|
|
public:
|
|
static Storage *self();
|
|
~Storage();
|
|
|
|
static const int IDNULL;
|
|
static const int IDBASE;
|
|
|
|
bool isWritable(const Layout::GenericLayout *layout) const;
|
|
bool isLatteContainment(const Plasma::Containment *containment) const;
|
|
bool isLatteContainment(const KConfigGroup &group) const;
|
|
bool isBroken(const Layout::GenericLayout *layout, QStringList &errors) const;
|
|
bool isSubContainment(const Layout::GenericLayout *layout, const Plasma::Applet *applet) const;
|
|
|
|
bool containsView(const QString &filepath, const int &viewId);
|
|
|
|
int subContainmentId(const KConfigGroup &appletGroup) const;
|
|
|
|
Plasma::Containment *subContainmentOf(const Layout::GenericLayout *layout, const Plasma::Applet *applet);
|
|
|
|
void lock(const Layout::GenericLayout *layout); //! make it only read-only
|
|
void unlock(const Layout::GenericLayout *layout); //! make it writable which it should be the default
|
|
|
|
void importToCorona(const Layout::GenericLayout *layout);
|
|
void syncToLayoutFile(const Layout::GenericLayout *layout, bool removeLayoutId);
|
|
|
|
Data::View newView(const Layout::GenericLayout *destination, const Data::View &nextViewData);
|
|
void removeView(const QString &filepath, const Data::View &viewData);
|
|
void updateView(const Layout::GenericLayout *layout, const Data::View &viewData);
|
|
void updateView(KConfigGroup viewGroup, const Data::View &viewData);
|
|
QString storedView(const Layout::GenericLayout *layout, const int &containmentId); //returns temp filepath containing all view data
|
|
|
|
bool exportTemplate(const QString &originFile, const QString &destinationFile, const Data::AppletsTable &approvedApplets);
|
|
bool exportTemplate(const Layout::GenericLayout *layout, Plasma::Containment *containment, const QString &destinationFile, const Data::AppletsTable &approvedApplets);
|
|
|
|
/// STATIC
|
|
//! Check if an applet config group is valid or belongs to removed applet
|
|
static bool appletGroupIsValid(const KConfigGroup &appletGroup);
|
|
static bool isValid(const int &id);
|
|
|
|
|
|
//! AppletsData Information
|
|
Data::Applet metadata(const QString &pluginId);
|
|
Data::AppletsTable plugins(const Layout::GenericLayout *layout, const int containmentid = IDNULL);
|
|
Data::AppletsTable plugins(const QString &layoutfile, const int containmentid = IDNULL);
|
|
|
|
//! list<screens ids>
|
|
QList<int> viewsScreens(const QString &file);
|
|
|
|
Data::GenericTable<Data::Generic> subcontainments(const KConfigGroup &containmentGroup);
|
|
Data::GenericTable<Data::Generic> subcontainments(const Layout::GenericLayout *layout, const Plasma::Containment *lattecontainment) const;
|
|
Data::View view(const KConfigGroup &containmentGroup);
|
|
Data::View view(const Layout::GenericLayout *layout, const Plasma::Containment *lattecontainment);
|
|
Data::ViewsTable views(const QString &file);
|
|
Data::ViewsTable views(const Layout::GenericLayout *layout);
|
|
|
|
private:
|
|
Storage();
|
|
|
|
void clearExportedLayoutSettings(KConfigGroup &layoutSettingsGroup);
|
|
void importContainments(const QString &originFile, const QString &destinationFile);
|
|
void syncContainmentConfig(Plasma::Containment *containment);
|
|
|
|
bool isSubContainment(const KConfigGroup &appletGroup) const;
|
|
int subIdentityIndex(const KConfigGroup &appletGroup) const;
|
|
|
|
//! STORAGE !////
|
|
QString availableId(QStringList all, QStringList assigned, int base);
|
|
//! provides a new file path based the provided file. The new file
|
|
//! has updated ids for containments and applets based on the corona
|
|
//! loaded ones
|
|
QString newUniqueIdsFile(QString originFile, const Layout::GenericLayout *destinationLayout);
|
|
//! imports a layout file and returns the containments for the docks
|
|
QList<Plasma::Containment *> importLayoutFile(const Layout::GenericLayout *layout, QString file);
|
|
|
|
QStringList containmentsIds(const QString &filepath);
|
|
QStringList appletsIds(const QString &filepath);
|
|
|
|
private:
|
|
QTemporaryDir m_storageTmpDir;
|
|
|
|
QList<SubContaimentIdentityData> m_subIdentities;
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif
|