/* * 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 SETTINGSTABLAYOUTSHANDLER_H #define SETTINGSTABLAYOUTSHANDLER_H //! local #include "generichandler.h" //! Qt #include #include #include //! #include namespace Ui { class SettingsDialog; } namespace Latte { class Corona; class SettingsDialog; namespace Settings { namespace Controller { class Layouts; } } } 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(Latte::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; Latte::SettingsDialog *dialog() const; Ui::SettingsDialog *ui() const; void showInlineMessage(const QString &msg, const KMessageWidget::MessageType &type, const int &hideInterval = 0, QList actions = QList()) override; 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_currentPageChanged(int page); void on_layoutFilesDropped(const QStringList &paths); void updatePerLayoutButtonsState(); private: bool isHoveringLayoutsTable(const QPoint &pos); private: Latte::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}; }; } } } #endif