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.
144 lines
3.5 KiB
C++
144 lines
3.5 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 SETTINGSTABLAYOUTSHANDLER_H
|
|
#define SETTINGSTABLAYOUTSHANDLER_H
|
|
|
|
//! local
|
|
#include "generichandler.h"
|
|
|
|
//! Qt
|
|
#include <QAction>
|
|
#include <QButtonGroup>
|
|
#include <QMenu>
|
|
|
|
//!
|
|
#include <KConfigGroup>
|
|
|
|
namespace Ui {
|
|
class SettingsDialog;
|
|
}
|
|
|
|
namespace Latte {
|
|
class Corona;
|
|
|
|
namespace Settings {
|
|
namespace Controller {
|
|
class Layouts;
|
|
}
|
|
|
|
namespace Dialog{
|
|
class SettingsDialog;
|
|
}
|
|
}
|
|
}
|
|
|
|
namespace Latte {
|
|
namespace Settings {
|
|
namespace Handler {
|
|
|
|
//! Handlers are objects to handle the UI elements that semantically associate with specific
|
|
//! ui::tabs or different windows. They are responsible also to handle the user interaction
|
|
//! between controllers and views
|
|
|
|
class TabLayouts : public Generic
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
TabLayouts(Dialog::SettingsDialog *parent);
|
|
~TabLayouts();
|
|
|
|
bool dataAreChanged() const override;
|
|
bool inDefaultValues() const override;
|
|
bool isCurrentTab() const;
|
|
|
|
void reset() override;
|
|
void resetDefaults() override;
|
|
void save() override;
|
|
|
|
Latte::Corona *corona() const;
|
|
Dialog::SettingsDialog *dialog() const;
|
|
Ui::SettingsDialog *ui() const;
|
|
|
|
public slots:
|
|
void on_dragEnterEvent(QDragEnterEvent *event);
|
|
void on_dragLeaveEvent(QDragLeaveEvent *event);
|
|
void on_dragMoveEvent(QDragMoveEvent *event);
|
|
void on_dropEvent(QDropEvent *event);
|
|
void on_keyReleaseEvent(QKeyEvent *event);
|
|
|
|
private slots:
|
|
void initUi();
|
|
void initLayoutMenu();
|
|
|
|
void loadConfig();
|
|
void saveConfig();
|
|
|
|
void on_new_layout();
|
|
void on_copy_layout();
|
|
void on_download_layout();
|
|
void on_pause_layout();
|
|
void on_switch_layout();
|
|
void on_import_layout();
|
|
void on_export_layout();
|
|
void on_locked_layout();
|
|
void on_remove_layout();
|
|
void on_shared_layout();
|
|
void on_details_action();
|
|
|
|
void on_currentPageChanged(int page);
|
|
void on_layoutFilesDropped(const QStringList &paths);
|
|
void updatePerLayoutButtonsState();
|
|
|
|
private:
|
|
bool isHoveringLayoutsTable(const QPoint &pos);
|
|
|
|
private:
|
|
Settings::Dialog::SettingsDialog *m_parentDialog{nullptr};
|
|
Ui::SettingsDialog *m_ui{nullptr};
|
|
Latte::Corona *m_corona{nullptr};
|
|
|
|
Settings::Controller::Layouts *m_layoutsController{nullptr};
|
|
|
|
KConfigGroup m_storage;
|
|
|
|
QButtonGroup *m_inMemoryButtons;
|
|
|
|
//! Layout menu actions
|
|
QMenu *m_layoutMenu{nullptr};
|
|
QAction *m_switchLayoutAction{nullptr};
|
|
QAction *m_pauseLayoutAction{nullptr};
|
|
QAction *m_newLayoutAction{nullptr};
|
|
QAction *m_copyLayoutAction{nullptr};
|
|
QAction *m_removeLayoutAction{nullptr};
|
|
QAction *m_lockedLayoutAction{nullptr};
|
|
QAction *m_sharedLayoutAction{nullptr};
|
|
QAction *m_importLayoutAction{nullptr};
|
|
QAction *m_exportLayoutAction{nullptr};
|
|
QAction *m_downloadLayoutAction{nullptr};
|
|
QAction *m_detailsAction{nullptr};
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif
|