123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- ////////////////////////////////////////////////////////////////////////////
- // System Pre-define Functions
- // 95099372-ef3e-11ea-9c81-bf848405c62e
- //Callback of data preparation stage before UI is fully loaded.
- function OnInitializeData(reload, preview) {
-
- PUI(()=>{
- //you can access the 'ui' namespace in the parent form using the variable 'pui' here.
- //The 'pui' variable is valid in all functions of this document.
- //For robustness, you'd better use 'PUI(cb);' to access 'pui' variable.
-
- });
- }
- //Callback after UI is fully loaded and displayed.
- function OnReady(reload, preview) {
-
- PUI(()=>{
- //you can access the 'ui' namespace in the parent form using the variable 'pui' here.
- //The 'pui' variable is valid in all functions of this document.
- //For robustness, you'd better use 'PUI(cb);' to access 'pui' variable.
- });
- }
- function OnCloseForm() {
- }
- function OnException(err) {
- //ui.MessageBox('Error', '' + err, MessageBox.Icon.Critical, MessageBox.Button.Ok);
- }
- //////////////////////////////////////////////////////////////////////////
- // Callback Functions.
- // 641a254c-ef3e-11ea-bc8a-379bb908bdd7
- function OnReturn(){
- unit.form.mainfrm.menu(0);
- }
- function OnSend(){
-
- if(!model.global_ctrl[0] || !model.global_ctrl[1] || !model.global_ctrl[2] || !model.global_ctrl[3]) {
- unit.form.mainfrm.OnCueline('未满足创建条件', 'red');
- return;
- }
-
- let workcondition_index = model.acax_app.view.GetCurrentWorkConditionIndex();
- let temp = unit.form.tree.GetCurUniqueName();
- let name = temp;
- //判断是否为空
- let j = 0;
- let i = 0;
- if(model.acax_app.view.GetProperty(workcondition_index) === undefined || model.acax_app.view.GetProperty(workcondition_index).mark === undefined) {
- name = name + "mark0";
- }else{
- let mark_arr = Object.keys(model.acax_app.view.GetProperty(workcondition_index).mark);
- name = name + "mark" + mark_arr.length;
- while(1){
- for( i = 0;i < mark_arr.length;++i) {
- if(model.acax_app.view.GetProperty(workcondition_index).mark[mark_arr[i]].name === name) {
- ++j;
- name = temp + "mark" + mark_arr.length + j;
-
- break;
- }
- }
- if(i === mark_arr.length) {
- break;
- }
- }
-
- }
- unit.form.mainfrm.OnSetMarks(ui.pb_x.value, ui.pb_y.value, ui.pb_z.value, ui.pb_R.value, ui.pb_G.value, ui.pb_B.value, ui.pb_size.value, ui.pb_name.value, name);
-
- let mark ={
- "x":ui.pb_x.value,
- "y":ui.pb_y.value,
- "z":ui.pb_z.value,
- "R":ui.pb_R.value,
- "G":ui.pb_G.value,
- "B":ui.pb_B.value,
- "字体大小":ui.pb_size.value,
- "标记命名":ui.pb_name.value,
- "name":name
- };
-
- unit.form.tree.SetMark(mark);
- unit.form.mainfrm.OnCueline('创建成功', 'green');
-
- }
- //The message corresponding callback executed by the docker pane.
- // when calling [side_pane].fireEvent(type,para) in the main form.
- function OnParentDockerMessage(type, para) {
- }
- //////////////////////////////////////////////////////////////////////////
- // Utils Functions.
- // 6c165ad6-ef3e-11ea-987c-b761a131c2fe
- function onDragFile(filepath) {
- }
- function PUI(cb) {
- if(pui){cb();}
- }
- CW_DeclareVariable("pb_x",
- val => {
- ui.pb_x.value = val;
- }, () => {});
-
- CW_DeclareVariable("pb_y",
- val => {
- ui.pb_y.value = val;
- }, () => {});
- CW_DeclareVariable("pb_z",
- val => {
- ui.pb_z.value = val;
- }, () => {});
- /*Usage of BLOCK_EVENT
- BLOCK_EVENT(()=>{
- ui.[name].[var] = ...;
- });
- */
- function BLOCK_EVENT(cb) {
- ui.block_event = true;
-
- cb();
-
- ui.block_event = false;
- }
- //////////////////////////////////////////////////////////////////////////
- // template codes for cw callback js.
- function CW_DeclareVariable(name, setter, getter) {
- if(typeof(__DeclareVariable) === 'function') {
- __DeclareVariable(name, setter, getter);
- }
- }
- function CW_DeclareOuterVariable(name) {
- if(typeof(__DeclareOuterVariable) === 'function') {
- __DeclareOuterVariable(name);
- }
- }
|