|
|
|
/*
|
|
|
|
* Copyright 2017 Smith AR <audoban@openmailbox.org>
|
|
|
|
* 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 LAYOUTMANAGER_H
|
|
|
|
#define LAYOUTMANAGER_H
|
|
|
|
|
|
|
|
#include "dockcorona.h"
|
|
|
|
#include "importer.h"
|
|
|
|
|
|
|
|
#include <QAction>
|
|
|
|
#include <QObject>
|
|
|
|
|
|
|
|
#include <KLocalizedString>
|
|
|
|
|
|
|
|
class Importer;
|
|
|
|
|
|
|
|
namespace Latte {
|
|
|
|
|
|
|
|
//! This class is responsible to manipulate all layouts.
|
|
|
|
//! add,remove,rename, update configurations etc.
|
|
|
|
class LayoutManager : public QObject {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
Q_PROPERTY(QAction *toggleLayoutAction READ toggleLayoutAction NOTIFY toggleLayoutActionChanged)
|
|
|
|
Q_PROPERTY(QAction *addWidgetsAction READ addWidgetsAction NOTIFY addWidgetsActionChanged)
|
|
|
|
|
|
|
|
public:
|
|
|
|
LayoutManager(QObject *parent = nullptr);
|
|
|
|
~LayoutManager() override;
|
|
|
|
|
|
|
|
DockCorona *corona();
|
|
|
|
|
|
|
|
void load();
|
|
|
|
|
|
|
|
QAction *addWidgetsAction();
|
|
|
|
QAction *toggleLayoutAction();
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
//! switch to specified layout
|
|
|
|
Q_INVOKABLE bool switchToLayout(QString layoutName);
|
|
|
|
|
|
|
|
//! creates a new layout with layoutName based on the preset
|
|
|
|
Q_INVOKABLE QString newLayout(QString layoutName, QString preset = QString(i18n("Default")));
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void addWidgetsActionChanged();
|
|
|
|
void toggleLayoutActionChanged();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void showWidgetsExplorer();
|
|
|
|
|
|
|
|
private:
|
|
|
|
QString layoutPath(QString layoutName);
|
|
|
|
//! it is used to activate / deactivate the Alternative Layout
|
|
|
|
void toggleLayout();
|
|
|
|
|
|
|
|
private:
|
|
|
|
DockCorona *m_corona{nullptr};
|
|
|
|
Importer *m_importer{nullptr};
|
|
|
|
|
|
|
|
QString m_lastNonAlternativeLayout{QString(i18n("My Layout"))};
|
|
|
|
|
|
|
|
QAction *m_addWidgetsAction{nullptr};
|
|
|
|
QAction *m_toggleLayoutAction{nullptr};
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // LAYOUTMANAGER_H
|