physics_approximate_pane.js 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. ////////////////////////////////////////////////////////////////////////////
  2. // System Pre-define Functions
  3. // 95099372-ef3e-11ea-9c81-bf848405c62e
  4. //Callback of data preparation stage before UI is fully loaded.
  5. function OnInitializeData(reload, preview) {
  6. PUI(()=>{
  7. //you can access the 'ui' namespace in the parent form using the variable 'pui' here.
  8. //The 'pui' variable is valid in all functions of this document.
  9. //For robustness, you'd better use 'PUI(cb);' to access 'pui' variable.
  10. });
  11. }
  12. //Callback after UI is fully loaded and displayed.
  13. function OnReady(reload, preview) {
  14. PUI(()=>{
  15. //you can access the 'ui' namespace in the parent form using the variable 'pui' here.
  16. //The 'pui' variable is valid in all functions of this document.
  17. //For robustness, you'd better use 'PUI(cb);' to access 'pui' variable.
  18. });
  19. }
  20. function OnCloseForm() {
  21. }
  22. function OnException(err) {
  23. //ui.MessageBox('Error', '' + err, MessageBox.Icon.Critical, MessageBox.Button.Ok);
  24. }
  25. //////////////////////////////////////////////////////////////////////////
  26. // Callback Functions.
  27. // 641a254c-ef3e-11ea-bc8a-379bb908bdd7
  28. function OnReturnMenu(){
  29. unit.form.mainfrm.menu(2);
  30. }
  31. function OnYes() {
  32. ui.pb_pass.enable = true;
  33. var str = '0' + '\n' + '0' + '\n' + ui.aver_code_times.value + '\n' + ui.level_code_times.value + '\n' + ui.model_code_times.value;
  34. model.write(str, model.getCurrentDirectory() + '/data/BPP.txt');
  35. }
  36. //The message corresponding callback executed by the docker pane.
  37. // when calling [side_pane].fireEvent(type,para) in the main form.
  38. function OnParentDockerMessage(type, para) {
  39. }
  40. //////////////////////////////////////////////////////////////////////////
  41. // Utils Functions.
  42. // 6c165ad6-ef3e-11ea-987c-b761a131c2fe
  43. function onDragFile(filepath) {
  44. }
  45. function PUI(cb) {
  46. if(pui){cb();}
  47. }
  48. /*Usage of BLOCK_EVENT
  49. BLOCK_EVENT(()=>{
  50. ui.[name].[var] = ...;
  51. });
  52. */
  53. function BLOCK_EVENT(cb) {
  54. ui.block_event = true;
  55. cb();
  56. ui.block_event = false;
  57. }
  58. //////////////////////////////////////////////////////////////////////////
  59. // template codes for cw callback js.
  60. function CW_DeclareVariable(name, setter, getter) {
  61. if(typeof(__DeclareVariable) === 'function') {
  62. __DeclareVariable(name, setter, getter);
  63. }
  64. }
  65. function CW_DeclareOuterVariable(name) {
  66. if(typeof(__DeclareOuterVariable) === 'function') {
  67. __DeclareOuterVariable(name);
  68. }
  69. }