/* KLayout Layout Viewer Copyright (C) 2006-2017 Matthias Koefferlein This program 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. This program 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, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef HDR_laySaltManagerDialog #define HDR_laySaltManagerDialog #include "ui_SaltManagerDialog.h" #include "tlDeferredExecution.h" #include #include namespace lay { class Salt; class SaltGrain; class SaltGrainPropertiesDialog; /** * @brief The dialog for managing the Salt ("Packages") */ class SaltManagerDialog : public QDialog, private Ui::SaltManagerDialog { Q_OBJECT public: /** * @brief Constructor */ SaltManagerDialog (QWidget *parent, lay::Salt *salt, lay::Salt *salt_mine); private slots: /** * @brief Called when the list of packages (grains) has changed */ void salt_changed (); /** * @brief Called when the repository (salt mine) has changed */ void salt_mine_changed (); /** * @brief Called when the currently selected package (grain) has changed */ void current_changed (); /** * @brief Called when the currently selected package from the salt mine has changed */ void mine_current_changed (); /** * @brief Called when the "edit" button is pressed */ void edit_properties (); /** * @brief Called when the "mark" button is pressed */ void mark_clicked (); /** * @brief Called when the "edit" button is pressed */ void create_grain (); /** * @brief Called when the "delete" button is pressed */ void delete_grain (); /** * @brief Called when the mode tab changed */ void mode_changed (); /** * @brief Called when the "apply" button is clicked */ void apply (); /** * @brief Called when one search text changed */ void search_text_changed (const QString &text); /** * @brief Called to show the marked items only */ void show_marked_only (); /** * @brief Called to show all items again */ void show_all (); /** * @brief Called to unmark all items */ void unmark_all (); private: Salt *mp_salt, *mp_salt_mine; std::auto_ptr m_remote_grain; bool m_current_changed_enabled; SaltGrainPropertiesDialog *mp_properties_dialog; tl::DeferredMethod dm_update_models; SaltGrain *current_grain (); SaltGrain *mine_current_grain (); void update_models (); void update_apply_state (); }; } #endif