klayout/src/laybasic/laybasic/layQtTools.h

70 lines
1.9 KiB
C++

/*
KLayout Layout Viewer
Copyright (C) 2006-2020 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_layQtTools
#define HDR_layQtTools
#include "laybasicCommon.h"
#include <string>
class QLabel;
class QWidget;
class QObject;
namespace lay
{
/**
* @brief Save the given Widget's (dialog) state to the string
*
* The state can be recovered from the string using restore_dialog_state;
*/
LAYBASIC_PUBLIC std::string save_dialog_state (QWidget *dialog, bool with_section_sizes = true);
/**
* @brief Restore the dialog's state from the given string
*/
LAYBASIC_PUBLIC void restore_dialog_state (QWidget *dialog, const std::string &s, bool with_section_sizes = true);
/**
* @brief A utility function connecting a label's linkActivated event with the help browser
*/
LAYBASIC_PUBLIC void activate_help_links (QLabel *label);
/**
* @brief A utility function connecting a label's linkActivated event with the help browser (modal help dialogs)
*/
LAYBASIC_PUBLIC void activate_modal_help_links (QLabel *label);
/**
* @brief Register the help handler (object and slots for non-modal and modal help dialogs)
*/
LAYBASIC_PUBLIC void register_help_handler (QObject *object, const char *slot, const char *modal_slot);
} // namespace lay
#endif