Loading…
Loading…
DD File path:
DD File name: ValidityTesting.DDL
DD File type: Source file
- MENU diagnostic_root_menu
- {
- STYLE MENU;
- LABEL "Diagnostics";
- VALIDITY IF ( EDDLDiagnosticsValidity == 0){ TRUE; } ELSE { FALSE; }
- ITEMS
- {
- diagnostic_root_window
- }
- }
- VARIABLE EDDLDiagnosticsValidity
- {
- LABEL "Diagnostics";
- HELP "We will show Diagnostics as EDDL or from resource file";
- CLASS LOCAL;
- TYPE ENUMERATED
- {
- {0, "EDDL"}
- {1, "Resource"}
- }
- }
- VARIABLE EDDLPVValidity
- {
- LABEL "Process Variables";
- HELP "We will show Process Variables as EDDL or from resource file";
- CLASS LOCAL;
- TYPE ENUMERATED
- {
- {0, "EDDL"}
- {1, "Resource"}
- }
- }
- MENU diagnostic_root_window
- {
- STYLE WINDOW;
- VALIDITY IF ( EDDLDiagnosticsValidity == 0){ TRUE; } ELSE { FALSE; }
- LABEL "EDDL Diagnostics";
- ITEMS
- {
- diagnostic_root_page
- }
- }
- MENU diagnostic_root_page
- {
- STYLE PAGE;
- LABEL "Status";
- ITEMS
- {
- device_status
- }
- }
- MENU process_variables_root_menu
- {
- STYLE MENU;
- LABEL "Process Variables";
- VALIDITY IF ( EDDLPVValidity == 0){ TRUE; } ELSE { FALSE; }
- ITEMS
- {
- process_variables_root_window,
- init_actions_test_window
- }
- }
- MENU process_variables_root_window
- {
- STYLE WINDOW;
- VALIDITY IF ( EDDLPVValidity == 0){ TRUE; } ELSE { FALSE; }
- LABEL "EDDL PV";
- HELP "dynamic pv";
- ITEMS
- {
- process_variables_root_page
- }
- }
- MENU process_variables_root_page
- {
- STYLE PAGE;
- VALIDITY IF ( EDDLPVValidity == 0){ TRUE; } ELSE { FALSE; }
- LABEL "EDDL PV";
- ITEMS
- {
- variable_size_chart_4_2
- }
- }
- /*--------------------------------------*/
- /* INIT ACTION TESTING */
- /*--------------------------------------*/
Please login for more