mirror of https://github.com/KLayout/klayout.git
WIP
This commit is contained in:
parent
d2f2d630d9
commit
b17b2714a5
|
|
@ -1165,11 +1165,6 @@ static void clear_children (lay::LayerPropertiesNode *node)
|
|||
node->clear_children ();
|
||||
}
|
||||
|
||||
static lay::LayoutView *get_view (lay::LayerPropertiesNode *node)
|
||||
{
|
||||
return node->view ()->ui ();
|
||||
}
|
||||
|
||||
Class<lay::LayerPropertiesNode> decl_LayerPropertiesNode (
|
||||
decl_LayerProperties,
|
||||
"lay", "LayerPropertiesNode",
|
||||
|
|
|
|||
|
|
@ -79,6 +79,7 @@ class MoveService;
|
|||
#if defined(HAVE_QT)
|
||||
class LayerControlPanel;
|
||||
class HierarchyControlPanel;
|
||||
class EditorOptionsPages;
|
||||
#endif
|
||||
|
||||
/**
|
||||
|
|
@ -1671,6 +1672,14 @@ public:
|
|||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Gets the hierarchy panel
|
||||
*/
|
||||
virtual lay::EditorOptionsPages *editor_options_pages ()
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -35,6 +35,7 @@
|
|||
#include <QKeyEvent>
|
||||
#include <QVBoxLayout>
|
||||
#include <QHBoxLayout>
|
||||
#include <QMessageBox>
|
||||
|
||||
#include "tlInternational.h"
|
||||
#include "tlExpression.h"
|
||||
|
|
|
|||
|
|
@ -327,7 +327,7 @@ public:
|
|||
/**
|
||||
* @brief Gets the editor options pages
|
||||
*/
|
||||
lay::EditorOptionsPages *editor_options_pages ();
|
||||
virtual lay::EditorOptionsPages *editor_options_pages ();
|
||||
|
||||
/**
|
||||
* @brief Gets the container with the layer control panel
|
||||
|
|
|
|||
Loading…
Reference in New Issue