Tags
root
工具栏的基础容器。
Attributes
none
Children
toolbar
toolbar
每个单独的工具栏由名称值对指定。
Attributes
name, value
Children
item
item
每个单独的项由名称值对指定。
Attributes
name, value
Children
none
摘自帮助文档
自定义工具栏.xml文件的格式。
toolbar.xml允许通过included.xml文件加载额外的插件。它通过相对路径引用所有必需的资源。
<root>
<actionlist>
<action tag="Ext_HM_Toolbar_Capture_Screen_to_Clipboard" tooltip="Save graphics area to clipboard" image="save_to_clipboard_toolbar.png" command="tcl: ::ExtensionDemoGlobal::CaptureToClipboard"/>
<action tag="Ext_HM_Toolbar_Capture_Screen_to_File" tooltip="Save graphics area to PNG file" image="save_to_file_toolbar.png" command="tcl: ::ExtensionDemoGlobal::CaptureToPNGFile"/>
<action tag="Ext_HM_Toolbar_Capture_Window_in_WorkDir" tooltip="Save fixed resolution in workdir" image="save_to_file_toolbar.png" command="tcl: ::ExtensionDemoGlobal::CaptureWindowToJPEGFileFixedResolution"/>
</actionlist>
<toolbar tag="GTA_2022_1_Toolbar_HV" location="left">
<item actiontag="Ext_HM_Toolbar_Capture_Screen_to_Clipboard"/>
<item actiontag="Ext_HM_Toolbar_Capture_Screen_to_File"/>
<item actiontag="Ext_HM_Toolbar_Capture_Window_in_WorkDir"/>
</toolbar>
</root>
工具栏的基础容器。
Attributes
none
Children
toolbar
每个单独的工具栏由名称值对指定。
Attributes
name, value
Children
item
每个单独的项由名称值对指定。
Attributes
name, value
Children
none
工具栏的位置 (left, right, bottom)
对动作列表中定义的动作的引用
Example XML
<root>
<include src="../mv-actions.xml" />
<toolbar tag="Ext_Toolbar_MV" location="left">
<item actiontag="Ext_Toolbar_ScreeshotMV1"/>
<item actiontag="Ext_Toolbar_ScreeshotMV2"/>
</toolbar>
<toolbar tag="MDL_Vortex_Toolbar" location="left">
<item actiontag="MDL_Vortex_Settings"/>
<item actiontag="MDL_Vortex_Export_Deck"/>
</toolbar>
</root>
Include my-actions.xml file:
<root>
<actionlist>
<action tag="MDL_Vortex_Settings" tooltip="Settings"
image="ribbonVortexSettingsStrip-80.png"
command="py: Extension_multiclient_test_HM_HV_MV_HG_final.pyscript.test()"/>
<action tag="MDL_Vortex_Export_Deck" tooltip="Export Deck"
image="ribbonVortexExportDeckStrip-80.png" command="tcl: ::Vortex::ExportDeck"/>
<action tag="Ext_Toolbar_ScreeshotMV1" tooltip="Save image to clipboard"
image="save_to_clipboard_toolbar.png" command="tcl: ::Vortex::ToClipboardMV"/>
<action tag="Ext_Toolbar_ScreeshotMV2" tooltip="Save image to file"
image="save_to_file_toolbar.png" command="tcl: ::Vortex::ToFileMV"/>
</actionlist>
</root>