mirror of
https://github.com/KLayout/klayout.git
synced 2026-09-01 18:37:50 +02:00
WIP, some refactoring and bug fixing. Move toolkit widget works
This commit is contained in:
@@ -1,114 +0,0 @@
|
||||
|
||||
/*
|
||||
|
||||
KLayout Layout Viewer
|
||||
Copyright (C) 2006-2025 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
|
||||
|
||||
*/
|
||||
|
||||
#if defined(HAVE_QTBINDINGS)
|
||||
|
||||
#include "gsiDeclLayConfigPage.h"
|
||||
|
||||
#include "gsiQtGuiExternals.h"
|
||||
#include "gsiQtWidgetsExternals.h" // for Qt5
|
||||
|
||||
namespace gsi
|
||||
{
|
||||
|
||||
ConfigPageImpl::ConfigPageImpl (const std::string &title)
|
||||
: lay::ConfigPage (0), m_title (title)
|
||||
{
|
||||
// .. nothing yet ..
|
||||
}
|
||||
|
||||
void
|
||||
ConfigPageImpl::commit_impl (lay::Dispatcher *root)
|
||||
{
|
||||
lay::ConfigPage::commit (root);
|
||||
}
|
||||
|
||||
void
|
||||
ConfigPageImpl::commit (lay::Dispatcher *root)
|
||||
{
|
||||
if (f_commit.can_issue ()) {
|
||||
f_commit.issue<ConfigPageImpl, lay::Dispatcher *> (&ConfigPageImpl::commit_impl, root);
|
||||
} else {
|
||||
ConfigPageImpl::commit_impl (root);
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
ConfigPageImpl::setup_impl (lay::Dispatcher *root)
|
||||
{
|
||||
lay::ConfigPage::setup (root);
|
||||
}
|
||||
|
||||
void
|
||||
ConfigPageImpl::setup (lay::Dispatcher *root)
|
||||
{
|
||||
if (f_setup.can_issue ()) {
|
||||
f_setup.issue<ConfigPageImpl, lay::Dispatcher *> (&ConfigPageImpl::setup_impl, root);
|
||||
} else {
|
||||
ConfigPageImpl::setup_impl (root);
|
||||
}
|
||||
}
|
||||
|
||||
ConfigPageImpl *new_config_page (const std::string &title)
|
||||
{
|
||||
return new ConfigPageImpl (title);
|
||||
}
|
||||
|
||||
Class<ConfigPageImpl> decl_ConfigPage (QT_EXTERNAL_BASE (QFrame) "lay", "ConfigPage",
|
||||
constructor ("new", &new_config_page, gsi::arg ("title"),
|
||||
"@brief Creates a new ConfigPage object\n"
|
||||
"@param title The title of the page and also the position in the configuration page tree\n"
|
||||
"\n"
|
||||
"The title has the form 'Group|Page' - e.g. 'Application|Macro Development IDE' will place "
|
||||
"the configuration page in the 'Application' group and into the 'Macro Development IDE' page."
|
||||
) +
|
||||
callback ("apply", &ConfigPageImpl::commit, &ConfigPageImpl::f_commit, gsi::arg ("dispatcher"),
|
||||
"@brief Reimplement this method to transfer data from the page to the configuration\n"
|
||||
"In this method, you should transfer all widget data into corresponding configuration updates.\n"
|
||||
"Use \\Dispatcher#set_config on the dispatcher object ('dispatcher' argument) to set a configuration parameter.\n"
|
||||
) +
|
||||
callback ("setup", &ConfigPageImpl::setup, &ConfigPageImpl::f_setup, gsi::arg ("dispatcher"),
|
||||
"@brief Reimplement this method to transfer data from the configuration to the page\n"
|
||||
"In this method, you should transfer all configuration data to the widgets.\n"
|
||||
"Use \\Dispatcher#get_config on the dispatcher object ('dispatcher' argument) to get a configuration parameter "
|
||||
"and set the editing widget's state accordingly.\n"
|
||||
),
|
||||
"@brief The plugin framework's configuration page\n"
|
||||
"\n"
|
||||
"This object provides a way to establish plugin-specific configuration pages.\n"
|
||||
"\n"
|
||||
"The only way of communication between the page and the plugin is through "
|
||||
"configuration parameters. One advantage of this approach is that the current state is "
|
||||
"automatically persisted. Configuration parameters can be obtained by the plugin "
|
||||
"directly from the \\Dispatcher object) or by listening to 'configure' calls.\n"
|
||||
"\n"
|
||||
"For the purpose of data transfer, the configuration page has two methods: 'apply' which is supposed to transfer "
|
||||
"the editor widget's state into configuration parameters. 'setup' does the inverse and transfer "
|
||||
"configuration parameters into editor widget states. Both methods are called by the system when "
|
||||
"some transfer is needed.\n"
|
||||
"\n"
|
||||
"This class has been introduced in version 0.30.4.\n"
|
||||
);
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
@@ -1,67 +0,0 @@
|
||||
|
||||
/*
|
||||
|
||||
KLayout Layout Viewer
|
||||
Copyright (C) 2006-2025 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
|
||||
|
||||
*/
|
||||
|
||||
#if !defined(_HDR_gsiDeclLayConfigPage)
|
||||
#define _HDR_gsiDeclLayConfigPage
|
||||
|
||||
#if defined(HAVE_QTBINDINGS)
|
||||
|
||||
#include "gsiDecl.h"
|
||||
#include "gsiDeclBasic.h"
|
||||
|
||||
#include "layPluginConfigPage.h"
|
||||
#include "layLayoutViewBase.h"
|
||||
|
||||
namespace gsi
|
||||
{
|
||||
|
||||
class ConfigPageImpl
|
||||
: public lay::ConfigPage, public gsi::ObjectBase
|
||||
{
|
||||
public:
|
||||
ConfigPageImpl (const std::string &title);
|
||||
|
||||
virtual std::string title () const
|
||||
{
|
||||
return m_title;
|
||||
}
|
||||
|
||||
void commit_impl (lay::Dispatcher *root);
|
||||
virtual void commit (lay::Dispatcher *root);
|
||||
void setup_impl (lay::Dispatcher *root);
|
||||
virtual void setup (lay::Dispatcher *root);
|
||||
|
||||
gsi::Callback f_commit;
|
||||
gsi::Callback f_setup;
|
||||
|
||||
private:
|
||||
tl::weak_ptr<lay::LayoutViewBase> mp_view;
|
||||
tl::weak_ptr<lay::Dispatcher> mp_dispatcher;
|
||||
std::string m_title;
|
||||
std::string m_index;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
#endif
|
||||
@@ -1,255 +0,0 @@
|
||||
|
||||
/*
|
||||
|
||||
KLayout Layout Viewer
|
||||
Copyright (C) 2006-2025 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
|
||||
|
||||
*/
|
||||
|
||||
#if defined(HAVE_QTBINDINGS)
|
||||
|
||||
#include "gsiDeclLayEditorOptionsPage.h"
|
||||
|
||||
#include "gsiQtGuiExternals.h"
|
||||
#include "gsiQtWidgetsExternals.h" // for Qt5
|
||||
|
||||
namespace gsi
|
||||
{
|
||||
|
||||
Class<lay::EditorOptionsPage> decl_EditorOptionsPageBase (QT_EXTERNAL_BASE (QWidget) "lay", "EditorOptionsPageBase",
|
||||
method ("view", &lay::EditorOptionsPage::view,
|
||||
"@brief Gets the view object this page is associated with\n"
|
||||
) +
|
||||
method ("title", &lay::EditorOptionsPage::title,
|
||||
"@brief Gets the title string of the page\n"
|
||||
) +
|
||||
method ("order", &lay::EditorOptionsPage::order,
|
||||
"@brief Gets the order index of the page\n"
|
||||
) +
|
||||
method ("is_focus_page?", &lay::EditorOptionsPage::is_focus_page,
|
||||
"@brief Gets a flag indicating whether the page is a focus page\n"
|
||||
"See \\focus_page= for a description is this attribute.\n"
|
||||
) +
|
||||
method ("focus_page=", &lay::EditorOptionsPage::set_focus_page, gsi::arg ("flag"),
|
||||
"@brief Sets a flag indicating whether the page is a focus page\n"
|
||||
"The focus page is the page that is selected when the tab key is pressed during some plugin action.\n"
|
||||
) +
|
||||
method ("is_modal_page?", &lay::EditorOptionsPage::is_modal_page,
|
||||
"@brief Gets a flag indicating whether the page is a modal page\n"
|
||||
"See \\modal_page= for a description is this attribute.\n"
|
||||
) +
|
||||
method ("modal_page=", &lay::EditorOptionsPage::set_modal_page, gsi::arg ("flag"),
|
||||
"@brief Sets a flag indicating whether the page is a modal page\n"
|
||||
"A modal page is shown in a modal dialog upon \\show. Non-modal pages are shown in the "
|
||||
"editor options dock.\n"
|
||||
) +
|
||||
method ("show", &lay::EditorOptionsPage::show,
|
||||
"@brief Shows the page\n"
|
||||
"@return A value indicating whether the page was opened non-modal (-1), accepted (1) or rejected (0)\n"
|
||||
"Provided the page is selected because the plugin is active, this method will "
|
||||
"open a dialog to show the page if it is modal, or locate the page in the editor options "
|
||||
"dock and bring it to the front if it is non-modal.\n"
|
||||
"\n"
|
||||
"Before the page is shown, \\setup is called. When the page is dismissed (accepted), \\apply is called. "
|
||||
"You can overload these methods to transfer data to and from the configuration space or to perform other "
|
||||
"actions, not related to configuration parameters."
|
||||
) +
|
||||
method ("apply", &lay::EditorOptionsPage::apply, gsi::arg ("dispatcher"),
|
||||
"@brief Transfers data from the page to the configuration\n"
|
||||
) +
|
||||
method ("setup", &lay::EditorOptionsPage::setup, gsi::arg ("dispatcher"),
|
||||
"@brief Transfers data from the configuration to the page\n"
|
||||
) +
|
||||
method ("cancel", &lay::EditorOptionsPage::cancel,
|
||||
"@brief Gets called when the Escape key is pressed on a non-modal page\n"
|
||||
"This method has been introduced in version 0.30.6."
|
||||
) +
|
||||
method ("commit", &lay::EditorOptionsPage::commit,
|
||||
"@brief Gets called when the Enter key is pressed on a non-modal page\n"
|
||||
"This method has been introduced in version 0.30.6."
|
||||
),
|
||||
"@brief The plugin framework's editor options page base class\n"
|
||||
"\n"
|
||||
"This class is provided as an interface to the base class implementation for various functions.\n"
|
||||
"You can use these methods in order to pass down events to the original implementation or access\n"
|
||||
"objects not created in script space.\n"
|
||||
"\n"
|
||||
"It features some useful methods such as 'view' and provides a slot to call for triggering a data "
|
||||
"transfer ('edited').\n"
|
||||
"\n"
|
||||
"Note that even though the page class is derived from QWidget, you can call QWidget methods "
|
||||
"but not overload virtual methods from QWidget.\n"
|
||||
"\n"
|
||||
"This class has been introduced in version 0.30.4.\n"
|
||||
);
|
||||
|
||||
EditorOptionsPageImpl::EditorOptionsPageImpl (const std::string &title, int index)
|
||||
: lay::EditorOptionsPage (), m_title (title), m_index (index)
|
||||
{
|
||||
// .. nothing yet ..
|
||||
}
|
||||
|
||||
void
|
||||
EditorOptionsPageImpl::call_edited ()
|
||||
{
|
||||
lay::EditorOptionsPage::edited ();
|
||||
}
|
||||
|
||||
static void apply_fb (EditorOptionsPageImpl *ep, lay::Dispatcher *root)
|
||||
{
|
||||
ep->lay::EditorOptionsPage::apply (root);
|
||||
}
|
||||
|
||||
static void setup_fb (EditorOptionsPageImpl *ep, lay::Dispatcher *root)
|
||||
{
|
||||
ep->lay::EditorOptionsPage::setup (root);
|
||||
}
|
||||
|
||||
static void cancel_fb (EditorOptionsPageImpl *ep)
|
||||
{
|
||||
ep->lay::EditorOptionsPage::cancel ();
|
||||
}
|
||||
|
||||
void
|
||||
EditorOptionsPageImpl::apply_impl (lay::Dispatcher *root)
|
||||
{
|
||||
lay::EditorOptionsPage::apply (root);
|
||||
}
|
||||
|
||||
void
|
||||
EditorOptionsPageImpl::apply (lay::Dispatcher *root)
|
||||
{
|
||||
if (f_apply.can_issue ()) {
|
||||
f_apply.issue<EditorOptionsPageImpl, lay::Dispatcher *> (&EditorOptionsPageImpl::apply_impl, root);
|
||||
} else {
|
||||
EditorOptionsPageImpl::apply_impl (root);
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
EditorOptionsPageImpl::setup_impl (lay::Dispatcher *root)
|
||||
{
|
||||
lay::EditorOptionsPage::setup (root);
|
||||
}
|
||||
|
||||
void
|
||||
EditorOptionsPageImpl::setup (lay::Dispatcher *root)
|
||||
{
|
||||
if (f_setup.can_issue ()) {
|
||||
f_setup.issue<EditorOptionsPageImpl, lay::Dispatcher *> (&EditorOptionsPageImpl::setup_impl, root);
|
||||
} else {
|
||||
EditorOptionsPageImpl::setup_impl (root);
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
EditorOptionsPageImpl::cancel_impl ()
|
||||
{
|
||||
lay::EditorOptionsPage::cancel ();
|
||||
}
|
||||
|
||||
void
|
||||
EditorOptionsPageImpl::cancel ()
|
||||
{
|
||||
if (f_cancel.can_issue ()) {
|
||||
f_cancel.issue<EditorOptionsPageImpl> (&EditorOptionsPageImpl::cancel_impl);
|
||||
} else {
|
||||
EditorOptionsPageImpl::cancel_impl ();
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
EditorOptionsPageImpl::commit_impl (lay::Dispatcher *root)
|
||||
{
|
||||
lay::EditorOptionsPage::commit (root);
|
||||
}
|
||||
|
||||
void
|
||||
EditorOptionsPageImpl::commit (lay::Dispatcher *root)
|
||||
{
|
||||
if (f_commit.can_issue ()) {
|
||||
f_commit.issue<EditorOptionsPageImpl, lay::Dispatcher *> (&EditorOptionsPageImpl::commit_impl, root);
|
||||
} else {
|
||||
EditorOptionsPageImpl::commit_impl (root);
|
||||
}
|
||||
}
|
||||
|
||||
EditorOptionsPageImpl *new_editor_options_page (const std::string &title, int index)
|
||||
{
|
||||
return new EditorOptionsPageImpl (title, index);
|
||||
}
|
||||
|
||||
Class<EditorOptionsPageImpl> decl_EditorOptionsPage (decl_EditorOptionsPageBase, "lay", "EditorOptionsPage",
|
||||
constructor ("new", &new_editor_options_page, gsi::arg ("title"), gsi::arg ("index"),
|
||||
"@brief Creates a new EditorOptionsPage object\n"
|
||||
"@param title The title of the page\n"
|
||||
"@param index The position of the page in the tab bar\n"
|
||||
) +
|
||||
method ("edited", &EditorOptionsPageImpl::call_edited,
|
||||
"@brief Call this method when some entry widget has changed\n"
|
||||
"When some entry widget (for example 'editingFinished' slot of a QLineEdit), "
|
||||
"call this method to initiate a transfer of information from the page to the plugin.\n"
|
||||
) +
|
||||
// prevents infinite recursion
|
||||
method_ext ("apply", &apply_fb, gsi::arg ("dispatcher"), "@hide") +
|
||||
callback ("apply", &EditorOptionsPageImpl::apply, &EditorOptionsPageImpl::f_apply, gsi::arg ("dispatcher"),
|
||||
"@brief Reimplement this method to transfer data from the page to the configuration\n"
|
||||
"In this method, you should transfer all widget data into corresponding configuration updates.\n"
|
||||
"Use \\Dispatcher#set_config on the dispatcher object ('dispatcher' argument) to set a configuration parameter.\n"
|
||||
) +
|
||||
// prevents infinite recursion
|
||||
method_ext ("setup", &setup_fb, gsi::arg ("dispatcher"), "@hide") +
|
||||
callback ("setup", &EditorOptionsPageImpl::setup, &EditorOptionsPageImpl::f_setup, gsi::arg ("dispatcher"),
|
||||
"@brief Reimplement this method to transfer data from the configuration to the page\n"
|
||||
"In this method, you should transfer all configuration data to the widgets.\n"
|
||||
"Use \\Dispatcher#get_config on the dispatcher object ('dispatcher' argument) to get a configuration parameter "
|
||||
"and set the editing widget's state accordingly.\n"
|
||||
) +
|
||||
// prevents infinite recursion
|
||||
method_ext ("cancel", &cancel_fb, "@hide") +
|
||||
callback ("cancel", &EditorOptionsPageImpl::cancel, &EditorOptionsPageImpl::f_cancel,
|
||||
"@brief Reimplement this method to receive Escape key events for the page\n"
|
||||
"This method has been added in version 0.30.6.\n"
|
||||
) +
|
||||
// prevents infinite recursion
|
||||
method_ext ("commit", &commit_fb, gsi::arg ("dispatcher"), "@hide") +
|
||||
callback ("commit", &EditorOptionsPageImpl::commit, &EditorOptionsPageImpl::f_commit, gsi::arg ("dispatcher"),
|
||||
"@brief Reimplement this method to receive Enter key events for the page\n"
|
||||
"This method has been added in version 0.30.6.\n"
|
||||
),
|
||||
"@brief The plugin framework's editor options page\n"
|
||||
"\n"
|
||||
"This object provides a way to establish plugin-specific editor options pages.\n"
|
||||
"\n"
|
||||
"The preferred way of communication between the page and the plugin is through "
|
||||
"configuration parameters. One advantage of this approach is that the current state is "
|
||||
"automatically persisted.\n"
|
||||
"\n"
|
||||
"For this purpose, the editor options page has two methods: 'apply' which is supposed to transfer "
|
||||
"the editor widget's state into configuration parameters. 'setup' does the inverse and transfer "
|
||||
"configuration parameters into editor widget states. Both methods are called by the system when "
|
||||
"some transfer is needed.\n"
|
||||
"\n"
|
||||
"When you want to respond to widget signals and transfer information, call \\edited "
|
||||
"in the signal slot. This will trigger a transfer (aka 'apply').\n"
|
||||
"\n"
|
||||
"This class has been introduced in version 0.30.4.\n"
|
||||
);
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
@@ -1,80 +0,0 @@
|
||||
|
||||
/*
|
||||
|
||||
KLayout Layout Viewer
|
||||
Copyright (C) 2006-2025 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
|
||||
|
||||
*/
|
||||
|
||||
#if !defined(_HDR_gsiDeclLayEditorOptionsPage)
|
||||
#define _HDR_gsiDeclLayEditorOptionsPage
|
||||
|
||||
#if defined(HAVE_QTBINDINGS)
|
||||
|
||||
#include "gsiDecl.h"
|
||||
#include "gsiDeclBasic.h"
|
||||
|
||||
#include "layEditorOptionsPage.h"
|
||||
#include "layLayoutViewBase.h"
|
||||
|
||||
namespace gsi
|
||||
{
|
||||
|
||||
class EditorOptionsPageImpl
|
||||
: public lay::EditorOptionsPage, public gsi::ObjectBase
|
||||
{
|
||||
public:
|
||||
EditorOptionsPageImpl (const std::string &title, int index);
|
||||
|
||||
virtual std::string title () const
|
||||
{
|
||||
return m_title;
|
||||
}
|
||||
|
||||
virtual int order () const
|
||||
{
|
||||
return m_index;
|
||||
}
|
||||
|
||||
void call_edited ();
|
||||
virtual void apply (lay::Dispatcher *root);
|
||||
virtual void setup (lay::Dispatcher *root);
|
||||
virtual void cancel (lay::Dispatcher *root);
|
||||
virtual void commit ();
|
||||
|
||||
gsi::Callback f_apply;
|
||||
gsi::Callback f_setup;
|
||||
gsi::Callback f_cancel;
|
||||
gsi::Callback f_commit;
|
||||
|
||||
private:
|
||||
tl::weak_ptr<lay::LayoutViewBase> mp_view;
|
||||
tl::weak_ptr<lay::Dispatcher> mp_dispatcher;
|
||||
std::string m_title;
|
||||
int m_index;
|
||||
|
||||
void apply_impl (lay::Dispatcher *root);
|
||||
void setup_impl (lay::Dispatcher *root);
|
||||
void cancel_impl (lay::Dispatcher *root);
|
||||
void commit_impl ();
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
#endif
|
||||
@@ -470,6 +470,7 @@ public:
|
||||
{
|
||||
lay::EditorOptionsPage *page = lay::EditorOptionsPageFactoryBase::create_page_by_name (move_editor_options_name, view, dispatcher);
|
||||
if (page) {
|
||||
page->set_plugin_declaration (this);
|
||||
pages.push_back (page);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -36,8 +36,6 @@ SOURCES += \
|
||||
gsiDeclLayTextInfo.cc \
|
||||
gsiDeclLayTlAdded.cc \
|
||||
gsiDeclLayRdbAdded.cc \
|
||||
gsiDeclLayConfigPage.cc \
|
||||
gsiDeclLayEditorOptionsPage.cc \
|
||||
gsiDeclLayPlugin.cc \
|
||||
gsiDeclLayPluginFactory.cc \
|
||||
layAbstractMenu.cc \
|
||||
@@ -95,8 +93,6 @@ SOURCES += \
|
||||
layUtils.cc \
|
||||
|
||||
HEADERS += \
|
||||
gsiDeclLayConfigPage.h \
|
||||
gsiDeclLayEditorOptionsPage.h \
|
||||
gsiDeclLayPlugin.h \
|
||||
layEditorOptionsPage.h \
|
||||
layEditorUtils.h \
|
||||
|
||||
Reference in New Issue
Block a user