Hitachi

JP1 Version 12 JP1/Integrated Management 2 - Manager Command and Definition File Reference


Icon operation definition file (!JP1_CS_FTREE0.conf)

Organization of this page

Format

@define-block type="function-tree-def";
id="icon-identifier";
name="tooltip";
iconstandard="icon-storage-path";
icondown="icon-storage-path";
iconrollover="icon-storage-path";
icondisable="icon-storage-path";
execute_id="program-identifier";
arguments="argument";
@define-block-end;

File

!JP1_CS_FTREE0.conf (icon operation definition file)

!JP1_CS_FTREE0.conf.model (model file for the icon operation definition file)

Storage directory

View-path\conf\sovtoolitem\en\

Description

This file defines the operation of icons that are displayed on the toolbar in the Monitoring Tree window.

To add a program to the toolbar in the Monitoring Tree window, and then start the program from the toolbar, you must also edit the following definition files:

When the definitions are applied

The definition takes effect when the Monitoring Tree window is re-opened.

Information that is specified

From @define-block type to @define-block-end;

Information from @define-block type to @define-block-end; constitutes a single definition block.

To add multiple programs to the toolbar in the Monitoring Tree window, specify this definition block as many times as there are programs to be added. In this definition block, you can specify the following parameters:

id="icon-identifier";

Specifies the identifier that indicates the appropriate icon. You can specify from 1 to 32 alphanumeric characters. This character string must be unique within the definition file. Also, the icon identifier specified for this parameter must be the same as the icon identifier specified for the toolbar definition file (!JP1_CS_FTOOL0.conf). For details about the toolbar definition file (!JP1_CS_FTOOL0.conf), see Toolbar definition file (!JP1_CS_FTOOL0.conf) in Chapter 2. Definition Files.

name="tooltip";

Specifies the tooltip that is to be displayed when the cursor is placed on the icon.

iconstandard="icon-storage-path";

Specifies the full path of the icon that is to be displayed during normal operation.

icondown="icon-storage-path";

Specifies the full path of the icon that is to be displayed when the icon is clicked.

iconrollover="icon-storage-path";

Specifies the full path of the icon that is to be displayed when the cursor is moved onto the icon.

icondisable="icon-storage-path";

Specifies the full path of the icon that is to be displayed when the corresponding program cannot be started.

execute_id="program-identifier";

Specifies an identifier for the program that is to be started. You can specify from 1 to 32 alphanumeric characters. This character string must be unique within the definition file. The program identifier specified in this parameter must be the same as a program identifier that is specified in the start program definition file (!JP1_CS_APP0.conf). For details about the start program definition file (!JP1_CS_APP0.conf), see Start program definition file (!JP1_CS_APP0.conf) in Chapter 2. Definition Files.

arguments="arguments";

Specifies arguments for the program to be started (start path) that is defined in the start program definition file (!JP1_CS_APP0.conf). For details about the start program definition file (!JP1_CS_APP0.conf), see Start program definition file (!JP1_CS_APP0.conf) in Chapter 2. Definition Files.

Example definition

#----------------------------------------------------------
# Definition changed by 07-00.
@define-block type="function-tree-def";
id="tool_notepad";
name="Notepad";
iconstandard="%SOV_INSTALL_PATH%\image\sovtool\blank_standard.gif";
icondown="%SOV_INSTALL_PATH%\image\sovtool\blank_down.gif";
iconrollover="%SOV_INSTALL_PATH%\image\sovtool\blank_over.gif";
icondisable="%SOV_INSTALL_PATH%\image\sovtool\blank_disable.gif";
execute_id="app_notepad";
arguments="C:\test.txt";
@define-block-end;
#----------------------------------------------------------