Compare commits

...

7 Commits
v1.0 ... master

Author SHA1 Message Date
jan
e3d748df86 bump version to v1.2 2025-04-15 17:58:23 -07:00
jan
108e8e7ea0 Fix shortcut for set_all_valid 2025-04-15 17:57:43 -07:00
jan
b97bf83942 bump version to 1.1 2025-04-10 22:10:20 -07:00
jan
011d515a6a update screenshot 2025-04-10 22:10:11 -07:00
jan
41a0e4da6a make sure we use the same naming scheme for the commands everywhere 2025-04-10 22:10:02 -07:00
jan
f455ddb314 Fix conflicting menu item names 2025-04-10 22:09:06 -07:00
jan
5ed5109355 fix link syntax in readme 2025-04-10 19:36:35 -07:00
5 changed files with 15 additions and 12 deletions

View File

@ -1,7 +1,7 @@
layers_content_toolbox
======================
Package for (KLayout)[https://www.klayout.de] adding two items to the right-click menu in the "Layers" pane:
Package for [KLayout](https://www.klayout.de) adding two items to the right-click menu in the "Layers" pane:
- `Make All Valid`: Makes all layers valid (interactable) and visible. Adds hotkey Ctrl+Shift+V.
- `Change Layer for Objects`: Same as `Edit -> Selection -> Change Layer`

Binary file not shown.

Before

Width:  |  Height:  |  Size: 64 KiB

After

Width:  |  Height:  |  Size: 63 KiB

View File

@ -3,7 +3,7 @@
<name>layers_context_toolbox</name>
<token/>
<hidden>false</hidden>
<version>1.0</version>
<version>1.2</version>
<api-version/>
<title>Layers context toolbox</title>
<doc>Adds items to the "Layers" pane context menu: "Change Layer of Objects", "Make All Valid"</doc>
@ -13,7 +13,7 @@
<author>Jan Petykiewicz</author>
<author-contact>jan@mpxd.net</author-contact>
<authored-time/>
<installed-time>2025-04-10T16:58:24</installed-time>
<installed-time>2025-04-10T20:14:31</installed-time>
<icon/>
<screenshot/>
</salt-grain>

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<klayout-macro>
<description>add "Change Layer of Selection" to layer context menu</description>
<description>add "Change Layer of Objects" to layer context menu</description>
<version/>
<category>pymacros</category>
<prolog/>
@ -33,5 +33,6 @@ new_action.title = 'Change Layer of Objects'
new_action.on_triggered = change_layer_action.trigger
menu.insert_separator('@lcp_context_menu.end', 'tb_separator')
menu.insert_item('@lcp_context_menu.end', 'change_layer', new_action)</text>
menu.insert_item('@lcp_context_menu.end', 'change_layer', new_action)
</text>
</klayout-macro>

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<klayout-macro>
<description>add "Set All Valid" to layer context menu</description>
<description>add "Make All Valid" to layer context menu</description>
<version/>
<category>pymacros</category>
<prolog/>
@ -9,19 +9,19 @@
<autorun>true</autorun>
<autorun-early>false</autorun-early>
<priority>3</priority>
<shortcut>Ctrl+Shift+V</shortcut>
<shortcut/>
<show-in-menu>false</show-in-menu>
<group-name/>
<menu-path>@lcp_context_menu.end</menu-path>
<interpreter>python</interpreter>
<dsl-interpreter-name/>
<text>"""
Add "Change Layer of Objects" to Layer context menu
Add "Make All Valid" to Layer context menu
"""
import pya
def set_all_valid():
def make_all_valid():
view = pya.LayoutView.current()
for layer in view.each_layer():
layer.valid = True
@ -31,8 +31,10 @@ mw = pya.Application.instance().main_window()
menu = mw.menu()
new_action = pya.Action()
new_action.title = 'Set All Valid'
new_action.on_triggered = set_all_valid
new_action.title = 'Make All Valid'
new_action.on_triggered = make_all_valid
new_action.default_shortcut = 'Ctrl+Shift+V'
menu.insert_item('@lcp_context_menu.invvalid', 'change_layer', new_action)</text>
menu.insert_item('@lcp_context_menu.rename', 'make_all_valid', new_action)
</text>
</klayout-macro>