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.
latte-dock/app/settings/controllers/layoutscontroller.h

128 lines
3.3 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 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 <QAbstractItemModel>
#include <QHash>
#include <QSortFilterProxyModel>
#include <QTableView>
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);
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:
Latte::SettingsDialog *m_parentDialog{nullptr};
Latte::Corona *m_corona{nullptr};
QTableView *m_view{nullptr};
Settings::Layouts::HeaderView *m_headerView{nullptr};
//! current data
Model::Layouts *m_model{nullptr};
QSortFilterProxyModel *m_proxyModel{nullptr};
QHash<const QString, Latte::CentralLayout *> m_layouts;
//! temp data
QStringList m_tempDirectories;
};
}
}
}
#endif