/* * 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 Settings { namespace Handler { class TabLayouts; } } } namespace Latte { namespace Settings { namespace Controller { class Layouts : public QObject { Q_OBJECT public: explicit Layouts(Settings::Handler::TabLayouts *parent); ~Layouts(); QAbstractItemModel *model() const; QTableView *view() const; bool dataAreChanged() const; bool inMultipleMode() const; void setInMultipleMode(bool inMultiple); bool hasSelectedLayout() const; bool selectedLayoutIsCurrentActive() const; const Data::Layout selectedLayoutCurrentData() const; const Data::Layout selectedLayoutOriginalData() const; //! actions void reset(); void save(); void loadLayouts(); void removeSelected(); void toggleLockedForSelected(); void toggleSharedForSelected(); QString layoutNameForFreeActivities() const; void setOriginalLayoutForFreeActivities(const QString &id); 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(); public slots: //! needed for Delegate::Shared void on_sharedToInEditChanged(const int &row, const bool &inEdit); private slots: void saveColumnWidths(); void on_nameDuplicatedFrom(const QString &provenId, const QString &trialId); void updateLastColumnWidth(); private: void initView(); void syncActiveShares(); int rowForId(QString id) const; int rowForName(QString layoutName) const; QString uniqueTempDirectory(); QString uniqueLayoutName(QString name); private: Settings::Handler::TabLayouts *m_handler{nullptr}; QTableView *m_view{nullptr}; Settings::Layouts::HeaderView *m_headerView{nullptr}; //! current data Model::Layouts *m_model{nullptr}; QSortFilterProxyModel *m_proxyModel{nullptr}; QHash m_layouts; //! temp data QStringList m_tempDirectories; }; } } } #endif