Added minimal functionality for Robot teaching
- Added minimal HMI - Added possibility to open and close all chamber doors
This commit is contained in:
@@ -0,0 +1,111 @@
|
||||
import { SettingsPopup } from './SettingsPopup.js';
|
||||
import type { Control as TcHmiEventGrid, Column } from './TcHmiEventGrid.esm.js';
|
||||
import type { Control as TcHmiButton } from '../TcHmiButton/TcHmiButton.esm.js';
|
||||
import type { Control as TcHmiTextbox } from '../TcHmiTextbox/TcHmiTextbox.esm.js';
|
||||
import type { Control as TcHmiCheckbox } from '../TcHmiCheckbox/TcHmiCheckbox.esm.js';
|
||||
import type * as TcHmiCombobox from '../TcHmiCombobox/TcHmiCombobox.esm.js';
|
||||
/**
|
||||
* A popup for configuring the columns of the event grid.
|
||||
*/
|
||||
export declare class ColumnsPopup extends SettingsPopup<Column[]> {
|
||||
/**
|
||||
* Creates a new ColumnsPopup.
|
||||
* @param element The HTML element that hosts the popup.
|
||||
* @param control The control owning the popup.
|
||||
*/
|
||||
constructor(element: HTMLElement, control: TcHmiEventGrid);
|
||||
protected __settings: Column[];
|
||||
protected __elementAvailableColumns: HTMLElement;
|
||||
protected __elementSelectedColumns: HTMLElement;
|
||||
protected __elementColumnName: HTMLElement;
|
||||
protected __elementColumnLabel: HTMLElement;
|
||||
protected __upButton: TcHmiButton;
|
||||
protected __downButton: TcHmiButton;
|
||||
protected __widthTextbox: TcHmiTextbox;
|
||||
protected __widthUnitCombobox: TcHmiCombobox.Control<TcHmi.DimensionUnit | 'factor', TcHmiCombobox.ListItemGeneric<TcHmi.DimensionUnit | 'factor'>[]>;
|
||||
protected __nameTextbox: TcHmiTextbox;
|
||||
protected __labelTextbox: TcHmiTextbox;
|
||||
protected __sortableCheckbox: TcHmiCheckbox;
|
||||
protected __availableColumns: TcHmi.List<{
|
||||
name: string;
|
||||
element: HTMLElement;
|
||||
}>;
|
||||
protected __selectedColumns: TcHmi.List<{
|
||||
name: string;
|
||||
element: HTMLElement;
|
||||
}>;
|
||||
protected __columns: TcHmi.Dictionary<{
|
||||
label: string;
|
||||
order: number;
|
||||
allowSortable: boolean;
|
||||
}>;
|
||||
protected __activeElement: HTMLElement | null;
|
||||
protected __activeColumn: Column | null;
|
||||
/**
|
||||
* Destroys the popup and all its controls. Also removes all DOM event handlers
|
||||
*/
|
||||
destroy(): void;
|
||||
/**
|
||||
* Updates the column configuration.
|
||||
* @param columns The current column configuration.
|
||||
* @param resetable Whether the reset button should be enabled or disabled.
|
||||
*/
|
||||
update(columns: Column[], resetable: boolean): void;
|
||||
/**
|
||||
* Handles clicks inside the availableColumns element.
|
||||
* @param event The click event.
|
||||
*/
|
||||
protected __onAvailableColumnClick(event: MouseEvent): void;
|
||||
/**
|
||||
* Handles clicks inside the selectedColumns element.
|
||||
* @param event The click event.
|
||||
*/
|
||||
protected __onSelectedColumnClick(event: MouseEvent): void;
|
||||
/**
|
||||
* Handles the pressed event of the up button.
|
||||
*/
|
||||
protected __onUpPressed(): void;
|
||||
/**
|
||||
* Handles the pressed event of the down button.
|
||||
*/
|
||||
protected __onDownPressed(): void;
|
||||
/**
|
||||
* Handles the textChanged event of the width textbox
|
||||
*/
|
||||
protected __onWidthChanged(): void;
|
||||
/**
|
||||
* Handles the selectionChanged event of the width unit combobox
|
||||
*/
|
||||
protected __onWidthUnitChanged(): void;
|
||||
/**
|
||||
* Handles the textChanged event of the name textbox
|
||||
*/
|
||||
protected __onNameChanged(): void;
|
||||
/**
|
||||
* Handles the textChanged event of the label textbox
|
||||
*/
|
||||
protected __onLabelChanged(): void;
|
||||
/**
|
||||
* Handles the toggleStateChanged event of the sortable checkbox
|
||||
*/
|
||||
protected __onSortableChanged(): void;
|
||||
/**
|
||||
* Marks a column element as active.
|
||||
* @param element The element to activate.
|
||||
*/
|
||||
protected __activateColumn(element: HTMLElement | null): void;
|
||||
/**
|
||||
* Updates the select, deselect, up, down buttons according to the currently active column.
|
||||
*/
|
||||
protected __updateButtons(): void;
|
||||
/**
|
||||
* Updates the column properties controls according to the currently active column.
|
||||
*/
|
||||
protected __updateColumnProperties(): void;
|
||||
/**
|
||||
* Creates an element representing a column.
|
||||
* @param label The label of the column.
|
||||
*/
|
||||
protected __createColumnDiv(label: string, localize?: boolean): HTMLDivElement;
|
||||
}
|
||||
//# sourceMappingURL=ColumnsPopup.d.ts.map
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,34 @@
|
||||
import type { Control as TcHmiEventGrid } from './TcHmiEventGrid.esm.js';
|
||||
import type { Control as TcHmiDatagrid } from '../TcHmiDatagrid/TcHmiDatagrid.esm.js';
|
||||
import type { Control as TcHmiButton } from '../TcHmiButton/TcHmiButton.esm.js';
|
||||
import { Popup } from './Popup.js';
|
||||
/**
|
||||
* A popup asking for confirmation berfore confirming all alarms. Contains a yes and a no button.
|
||||
*/
|
||||
export declare class ConfirmAllPopup extends Popup {
|
||||
#private;
|
||||
/**
|
||||
* Creates a new ConfirmAllPopup.
|
||||
* @param element The HTML element that hosts the popup.
|
||||
* @param control The control owning the popup.
|
||||
*/
|
||||
constructor(element: HTMLElement, control: TcHmiEventGrid);
|
||||
protected __alarms: TcHmi.Server.Events.Alarm[];
|
||||
protected __datagrid: TcHmiDatagrid;
|
||||
protected __yesButton: TcHmiButton;
|
||||
protected __elementAlarmCount: HTMLElement;
|
||||
/**
|
||||
* Destroys the popup and all its controls. Also removes all DOM event handlers
|
||||
*/
|
||||
destroy(): void;
|
||||
/**
|
||||
* Updates the content of the popup.
|
||||
* @param event The event whose details should be shown.
|
||||
*/
|
||||
update(alarms: TcHmi.Server.Events.Alarm[]): void;
|
||||
/**
|
||||
* Returns the currently shown alarms.
|
||||
*/
|
||||
getAlarms(): TcHmi.Server.Events.Alarm<TcHmi.Dictionary<any>>[];
|
||||
}
|
||||
//# sourceMappingURL=ConfirmAllPopup.d.ts.map
|
||||
@@ -0,0 +1 @@
|
||||
import{Popup}from"./Popup.js";export class ConfirmAllPopup extends Popup{static#tchmiFQN="TcHmi.Controls.Beckhoff.TcHmiEventGridPopups."+this.name;constructor(element,control){if(super(element,"confirmAllPopup",control),this.__elementAlarmCount=this.__elementContent.getElementsByClassName("TcHmi_Controls_Beckhoff_TcHmiEventGrid-template-confirm-all-popup-alarm-count")[0],!this.__elementAlarmCount)throw new Error("Invalid Template.html");let datagrid=TcHmi.ControlFactory.createEx("TcHmi.Controls.Beckhoff.TcHmiDatagrid",`${this.__parentControl.getId()}.${this.__name}.datagrid`,{"data-tchmi-src-column":[{name:"severity",label:"",control:"Image",width:30,widthUnit:"px",resize:!1,minWidth:30,minWidthUnit:"px",editable:!1,horizontalAlignment:"Center",verticalAlignment:"Center",dataDefinitions:[{text:"Verbose",value:0,height:26,width:26,source:TcHmi.Controls.getBasePathEx(control)+"/Themes/Base/Images/verbose.svg"},{text:"Info",value:1,height:26,width:26,source:TcHmi.Controls.getBasePathEx(control)+"/Themes/Base/Images/info.svg"},{text:"Warning",value:2,height:26,width:26,source:TcHmi.Controls.getBasePathEx(control)+"/Themes/Base/Images/warning.svg"},{text:"Error",value:3,height:26,width:26,source:TcHmi.Controls.getBasePathEx(control)+"/Themes/Base/Images/error.svg"},{text:"Critical",value:4,height:26,width:26,source:TcHmi.Controls.getBasePathEx(control)+"/Themes/Base/Images/critical.svg"}]},{name:"timeRaised",label:"%l%Control::TcHmi.Controls.Beckhoff.TcHmiEventGrid::Column_Header_Raised%/l%",control:"TextBlock",format:{objectType:"Function",fn:"ToDateTimeString",fnParams:[]},width:150,widthUnit:"px",resize:!0,minWidth:70,minWidthUnit:"px",editable:!1,horizontalAlignment:"Center",verticalAlignment:"Center"},{name:"text",label:"%l%Control::TcHmi.Controls.Beckhoff.TcHmiEventGrid::Column_Header_Text%/l%",control:"TextBlock",width:300,widthUnit:"px",resize:!0,minWidth:100,minWidthUnit:"px",editable:!1,horizontalAlignment:"Left",verticalAlignment:"Center"}]},this.__parentControl),yesButton=TcHmi.ControlFactory.createEx("TcHmi.Controls.Beckhoff.TcHmiButton",`${this.__parentControl.getId()}.${this.__name}.confirmButton`,{"data-tchmi-height":30,"data-tchmi-width-mode":"Content","data-tchmi-min-width":60,"data-tchmi-text-padding":{left:7,right:7},"data-tchmi-text":"%l%Control::TcHmi.Controls.Beckhoff.TcHmiEventGrid::Button_Text_ConfirmAll_Yes%/l%","data-tchmi-tooltip":"%l%Control::TcHmi.Controls.Beckhoff.TcHmiEventGrid::Button_Tooltip_ConfirmAll_Yes%/l%","data-tchmi-is-enabled":!1},this.__parentControl),cancelButton=TcHmi.ControlFactory.createEx("TcHmi.Controls.Beckhoff.TcHmiButton",`${this.__parentControl.getId()}.${this.__name}.closeButton`,{"data-tchmi-height":30,"data-tchmi-width-mode":"Content","data-tchmi-min-width":60,"data-tchmi-text-padding":{left:7,right:7},"data-tchmi-text":"%l%Control::TcHmi.Controls.Beckhoff.TcHmiEventGrid::Button_Text_Cancel%/l%","data-tchmi-tooltip":"%l%Control::TcHmi.Controls.Beckhoff.TcHmiEventGrid::Button_Tooltip_ConfirmAll_Cancel%/l%"},this.__parentControl);if(!datagrid||!yesButton||!cancelButton)throw new Error("Could not create controls for ConfirmAllPopup.");this.__datagrid=datagrid,this.__yesButton=yesButton,this.__elementContent.appendChild(this.__datagrid.getElement()[0]),this.__elementFooter.appendChild(yesButton.getElement()[0]),this.__eventDestroyers.push(TcHmi.EventProvider.register(yesButton.getId()+".onPressed",()=>{for(let i=0,ii=this.__alarms.length;i<ii;i++)TcHmi.Server.Events.confirmAlarm(this.__alarms[i],data=>{data.error!==TcHmi.Errors.NONE&&TcHmi.Log.Controls.error(this.__parentControl,ConfirmAllPopup.#tchmiFQN,`Unable to confirm alarm with id ${this.__alarms[i].id} in domain ${this.__alarms[i].domain}. Error: ${TcHmi.Log.buildMessage(data.details)}`)});this.hide()})),this.__elementFooter.appendChild(cancelButton.getElement()[0]),this.__eventDestroyers.push(TcHmi.EventProvider.register(cancelButton.getId()+".onPressed",()=>this.hide()))}__alarms=[];__datagrid;__yesButton;__elementAlarmCount;destroy(){super.destroy(),this.__parentControl.__removeLocalizedElement(this.__elementAlarmCount)}update(alarms){this.__alarms=alarms,this.__parentControl.__removeLocalizedElement(this.__elementAlarmCount),this.__datagrid.setSrcData(this.__alarms),this.__yesButton.setIsEnabled(this.__alarms.length>0),1===this.__alarms.length?this.__parentControl.__addLocalizedElement(this.__elementAlarmCount,"Label_Text_ConfirmAll_Sure_Singular"):this.__parentControl.__addLocalizedElement(this.__elementAlarmCount,"Label_Text_ConfirmAll_Sure_Plural",this.__alarms.length),this.__elementContent.style.height=30*this.__alarms.length+70+"px"}getAlarms(){return this.__alarms}}
|
||||
@@ -0,0 +1,42 @@
|
||||
import type { Control as TcHmiEventGrid } from './TcHmiEventGrid.esm.js';
|
||||
import type { Control as TcHmiButton } from '../TcHmiButton/TcHmiButton.esm.js';
|
||||
import { Popup } from './Popup.js';
|
||||
/**
|
||||
* A popup showing details of events. Contains a close button.
|
||||
*/
|
||||
export declare class DetailsPopup extends Popup {
|
||||
#private;
|
||||
/**
|
||||
* Creates a new DetailsPopup.
|
||||
* @param element The HTML element that hosts the popup.
|
||||
* @param control The control owning the popup.
|
||||
*/
|
||||
constructor(element: HTMLElement, control: TcHmiEventGrid);
|
||||
protected __event: TcHmi.Server.Events.Event | null;
|
||||
protected __confirmButton: TcHmiButton;
|
||||
protected __localizedElements: HTMLElement[];
|
||||
protected __destroyersToCallOnHide: TcHmi.DestroyFunction[];
|
||||
/**
|
||||
* Shows the popup.
|
||||
*/
|
||||
show(): void;
|
||||
/**
|
||||
* Hides the popup.
|
||||
*/
|
||||
hide(): void;
|
||||
/**
|
||||
* Destroys the popup and all its controls. Also removes all DOM event handlers
|
||||
*/
|
||||
destroy(): void;
|
||||
/**
|
||||
* Updates the content of the popup.
|
||||
* @param event The event whose details should be shown.
|
||||
*/
|
||||
update(event: TcHmi.Server.Events.Event): void;
|
||||
/**
|
||||
* Returns the currently shown event.
|
||||
*/
|
||||
getEvent(): TcHmi.Server.Events.Event<any, TcHmi.Dictionary<any>> | null;
|
||||
__setCanConfirm(value: boolean): void;
|
||||
}
|
||||
//# sourceMappingURL=DetailsPopup.d.ts.map
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,2 @@
|
||||
export declare function EventClassesProvider(rowValue: TcHmi.Server.Events.Event, dataIndex: number, rowNumber: number): string[];
|
||||
//# sourceMappingURL=EventClassesProvider.esm.d.ts.map
|
||||
@@ -0,0 +1 @@
|
||||
export function EventClassesProvider(rowValue,dataIndex,rowNumber){let classes=[];switch(rowValue.type){case TcHmi.Server.Events.Type.Message:classes.push("message");break;case TcHmi.Server.Events.Type.Alarm:classes.push("alarm")}if(TcHmi.Server.Events.isMessage(rowValue)||TcHmi.Server.Events.isAlarm(rowValue))switch(rowValue.severity){case TcHmi.Server.Events.Severity.Verbose:classes.push("verbose");break;case TcHmi.Server.Events.Severity.Info:classes.push("info");break;case TcHmi.Server.Events.Severity.Warning:classes.push("warning");break;case TcHmi.Server.Events.Severity.Error:classes.push("error");break;case TcHmi.Server.Events.Severity.Critical:classes.push("critical")}if(TcHmi.Server.Events.isAlarm(rowValue)){switch(rowValue.alarmState){case TcHmi.Server.Events.AlarmState.Raised:classes.push("raised");break;case TcHmi.Server.Events.AlarmState.Confirmed:classes.push("confirmed");break;case TcHmi.Server.Events.AlarmState.Cleared:classes.push("cleared");break;case TcHmi.Server.Events.AlarmState.ClearedAndConfirmed:classes.push("cleared-and-confirmed");break;case TcHmi.Server.Events.AlarmState.Invalid:classes.push("invalid")}rowValue.confirmationState===TcHmi.Server.Events.ConfirmationState.NotRequired||rowValue.confirmationState===TcHmi.Server.Events.ConfirmationState.NotSupported?classes.push("no-confirmation-needed"):rowValue.confirmationState===TcHmi.Server.Events.ConfirmationState.Reset&&classes.push("confirmation-reset")}return classes}TcHmi.Functions.registerFunctionEx("EventClassesProvider","TcHmi.Controls.Beckhoff.TcHmiEventGrid",EventClassesProvider);
|
||||
@@ -0,0 +1,34 @@
|
||||
import type { Control as TcHmiEventGrid } from 'TcHmiEventGrid.esm.js';
|
||||
/**
|
||||
* A basic popup. No controls are instatiated
|
||||
*/
|
||||
export declare abstract class Popup {
|
||||
/**
|
||||
* Creates a new Popup.
|
||||
* @param element The HTML element that hosts the popup.
|
||||
* @param name The name of the popup. Used for control instantiation.
|
||||
* @param control The control owning the popup.
|
||||
*/
|
||||
constructor(element: HTMLElement, name: string, control: TcHmiEventGrid);
|
||||
protected __name: string;
|
||||
protected __parentControl: TcHmiEventGrid;
|
||||
protected __element: HTMLElement;
|
||||
protected __elementContent: HTMLDivElement;
|
||||
protected __elementFooter: HTMLDivElement;
|
||||
protected __eventDestroyers: TcHmi.DestroyFunction[];
|
||||
protected __isShowing: boolean;
|
||||
/**
|
||||
* Shows the popup.
|
||||
*/
|
||||
show(): void;
|
||||
/**
|
||||
* Hides the popup.
|
||||
*/
|
||||
hide(): void;
|
||||
/**
|
||||
* Destroys the popup and all its controls.
|
||||
*/
|
||||
destroy(): void;
|
||||
isShowing(): boolean;
|
||||
}
|
||||
//# sourceMappingURL=Popup.d.ts.map
|
||||
@@ -0,0 +1 @@
|
||||
export class Popup{constructor(element,name,control){if(this.__name=name,this.__parentControl=control,this.__element=element,this.__elementContent=element.getElementsByClassName("TcHmi_Controls_Beckhoff_TcHmiEventGrid-template-popup-content")[0],this.__elementFooter=element.getElementsByClassName("TcHmi_Controls_Beckhoff_TcHmiEventGrid-template-popup-footer")[0],!this.__element||!this.__elementContent||!this.__elementFooter)throw new Error("Invalid Template.html")}__name;__parentControl;__element;__elementContent;__elementFooter;__eventDestroyers=[];__isShowing=!1;show(){this.__isShowing||(TcHmi.TopMostLayer.add(this.__parentControl,this.__element,{removeCb:()=>{this.__isShowing=!1},centerHorizontal:!0,centerVertical:!0}),this.__isShowing=!0)}hide(){this.__isShowing&&(TcHmi.TopMostLayer.remove(this.__parentControl,this.__element),this.__isShowing=!1)}destroy(){for(let i=0,ii=this.__eventDestroyers.length;i<ii;i++)this.__eventDestroyers[i]();this.__eventDestroyers=[]}isShowing(){return this.__isShowing}}
|
||||
@@ -0,0 +1,55 @@
|
||||
import type { Control as TcHmiEventGrid } from './TcHmiEventGrid.esm.js';
|
||||
import type { Control as TcHmiButton } from '../TcHmiButton/TcHmiButton.esm.js';
|
||||
import { Popup } from './Popup.js';
|
||||
/**
|
||||
* A basic settings popup. This popup contains an OK and a Cancel button.
|
||||
*/
|
||||
export declare abstract class SettingsPopup<S> extends Popup {
|
||||
/**
|
||||
* Creates a new SettingsPopup.
|
||||
* @param element The HTML element that hosts the popup.
|
||||
* @param name The name of the popup. Used for control instantiation.
|
||||
* @param control The control owning the popup.
|
||||
*/
|
||||
constructor(element: HTMLElement, name: string, control: TcHmiEventGrid);
|
||||
protected __resetButton: TcHmiButton;
|
||||
protected __resetHandlers: (() => void)[];
|
||||
protected __okHandlers: (() => void | boolean)[];
|
||||
protected __cancelHandlers: (() => void | boolean)[];
|
||||
protected abstract __settings: S;
|
||||
protected __updateRequired: boolean;
|
||||
/**
|
||||
* Handles the pressed event of a button.
|
||||
*/
|
||||
protected __onButtonPressed(handlers: (() => void | boolean)[], hide: boolean): void;
|
||||
/**
|
||||
* Registers a handler function for presses of the Reset button. Returns a function to unregister the handler.
|
||||
* @param handler The handler to register.
|
||||
*/
|
||||
registerResetButtonHandler(handler: () => void): () => void;
|
||||
/**
|
||||
* Registers a handler function for presses of the OK button. Returns a function to unregister the handler.
|
||||
* @param handler The handler to register. If one or more of the registered handlers returns false, the popup will not be hidden.
|
||||
*/
|
||||
registerOkButtonHandler(handler: () => void | boolean): () => void;
|
||||
/**
|
||||
* Registers a handler function for presses of the Cancel button. Returns a function to unregister the handler.
|
||||
* @param handler The handler to register. If one or more of the registered handlers returns false, the popup will not be hidden.
|
||||
*/
|
||||
registerCancelButtonHandler(handler: () => void | boolean): () => void;
|
||||
/**
|
||||
* Updates the settings this popup should modify.
|
||||
* @param settings The new settings.
|
||||
* @param resetable Whether the reset button should be enabled or disabled.
|
||||
*/
|
||||
update(settings: S, resetable?: boolean): void;
|
||||
/**
|
||||
* Gets the current settings.
|
||||
*/
|
||||
getSettings(): S;
|
||||
/**
|
||||
* Checks if an update of the settings is required.
|
||||
*/
|
||||
requiresUpdate(): boolean;
|
||||
}
|
||||
//# sourceMappingURL=SettingsPopup.d.ts.map
|
||||
@@ -0,0 +1 @@
|
||||
import{Popup}from"./Popup.js";export class SettingsPopup extends Popup{constructor(element,name,control){super(element,name,control);let resetButton=TcHmi.ControlFactory.createEx("TcHmi.Controls.Beckhoff.TcHmiButton",`${this.__parentControl.getId()}.${this.__name}.resetButton`,{"data-tchmi-height":30,"data-tchmi-width-mode":"Content","data-tchmi-min-width":60,"data-tchmi-text-padding":{left:7,right:7},"data-tchmi-text":"%l%Control::TcHmi.Controls.Beckhoff.TcHmiEventGrid::Button_Text_Reset_Config%/l%","data-tchmi-tooltip":"%l%Control::TcHmi.Controls.Beckhoff.TcHmiEventGrid::Button_Tooltip_Reset_Config%/l%","data-tchmi-is-enabled":!1},this.__parentControl),okButton=TcHmi.ControlFactory.createEx("TcHmi.Controls.Beckhoff.TcHmiButton",`${this.__parentControl.getId()}.${this.__name}.okButton`,{"data-tchmi-height":30,"data-tchmi-width-mode":"Content","data-tchmi-min-width":60,"data-tchmi-text-padding":{left:7,right:7},"data-tchmi-text":"%l%Control::TcHmi.Controls.Beckhoff.TcHmiEventGrid::Button_Text_Ok%/l%","data-tchmi-tooltip":"%l%Control::TcHmi.Controls.Beckhoff.TcHmiEventGrid::Button_Tooltip_Ok%/l%"},this.__parentControl),cancelButton=TcHmi.ControlFactory.createEx("TcHmi.Controls.Beckhoff.TcHmiButton",`${this.__parentControl.getId()}.${this.__name}.cancelButton`,{"data-tchmi-height":30,"data-tchmi-width-mode":"Content","data-tchmi-min-width":60,"data-tchmi-text-padding":{left:7,right:7},"data-tchmi-text":"%l%Control::TcHmi.Controls.Beckhoff.TcHmiEventGrid::Button_Text_Cancel%/l%","data-tchmi-tooltip":"%l%Control::TcHmi.Controls.Beckhoff.TcHmiEventGrid::Button_Tooltip_Cancel%/l%"},this.__parentControl);if(!resetButton||!okButton||!cancelButton)throw new Error("Could not create controls for SettingsPopup.");const resetButtonElement=resetButton.getElement()[0];resetButtonElement.classList.add("align-left"),this.__elementFooter.appendChild(resetButtonElement),this.__eventDestroyers.push(TcHmi.EventProvider.register(resetButton.getId()+".onPressed",()=>{this.__onButtonPressed(this.__resetHandlers,!1)})),this.__elementFooter.appendChild(okButton.getElement()[0]),this.__eventDestroyers.push(TcHmi.EventProvider.register(okButton.getId()+".onPressed",()=>{this.__onButtonPressed(this.__okHandlers,!0)})),this.__elementFooter.appendChild(cancelButton.getElement()[0]),this.__eventDestroyers.push(TcHmi.EventProvider.register(cancelButton.getId()+".onPressed",()=>{this.__onButtonPressed(this.__cancelHandlers,!0)})),this.__resetButton=resetButton}__resetButton;__resetHandlers=[];__okHandlers=[];__cancelHandlers=[];__updateRequired=!0;__onButtonPressed(handlers,hide){this.__updateRequired=!0;for(let i=0,ii=handlers.length;i<ii;i++)!1===handlers[i]()&&(hide=!1);hide&&this.hide()}registerResetButtonHandler(handler){return this.__resetHandlers.push(handler),()=>{let index=this.__resetHandlers.indexOf(handler);-1!==index&&this.__resetHandlers.splice(index,1)}}registerOkButtonHandler(handler){return this.__okHandlers.push(handler),()=>{let index=this.__okHandlers.indexOf(handler);-1!==index&&this.__okHandlers.splice(index,1)}}registerCancelButtonHandler(handler){return this.__cancelHandlers.push(handler),()=>{let index=this.__cancelHandlers.indexOf(handler);-1!==index&&this.__cancelHandlers.splice(index,1)}}update(settings,resetable=!1){this.__settings=tchmi_clone_object(settings),this.__updateRequired=!1,this.__resetButton.setIsEnabled(resetable)}getSettings(){return this.__settings}requiresUpdate(){return this.__updateRequired}}
|
||||
@@ -0,0 +1,628 @@
|
||||
import { TcHmiControl } from 'Beckhoff.TwinCAT.HMI.Framework/index.esm.js';
|
||||
import type * as TcHmiDatagrid from '../TcHmiDatagrid/TcHmiDatagrid.esm.js';
|
||||
import type { Control as TcHmiButton } from '../TcHmiButton/TcHmiButton.esm.js';
|
||||
import type { Control as TcHmiToggleButton } from '../TcHmiToggleButton/TcHmiToggleButton.esm.js';
|
||||
import { ColumnsPopup } from './ColumnsPopup.js';
|
||||
import { DetailsPopup } from './DetailsPopup.js';
|
||||
import { ConfirmAllPopup } from './ConfirmAllPopup.js';
|
||||
import { FilterPrompt } from '../Helpers/TcHmiPopups/FilterPrompt.js';
|
||||
declare class TcHmiEventGrid extends TcHmiControl.Control {
|
||||
#private;
|
||||
constructor(element: JQuery, pcElement: JQuery, attrs: TcHmi.Controls.ControlAttributeList);
|
||||
/** member variables */
|
||||
/** Reference to the root dom element of the current control template as jquery object. */
|
||||
protected __elementTemplateRoot: JQuery;
|
||||
protected __elementGridContainer: JQuery;
|
||||
protected __elementMenuBar: JQuery;
|
||||
protected __elementTypeToggles: JQuery;
|
||||
protected __elementSeverityToggles: JQuery;
|
||||
protected __elementOptions: JQuery;
|
||||
protected __elementMessageActions: JQuery;
|
||||
protected __elementFilterPopup: JQuery;
|
||||
protected __elementColumnsPopup: JQuery;
|
||||
protected __elementDetailsPopup: JQuery;
|
||||
protected __elementConfirmAllPopup: JQuery;
|
||||
protected __filter: TcHmi.Filter | null | undefined;
|
||||
protected __internalFilter: TcHmi.Filter;
|
||||
protected __noPayloadsFilter: import("Beckhoff.TwinCAT.HMI.Framework/dist/API/FilterInstance.js").FilterInstance<any>;
|
||||
protected __serverInterval: number | null | undefined;
|
||||
protected __columns: Column[] | undefined;
|
||||
protected __internalColumns: Column[];
|
||||
protected __allowDetailsPopup: boolean | undefined;
|
||||
protected __showMenuBar: boolean | undefined;
|
||||
protected __menuBarPosition: 'Top' | 'Bottom' | 'Left' | 'Right' | undefined;
|
||||
protected __buttonFontFamily: string | undefined;
|
||||
protected __buttonFontSize: number | undefined;
|
||||
protected __buttonFontSizeUnit: TcHmi.FontSizeUnit | undefined;
|
||||
protected __buttonFontStyle: TcHmi.FontStyle | undefined;
|
||||
protected __buttonFontWeight: TcHmi.FontWeight | undefined;
|
||||
protected __buttonHeight: number | undefined;
|
||||
protected __storage: TcHmi.LocalStorage<{
|
||||
filter: TcHmi.Filter;
|
||||
columns: Column[];
|
||||
}, {
|
||||
filter: ReturnType<TcHmiEventGrid['getFilter']>;
|
||||
columns: ReturnType<TcHmiEventGrid['getColumns']>;
|
||||
}> | undefined;
|
||||
protected __datagrid: TcHmiDatagrid.Control;
|
||||
protected __sortingInitialized: boolean;
|
||||
protected __headerFontFamilyInitialized: boolean;
|
||||
protected __headerFontSizeInitialized: boolean;
|
||||
protected __headerFontSizeUnitInitialized: boolean;
|
||||
protected __headerFontStyleInitialized: boolean;
|
||||
protected __headerFontWeightInitialized: boolean;
|
||||
protected __gridFontFamilyInitialized: boolean;
|
||||
protected __gridFontSizeInitialized: boolean;
|
||||
protected __gridFontSizeUnitInitialized: boolean;
|
||||
protected __gridFontStyleInitialized: boolean;
|
||||
protected __gridFontWeightInitialized: boolean;
|
||||
protected __headerHeightInitialized: boolean;
|
||||
protected __headerHeightUnitInitialized: boolean;
|
||||
protected __rowHeightInitialized: boolean;
|
||||
/** Internal reference to the attribute "data-tchmi-ignore-escape-sequences" */
|
||||
protected __ignoreEscapeSequences: boolean | undefined;
|
||||
protected __typeToggles: Map<import("Beckhoff.TwinCAT.HMI.Framework/dist/API/Server.Events.js").Type, TcHmiToggleButton | undefined>;
|
||||
protected __severityToggles: Map<import("Beckhoff.TwinCAT.HMI.Framework/dist/API/Server.Events.js").Severity, TcHmiToggleButton | undefined>;
|
||||
protected __menuBarButtons: Map<string, TcHmiButton | undefined>;
|
||||
protected __buttonTooltips: {
|
||||
message: string;
|
||||
alarm: string;
|
||||
verbose: string;
|
||||
info: string;
|
||||
warning: string;
|
||||
error: string;
|
||||
critical: string;
|
||||
filter: string;
|
||||
columns: string;
|
||||
export: string;
|
||||
confirm: string;
|
||||
confirmAll: string;
|
||||
};
|
||||
protected __canConfirm: boolean;
|
||||
protected __filterPrompt: FilterPrompt | null;
|
||||
protected __columnsPopup: ColumnsPopup | null;
|
||||
protected __detailsPopup: DetailsPopup | null;
|
||||
protected __confirmAllPopup: ConfirmAllPopup | null;
|
||||
protected __typesToShow: Map<import("Beckhoff.TwinCAT.HMI.Framework/dist/API/Server.Events.js").Type, boolean>;
|
||||
protected __severitiesToShow: Map<import("Beckhoff.TwinCAT.HMI.Framework/dist/API/Server.Events.js").Severity, boolean>;
|
||||
protected __themedIcons: {
|
||||
types: Map<import("Beckhoff.TwinCAT.HMI.Framework/dist/API/Server.Events.js").Type, Icon | null>;
|
||||
severities: Map<import("Beckhoff.TwinCAT.HMI.Framework/dist/API/Server.Events.js").Severity, Icon | null>;
|
||||
};
|
||||
protected __localizedElements: Map<HTMLElement, {
|
||||
key: string;
|
||||
parameters?: any[];
|
||||
}>;
|
||||
protected __localizationReader: TcHmi.Locale.LocalizationReader | undefined;
|
||||
protected __subscriptionId: number | null;
|
||||
protected __availableColumns: TcHmi.Dictionary<TcHmiDatagrid.Column>;
|
||||
protected __doubletapStartTime: number;
|
||||
/**
|
||||
* If raised, the control object exists in control cache and constructor of each inheritation level was called.
|
||||
* This function is only to be used by the System. Other function calls are not intended.
|
||||
*/
|
||||
__previnit(): void;
|
||||
/**
|
||||
* If raised, all attributes have been set to it's default or dom values.
|
||||
* This function is only to be used by the System. Other function calls are not intended.
|
||||
*/
|
||||
__init(): void;
|
||||
/**
|
||||
* Is called by the system after the control instance gets part of the current DOM.
|
||||
* This function is only to be used by the System. Other function calls are not intended.
|
||||
*/
|
||||
__attach(): void;
|
||||
/**
|
||||
* Is called by the system after the control instance is no longer part of the current DOM.
|
||||
* This function is only to be used by the System. Other function calls are not intended.
|
||||
*/
|
||||
__detach(): void;
|
||||
/**
|
||||
* Destroy the current control instance.
|
||||
* Will be called automatically if system destroys control!
|
||||
*/
|
||||
destroy(): void;
|
||||
/**
|
||||
* Add an element to be localized.
|
||||
* @param element The element.
|
||||
* @param key The localization key.
|
||||
* @param parameters Optional parameters to pass to tchmi_format_string.
|
||||
*/
|
||||
__addLocalizedElement(element: HTMLElement, key: string, ...parameters: any[]): void;
|
||||
/**
|
||||
* Remove a localized element.
|
||||
* @param element The element to remove.
|
||||
*/
|
||||
__removeLocalizedElement(element: HTMLElement): void;
|
||||
/**
|
||||
* Handles the onResized event of the control.
|
||||
*/
|
||||
protected __onResized(): void;
|
||||
/**
|
||||
* Handles the onThemeDataChanged event.
|
||||
*/
|
||||
protected __onThemeDataChanged(): void;
|
||||
/**
|
||||
* Creates an event handler for toggle state changed events of type toggle buttons.
|
||||
* @param toggleButton The toggle button for which to create an event handler.
|
||||
* @param type The type this event handler should control.
|
||||
*/
|
||||
protected __getTypeToggleStateChangedHandler(toggleButton: TcHmiToggleButton, type: TcHmi.Server.Events.Type): () => void;
|
||||
/**
|
||||
* Creates an event handler for toggle state changed events of severity toggle buttons.
|
||||
* @param toggleButton The toggle button for which to create an event handler.
|
||||
* @param severity The severity this event handler should control.
|
||||
*/
|
||||
protected __getSeverityToggleStateChangedHandler(toggleButton: TcHmiToggleButton, severity: TcHmi.Server.Events.Severity): () => void;
|
||||
/**
|
||||
* Handles the selectedItemChanged event of the datagrid.
|
||||
*/
|
||||
protected __onSelectedItemChanged(): void;
|
||||
/**
|
||||
* Handles the onPropertyChanged event of the datagrid.
|
||||
*/
|
||||
private __onDataGridPropertyChanged;
|
||||
/**
|
||||
* Handles the onPressedEvent of the filter button.
|
||||
*/
|
||||
protected __onFilterPressed(): void;
|
||||
/**
|
||||
* Handles the onPressedEvent of the columns button.
|
||||
*/
|
||||
protected __onColumnsPressed(): void;
|
||||
/**
|
||||
* Handles the onPressedEvent of the export button.
|
||||
*/
|
||||
protected __onExportPressed(): void;
|
||||
/**
|
||||
* Handles the onPressed event of the confirm button.
|
||||
*/
|
||||
protected __onConfirmPressed(): void;
|
||||
/**
|
||||
* Handles the onPressed event of the confirmAll button.
|
||||
*/
|
||||
protected __onConfirmAllPressed(): void;
|
||||
/**
|
||||
* Handles double clicks on table rows.
|
||||
*/
|
||||
protected __onDoubleclick(event: MouseEvent): void;
|
||||
/**
|
||||
* Handles touchstart events on table rows.
|
||||
*/
|
||||
protected __onTouchStart(event: TouchEvent): void;
|
||||
/**
|
||||
* Handles scroll events.
|
||||
*/
|
||||
protected __onScroll(event: Event): void;
|
||||
/**
|
||||
* Shows the details popup
|
||||
*/
|
||||
protected __showDetails(): void;
|
||||
/**
|
||||
* Processes the currently seleceted datagrid item.
|
||||
*/
|
||||
protected __processSelectedItem(): void;
|
||||
/**
|
||||
* Updates the subscription getting metadata for the eventgrid.
|
||||
* @param unsubscribeOnly Should be set to true when this method is called from __detach. Prevents a new subscription being created after the existing subscription was unsubscribed.
|
||||
*/
|
||||
protected __updateSubscription(unsubscribeOnly?: boolean): void;
|
||||
/**
|
||||
* Gets a handler that checks the incomming response for errors and executes the specified functions for each command.
|
||||
* @param commands The commands that are expected to be present in the response, and their respective handlers.
|
||||
*/
|
||||
protected __getServerResponseHandler(commands: Map<TcHmi.Server.ICommand, (response: TcHmi.Server.ICommand, data: TcHmi.Server.IResultObject) => void>): (data: TcHmi.Server.IResultObject) => void;
|
||||
/**
|
||||
* Generates the commands and handlers for the numbers in the toggle buttons.
|
||||
*/
|
||||
protected __getToggleButtonCommands(): Map<TcHmi.Server.ICommand<any, any>, (command: TcHmi.Server.ICommand, data: TcHmi.Server.IResultObject) => void>;
|
||||
/**
|
||||
* Generates the command and handler for the number of confirmable alarms.
|
||||
*/
|
||||
protected __getConfirmAllCommand(): readonly [TcHmi.Server.ICommand<any, any>, (command: TcHmi.Server.ICommand, data: TcHmi.Server.IResultObject) => void];
|
||||
/**
|
||||
* Gets the filter for all confirmable alarms.
|
||||
*/
|
||||
protected __getConfirmAllFilter(): TcHmi.Filter;
|
||||
/**
|
||||
* Generates the command and handler for the symbol access level to ConfirmAlarm
|
||||
*/
|
||||
protected __getCanConfirmCommand(): readonly [TcHmi.Server.ICommand<"ConfirmAlarm", import("Beckhoff.TwinCAT.HMI.Framework/dist/API/Server.js").ACCESS>, (cmd: TcHmi.Server.ICommand<"ConfirmAlarm", import("Beckhoff.TwinCAT.HMI.Framework/dist/API/Server.js").ACCESS>, data: TcHmi.Server.IResultObject) => void];
|
||||
/**
|
||||
* Gets the themed icon values from the ThemeManager.
|
||||
*/
|
||||
protected __getThemedIcons(): {
|
||||
types: Map<import("Beckhoff.TwinCAT.HMI.Framework/dist/API/Server.Events.js").Type, Icon | null>;
|
||||
severities: Map<import("Beckhoff.TwinCAT.HMI.Framework/dist/API/Server.Events.js").Severity, Icon | null>;
|
||||
};
|
||||
/**
|
||||
* Sets the columns value and calls the associated process function.
|
||||
* @param valueNew The new value for columns.
|
||||
*/
|
||||
setColumns(valueNew: Column[] | null): void;
|
||||
/**
|
||||
* The watch callback for the columns object resolver.
|
||||
*/
|
||||
protected __onResolverForColumnsWatchCallback(data: TcHmi.Symbol.ObjectResolver.IWatchResultObject<Column[]>): void;
|
||||
/**
|
||||
* Returns the current value of columns.
|
||||
*/
|
||||
getColumns(): Column[] | undefined;
|
||||
/**
|
||||
* Processes the current columns value.
|
||||
*/
|
||||
protected __processColumns(): void;
|
||||
/**
|
||||
* Updates the columns of the datagrid.
|
||||
* @param columns The names of the column definitions to set.
|
||||
*/
|
||||
protected __updateColumns(columns: Column[], forceRaiseEvent?: boolean): void;
|
||||
/**
|
||||
* Sets the filter value and calls the associated process function.
|
||||
* @param valueNew The new value for filter.
|
||||
*/
|
||||
setFilter(valueNew: TcHmi.Filter | null): void;
|
||||
/**
|
||||
* The watch callback for the filter object resolver.
|
||||
*/
|
||||
protected __onResolverForFilterWatchCallback(data: TcHmi.Symbol.ObjectResolver.IWatchResultObject<TcHmi.Filter>): void;
|
||||
/**
|
||||
* Returns the current value of filter.
|
||||
*/
|
||||
getFilter(): TcHmi.Filter | null | undefined;
|
||||
/**
|
||||
* Processes the current filter value.
|
||||
*/
|
||||
protected __processFilter(): void;
|
||||
/**
|
||||
* Updates the internal filter.
|
||||
* @param filter The filter to set.
|
||||
*/
|
||||
protected __updateFilter(filter: TcHmi.Filter, forceRaiseEvent?: boolean): void;
|
||||
/**
|
||||
* Updates the filter of the datagrid.
|
||||
*/
|
||||
protected __updateDatagridFilter(): void;
|
||||
/**
|
||||
* Sets the sorting value.
|
||||
* @param valueNew The new value for sorting
|
||||
*/
|
||||
setSorting(valueNew: TcHmi.SortingInfo[] | null): void;
|
||||
/**
|
||||
* Returns the current value of sorting.
|
||||
*/
|
||||
getSorting(): TcHmi.SortingInfo[] | undefined;
|
||||
/**
|
||||
* Sets the serverInterval value and calls the associated process function.
|
||||
* @param valueNew The new value for serverInterval.
|
||||
*/
|
||||
setServerInterval(valueNew: number | null): void;
|
||||
/**
|
||||
* Returns the current value of serverInterval.
|
||||
*/
|
||||
getServerInterval(): number | null | undefined;
|
||||
/**
|
||||
* Processes the current serverInterval value.
|
||||
*/
|
||||
protected __processServerInterval(): void;
|
||||
/**
|
||||
* Sets the headerFontFamily value.
|
||||
* @param valueNew The new value for headerFontFamily
|
||||
*/
|
||||
setHeaderFontFamily(valueNew: TcHmi.FontFamily | null): void;
|
||||
/**
|
||||
* Returns the current value of headerFontFamily.
|
||||
*/
|
||||
getHeaderFontFamily(): string | null | undefined;
|
||||
/**
|
||||
* Sets the headerFontSize value.
|
||||
* @param valueNew The new value for headerFontSize
|
||||
*/
|
||||
setHeaderFontSize(valueNew: number | null): void;
|
||||
/**
|
||||
* Returns the current value of headerFontSize.
|
||||
*/
|
||||
getHeaderFontSize(): number | undefined;
|
||||
/**
|
||||
* Sets the headerFontSizeUnit value.
|
||||
* @param valueNew The new value for headerFontSizeUnit
|
||||
*/
|
||||
setHeaderFontSizeUnit(valueNew: TcHmi.FontSizeUnit | null): void;
|
||||
/**
|
||||
* Returns the current value of headerFontSizeUnit.
|
||||
*/
|
||||
getHeaderFontSizeUnit(): TcHmi.FontSizeUnit | undefined;
|
||||
/**
|
||||
* Sets the headerFontStyle value.
|
||||
* @param valueNew The new value for headerFontStyle
|
||||
*/
|
||||
setHeaderFontStyle(valueNew: TcHmi.FontStyle | null): void;
|
||||
/**
|
||||
* Returns the current value of headerFontStyle.
|
||||
*/
|
||||
getHeaderFontStyle(): TcHmi.FontStyle | undefined;
|
||||
/**
|
||||
* Sets the headerFontWeight value.
|
||||
* @param valueNew The new value for headerFontWeight
|
||||
*/
|
||||
setHeaderFontWeight(valueNew: TcHmi.FontWeight | null): void;
|
||||
/**
|
||||
* Returns the current value of headerFontWeight.
|
||||
*/
|
||||
getHeaderFontWeight(): TcHmi.FontWeight | undefined;
|
||||
/**
|
||||
* Sets the gridFontFamily value.
|
||||
* @param valueNew The new value for gridFontFamily
|
||||
*/
|
||||
setGridFontFamily(valueNew: TcHmi.FontFamily | null): void;
|
||||
/**
|
||||
* Returns the current value of gridFontFamily.
|
||||
*/
|
||||
getGridFontFamily(): string | null | undefined;
|
||||
/**
|
||||
* Sets the gridFontSize value.
|
||||
* @param valueNew The new value for gridFontSize
|
||||
*/
|
||||
setGridFontSize(valueNew: number | null): void;
|
||||
/**
|
||||
* Returns the current value of gridFontSize.
|
||||
*/
|
||||
getGridFontSize(): number | undefined;
|
||||
/**
|
||||
* Sets the gridFontSizeUnit value.
|
||||
* @param valueNew The new value for gridFontSizeUnit
|
||||
*/
|
||||
setGridFontSizeUnit(valueNew: TcHmi.FontSizeUnit | null): void;
|
||||
/**
|
||||
* Returns the current value of gridFontSizeUnit.
|
||||
*/
|
||||
getGridFontSizeUnit(): TcHmi.FontSizeUnit | undefined;
|
||||
/**
|
||||
* Sets the gridFontStyle value.
|
||||
* @param valueNew The new value for gridFontStyle
|
||||
*/
|
||||
setGridFontStyle(valueNew: TcHmi.FontStyle | null): void;
|
||||
/**
|
||||
* Returns the current value of gridFontStyle.
|
||||
*/
|
||||
getGridFontStyle(): TcHmi.FontStyle | undefined;
|
||||
/**
|
||||
* Sets the gridFontWeight value.
|
||||
* @param valueNew The new value for gridFontWeight
|
||||
*/
|
||||
setGridFontWeight(valueNew: TcHmi.FontWeight | null): void;
|
||||
/**
|
||||
* Returns the current value of gridFontWeight.
|
||||
*/
|
||||
getGridFontWeight(): TcHmi.FontWeight | undefined;
|
||||
/**
|
||||
* Sets the headerHeight value.
|
||||
* @param valueNew The new value for headerHeight
|
||||
*/
|
||||
setHeaderHeight(valueNew: number | null): void;
|
||||
/**
|
||||
* Returns the current value of headerHeight.
|
||||
*/
|
||||
getHeaderHeight(): number | undefined;
|
||||
/**
|
||||
* Sets the headerHeightUnit value.
|
||||
* @param valueNew The new value for headerHeightUnit
|
||||
*/
|
||||
setHeaderHeightUnit(valueNew: TcHmi.DimensionUnit | null): void;
|
||||
/**
|
||||
* Returns the current value of headerHeightUnit.
|
||||
*/
|
||||
getHeaderHeightUnit(): TcHmi.DimensionUnit | undefined;
|
||||
/**
|
||||
* Sets the rowHeight value.
|
||||
* @param valueNew The new value for rowHeight
|
||||
*/
|
||||
setRowHeight(valueNew: number | null): void;
|
||||
/**
|
||||
* Returns the current value of rowHeight.
|
||||
*/
|
||||
getRowHeight(): number | undefined;
|
||||
/**
|
||||
* Returns the current value of rowHeightUnit.
|
||||
*/
|
||||
getRowHeightUnit(): string;
|
||||
/**
|
||||
* Sets the value of the member variable IgnoreEscapeSequences.
|
||||
* @param valueNew The new value for IgnoreEscapeSequences
|
||||
*/
|
||||
setIgnoreEscapeSequences(valueNew: boolean | null | undefined): void;
|
||||
/**
|
||||
* Returns the current value of IgnoreEscapeSequences.
|
||||
* @returns The current value of IgnoreEscapeSequences.
|
||||
*/
|
||||
getIgnoreEscapeSequences(): boolean | undefined;
|
||||
/**
|
||||
* Sets the allowDetailsPopup value and calls the associated process function.
|
||||
* @param valueNew The new value for allowDetailsPopup.
|
||||
*/
|
||||
setAllowDetailsPopup(valueNew: boolean | null): void;
|
||||
/**
|
||||
* Returns the current value of allowDetailsPopup.
|
||||
*/
|
||||
getAllowDetailsPopup(): boolean | undefined;
|
||||
/**
|
||||
* Processes the current allowDetailsPopup value.
|
||||
*/
|
||||
protected __processAllowDetailsPopup(): void;
|
||||
/**
|
||||
* Sets the showMenuBar value and calls the associated process function.
|
||||
* @param valueNew The new value for showMenuBar.
|
||||
*/
|
||||
setShowMenuBar(valueNew: boolean | null): void;
|
||||
/**
|
||||
* Returns the current value of showMenuBar.
|
||||
*/
|
||||
getShowMenuBar(): boolean | undefined;
|
||||
/**
|
||||
* Processes the current showMenuBar value.
|
||||
*/
|
||||
protected __processShowMenuBar(): void;
|
||||
/**
|
||||
* Sets the menuBarPosition value and calls the associated process function.
|
||||
* @param valueNew The new value for menuBarPosition.
|
||||
*/
|
||||
setMenuBarPosition(valueNew: 'Top' | 'Bottom' | 'Left' | 'Right' | null): void;
|
||||
/**
|
||||
* Returns the current value of menuBarPosition.
|
||||
*/
|
||||
getMenuBarPosition(): "Left" | "Right" | "Top" | "Bottom" | undefined;
|
||||
/**
|
||||
* Processes the current menuBarPosition value.
|
||||
*/
|
||||
protected __processMenuBarPosition(): void;
|
||||
/**
|
||||
* Sets the buttonFontFamily value and calls the associated process function.
|
||||
* @param valueNew The new value for buttonFontFamily.
|
||||
*/
|
||||
setButtonFontFamily(valueNew: TcHmi.FontFamily | null): void;
|
||||
/**
|
||||
* Returns the current value of buttonFontFamily.
|
||||
*/
|
||||
getButtonFontFamily(): string | undefined;
|
||||
/**
|
||||
* Processes the current buttonFontFamily value.
|
||||
*/
|
||||
protected __processButtonFontFamily(): void;
|
||||
/**
|
||||
* Sets the buttonFontSize value and calls the associated process function.
|
||||
* @param valueNew The new value for buttonFontSize.
|
||||
*/
|
||||
setButtonFontSize(valueNew: number | null): void;
|
||||
/**
|
||||
* Returns the current value of buttonFontSize.
|
||||
*/
|
||||
getButtonFontSize(): number | undefined;
|
||||
/**
|
||||
* Processes the current buttonFontSize value.
|
||||
*/
|
||||
protected __processButtonFontSize(): void;
|
||||
/**
|
||||
* Sets the buttonFontSizeUnit value and calls the associated process function.
|
||||
* @param valueNew The new value for buttonFontSizeUnit.
|
||||
*/
|
||||
setButtonFontSizeUnit(valueNew: TcHmi.DimensionUnit | null): void;
|
||||
/**
|
||||
* Returns the current value of buttonFontSizeUnit.
|
||||
*/
|
||||
getButtonFontSizeUnit(): TcHmi.FontSizeUnit | undefined;
|
||||
/**
|
||||
* Processes the current buttonFontSizeUnit value.
|
||||
*/
|
||||
protected __processButtonFontSizeUnit(): void;
|
||||
/**
|
||||
* Sets the buttonFontStyle value and calls the associated process function.
|
||||
* @param valueNew The new value for buttonFontStyle.
|
||||
*/
|
||||
setButtonFontStyle(valueNew: TcHmi.FontStyle | null): void;
|
||||
/**
|
||||
* Returns the current value of buttonFontStyle.
|
||||
*/
|
||||
getButtonFontStyle(): TcHmi.FontStyle | undefined;
|
||||
/**
|
||||
* Processes the current buttonFontStyle value.
|
||||
*/
|
||||
protected __processButtonFontStyle(): void;
|
||||
/**
|
||||
* Sets the buttonFontWeight value and calls the associated process function.
|
||||
* @param valueNew The new value for buttonFontWeight.
|
||||
*/
|
||||
setButtonFontWeight(valueNew: TcHmi.FontWeight | null): void;
|
||||
/**
|
||||
* Returns the current value of buttonFontWeight.
|
||||
*/
|
||||
getButtonFontWeight(): TcHmi.FontWeight | undefined;
|
||||
/**
|
||||
* Processes the current buttonFontWeight value.
|
||||
*/
|
||||
protected __processButtonFontWeight(): void;
|
||||
/**
|
||||
* Sets the buttonHeight value and calls the associated process function.
|
||||
* @param valueNew The new value for buttonHeight.
|
||||
*/
|
||||
setButtonHeight(valueNew: number | null): void;
|
||||
/**
|
||||
* Returns the current value of buttonHeight.
|
||||
*/
|
||||
getButtonHeight(): number | undefined;
|
||||
/**
|
||||
* Processes the current buttonHeight value.
|
||||
*/
|
||||
protected __processButtonHeight(): void;
|
||||
/**
|
||||
* Returns the current value of buttonHeightUnit.
|
||||
*/
|
||||
getButtonHeightUnit(): string;
|
||||
/**
|
||||
* Flexbox has a bug in all major browsers, where the width of a flexbox column does not grow when its child elements wrap. This method fixes that by setting min-width explicitly.
|
||||
*/
|
||||
protected __fixVerticalMenuBarWidth(): void;
|
||||
/**
|
||||
* Returns the currently selected event.
|
||||
*/
|
||||
getSelectedEvent(): TcHmi.Server.Events.Event<any, TcHmi.Dictionary<any>> | null;
|
||||
/**
|
||||
* Confirms the selected alarm.
|
||||
* @param ctx Context object which provides context specific data and functions.
|
||||
*/
|
||||
confirmSelectedAlarm(ctx: TcHmi.SelectableRequired<TcHmi.Context, 'success' | 'error'>): void;
|
||||
/**
|
||||
* Confirm all alarms
|
||||
* @param ctx Context object which provides context specific data and functions.
|
||||
*/
|
||||
confirmAllAlarms(ctx: TcHmi.SelectableRequired<TcHmi.Context, 'success' | 'error'>): void;
|
||||
/**
|
||||
* Processes the current enabled status.
|
||||
*/
|
||||
__processIsEnabled(): void;
|
||||
/**
|
||||
* Processes the current access config.
|
||||
*/
|
||||
__processAccessConfig(): void;
|
||||
/**
|
||||
* Hides all popups.
|
||||
*/
|
||||
protected __hideAllPopups(): void;
|
||||
/**
|
||||
* Sets the internal canConfirm variable. This should not be called from outside the control but needs to be public so the confirmAll popup can call it.
|
||||
* @param value Whether the current user has the necessary rights to confirm alarms.
|
||||
*/
|
||||
protected __setCanConfirm(value: boolean): void;
|
||||
/**
|
||||
* Gets the internal canConfirm variable.
|
||||
*/
|
||||
__getCanConfirm(): boolean;
|
||||
}
|
||||
export interface Column {
|
||||
columnName: string;
|
||||
label?: string;
|
||||
width?: number;
|
||||
widthUnit?: TcHmi.DimensionUnit | 'factor';
|
||||
sortable?: boolean;
|
||||
format?: TcHmi.IFunction;
|
||||
}
|
||||
export interface Icon {
|
||||
imagePath: string;
|
||||
width: number;
|
||||
height: number;
|
||||
}
|
||||
export { TcHmiEventGrid as Control };
|
||||
declare const _TcHmiEventGrid: typeof TcHmiEventGrid;
|
||||
type tTcHmiEventGrid = TcHmiEventGrid;
|
||||
type tColumn = Column;
|
||||
type tIcon = Icon;
|
||||
declare global {
|
||||
namespace TcHmi.Controls.Beckhoff {
|
||||
const TcHmiEventGrid: typeof _TcHmiEventGrid;
|
||||
type TcHmiEventGrid = tTcHmiEventGrid;
|
||||
namespace TcHmiEventGrid {
|
||||
type Column = tColumn;
|
||||
type Icon = tIcon;
|
||||
}
|
||||
}
|
||||
}
|
||||
//# sourceMappingURL=TcHmiEventGrid.esm.d.ts.map
|
||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user