/* * Copyright 2020 Michail Vourlakos * * 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 . * */ #ifndef SETTINGSLAYOUTSCONTROLLER_H #define SETTINGSLAYOUTSCONTROLLER_H // local #include "../data/layoutdata.h" #include "../data/layoutstable.h" #include "../delegates/layoutsheaderview.h" #include "../models/layoutsmodel.h" #include "../../lattecorona.h" #include "../../../liblatte2/types.h" // Qt #include #include #include #include namespace Latte { class Corona; class CentralLayout; class SettingsDialog; } namespace Latte { namespace Settings { namespace Controller { class Layouts : public QObject { Q_OBJECT public: explicit Layouts(Latte::SettingsDialog *parent, Latte::Corona *corona, QTableView *view); ~Layouts(); QAbstractItemModel *model() const; QTableView *view() const; bool dataAreChanged() const; bool inMultipleMode() const; void setInMultipleMode(bool inMultiple); void setOriginalInMultipleMode(bool inMultiple); bool hasSelectedLayout() const; bool selectedLayoutIsCurrentActive() const; const Data::Layout selectedLayout() const; //! actions void reset(); void save(); void loadLayouts(); void removeSelected(); void toggleLockedForSelected(); void toggleSharedForSelected(); QString layoutNameForFreeActivities() const; void setLayoutNameForFreeActivities(const QString &name, bool updateOriginalData = false); void copySelectedLayout(); const Data::Layout addLayoutForFile(QString file, QString layoutName = QString(), bool newTempDirectory = true); //! import layouts from Latte versions <= v0.7.x bool importLayoutsFromV1ConfigFile(QString file); signals: void dataChanged(); private slots: void saveColumnWidths(); void on_nameDuplicatedFrom(const QString &provenId, const QString &trialId); private: void initView(); void syncActiveShares(); int rowForId(QString id) const; int rowForName(QString layoutName) const; QString uniqueTempDirectory(); QString uniqueLayoutName(QString name); private: Latte::SettingsDialog *m_parentDialog{nullptr}; Latte::Corona *m_corona{nullptr}; QTableView *m_view{nullptr}; Settings::Layouts::HeaderView *m_headerView{nullptr}; //! original data bool o_originalInMultipleMode{false}; Settings::Data::LayoutsTable o_layoutsOriginalData; //! current data Model::Layouts *m_model{nullptr}; QSortFilterProxyModel *m_proxyModel{nullptr}; QHash m_layouts; //! temp data QStringList m_tempDirectories; }; } } } #endif