1. Open a drawing with fileUrl without UI
https://app.kudo.graebert.com/editor?apitoken=4b5b64d4-85a5-4cb4-b5b7-89a2161347a3
“Default Files” in customization.zip package contains:
Workspace → Viewer.xml
Support → setvars.lsp
Support → start.lsp
Customized viewer workspace to hide all UI elements (Default Files/Workspace/Viewer.xml):
<?xml version="1.0" encoding="UTF-8"?> <workspace> <name workspace_name="Viewer" /> <description description="" /> <status_bar_visible status_bar_visible="0" /> <groups/> <dockable_windows> <window object_name="CommandWindow" visible="0" name="Command Prompt" /> <window object_name="PropertyWindow" visible="0" name="Properties Window" /> <window object_name="XRefManager" visible="0" name="References" /> <window object_name="LayerPanel" visible="0" name="Layer Panel" /> </dockable_windows> </workspace>
Created a simple LISP function that sets environment variable to turn of ucs icon (Default Files/Support/setvars.lsp):
(defun initEnv() (setvar "UCSICON" 0) )
Adjusted LISP file that is loaded on startup to load that file and execute the function (Default Files/Support/start.lsp):
... (load "setvars.lsp") (initEnv)
2. Open file for editing from S3 bucket with customized style
https://app.kudo.graebert.com/editor?apitoken=fc18e508-977d-41d6-89c8-3b21e584cf34
Added customized style.css in customization.zip that overrides background color of some style classes.
E.g. for toolbar background:
.xenon-toolbarContainer .container { background-color: #262c41; }
3. Open file for editing from S3 bucket with customized UI
https://app.kudo.graebert.com/editor?apitoken=259c8dcb-11ab-40ff-8c15-487b059b5da2
“Default Files” in customization.zip package contains:
UI → english → application.xml
Workspace → Classic Default.xml
Adjusted Tools menu (Default Files/UI/english/application.xml):
<menu definition_ref="" type="1" UID="ID_MnTools" name="Tools"> <menu definition_ref="ID_DIST" UID="PMI_141" name="Get Distance"/> <menu definition_ref="ID_AREA" UID="PMI_140" name="Get Area"/> <menu definition_ref="ID_GETXY" UID="PMI_142" name="Get Coordinate"/> <menu definition_ref="ID_GETPROPERTIES" name="Get Properties" UID="PMI_143"/> </menu>
Adjusted editor toolbar (Default Files/UI/english/application.xml):
<toolbar on_by_default="true" UID="ID_NavBarDefault"> <toolbar definition_ref="ID_DISPLAYMENU" UID="NTB_DISPLAYMENU" name="Menu"/> <toolbar definition_ref="ID_Inquiry" UID="NBT_TbInquiry" name="Inquiry"> <toolbar definition_ref="ID_DIST" UID="TTB_106" name="Distance"/> <toolbar definition_ref="ID_AREA" UID="TTB_107" name="Area"/> <toolbar definition_ref="ID_GETXY" UID="TTB_109" name="Coordinates"/> </toolbar> </toolbar>
Customized editing workspace to hide all UI elements expect status bar and show editing toolbar with tools menu (Default Files/Workspace/Classic Default.xml):
<workspace> <name workspace_name="Classic Default" /> <description description="" /> <status_bar_visible status_bar_visible="1" /> <groups/> <root_menu_items> <menu group_id="Id_XenonMainGroup" uid="ID_MnTools" /> </root_menu_items> <navigation_toolbars> <toolbar group_id="Id_XenonMainGroup" uid="ID_NavBarDefault" /> </navigation_toolbars> <dockable_windows> <window object_name="CommandWindow" visible="0" name="Command Prompt" /> <window object_name="PropertyWindow" visible="0" name="Properties Window" /> <window object_name="XRefManager" visible="0" name="References" /> <window object_name="LayerPanel" visible="0" name="Layer Panel" /> </dockable_windows> </workspace>
Added customized style.css in customization.zip that hides all button groups and version label in statusbar based on their style class except the first group with sheet controls:
.xenon-statusbar .XeButtonGroup:not(:first-child), .xenon-statusbar-version { display: none; }
4. Open file for editing from S3 bucket with custom feature
https://app.kudo.graebert.com/editor?apitoken=50ccb3bb-7140-4a61-be7e-dca8c5db7487
Added custom tx module loaded on startup.
“Default Files” in customization.zip package contains:
Support →
|
UI → english → application.xml
tx modules are built from Kudo Server Sample. Each sample module have different functions which will help to understand the custom module workflow
Module | Feature Description |
---|---|
| Insert an image into a drawing. |
| To parse drawing content and create a summary of e.g. all layers in a drawing and their basic properties. Write it to a csv file. |
| The sample lists all block references of the current layout that have attributes in a dropdown. Select a reference from the dropdown to show the attributes of a reference. Press “Zoom to block” to zoom to the reference currently selected. |
Added the module to startup.rx to have it loaded when drawing is opened:
InsertImageCommand.tx DrawingSummary.tx CommonUIDialog.tx
Adjusted editor toolbar by adding a new button with the custom CommonUIDialog command at the end (Default Files/UI/english/application.xml):
<toolbar on_by_default="true" UID="ID_NavBarDefault"> ... <toolbar definition_ref="ID_COMMONUIDIALOG" UID="NTB_COMMONUIDIALOG" name="CommonUIDialog"/> <toolbar definition_ref="" name=""/> </toolbar>
Added custom CommonUIDialog command definition to definitions section (Default Files/UI/english/application.xml):
<definitions> ... <definition smallIconName="https://andrea-test-partner-customization.s3.eu-central-1.amazonaws.com/icons/next_warning.svg" description="Shows the CommonUIDialog: COMMONUIDIALOG" iconName="" command="^C^C_COMMONUIDIALOG" iconRecource="" id="ID_COMMONUIDIALOG" name="CommonUIDialog"/> </definitions>