diff options
Diffstat (limited to 'js/Events')
-rw-r--r-- | js/Events/ANDBLK.js | 4 | ||||
-rw-r--r-- | js/Events/ANDLOG_f.js | 4 | ||||
-rw-r--r-- | js/Events/CLKSOMV_f.js | 4 | ||||
-rw-r--r-- | js/Events/CLKSOM_f.js | 4 | ||||
-rw-r--r-- | js/Events/CLKSPLIT_f.js | 4 | ||||
-rw-r--r-- | js/Events/END_c.js | 4 | ||||
-rw-r--r-- | js/Events/EVTDLY_c.js | 4 | ||||
-rw-r--r-- | js/Events/EVTDLY_f.js | 4 | ||||
-rw-r--r-- | js/Events/EVTGEN_f.js | 4 | ||||
-rw-r--r-- | js/Events/EVTVARDLY.js | 4 | ||||
-rw-r--r-- | js/Events/HALT_f.js | 4 | ||||
-rw-r--r-- | js/Events/IFTHEL_f.js | 4 | ||||
-rw-r--r-- | js/Events/MCLOCK_f.js | 4 | ||||
-rw-r--r-- | js/Events/MFCLCK_f.js | 4 | ||||
-rw-r--r-- | js/Events/M_freq.js | 4 | ||||
-rw-r--r-- | js/Events/VirtualCLK0.js | 4 | ||||
-rw-r--r-- | js/Events/freq_div.js | 4 |
17 files changed, 68 insertions, 0 deletions
diff --git a/js/Events/ANDBLK.js b/js/Events/ANDBLK.js index a81d87d4..0c205368 100644 --- a/js/Events/ANDBLK.js +++ b/js/Events/ANDBLK.js @@ -76,4 +76,8 @@ function ANDBLK() { ANDBLK.prototype.set = function ANDBLK() { return new BasicBlock(this.x); } + ANDBLK.prototype.get_popup_title = function ANDBLK() { + var set_param_popup_title = "Set parameters"; + return set_param_popup_title; + } } diff --git a/js/Events/ANDLOG_f.js b/js/Events/ANDLOG_f.js index 3aeaa30d..8b6e9a76 100644 --- a/js/Events/ANDLOG_f.js +++ b/js/Events/ANDLOG_f.js @@ -21,4 +21,8 @@ function ANDLOG_f() { ANDLOG_f.prototype.set = function ANDLOG_f() { return new BasicBlock(this.x); } + ANDLOG_f.prototype.get_popup_title = function ANDLOG_f() { + var set_param_popup_title = "Set parameters"; + return set_param_popup_title; + } } diff --git a/js/Events/CLKSOMV_f.js b/js/Events/CLKSOMV_f.js index a2ddd4dc..3078020f 100644 --- a/js/Events/CLKSOMV_f.js +++ b/js/Events/CLKSOMV_f.js @@ -21,4 +21,8 @@ function CLKSOMV_f() { CLKSOMV_f.prototype.set = function CLKSOMV_f() { return new RoundBlock(this.x); } + CLKSOMV_f.prototype.get_popup_title = function CLKSOMV_f() { + var set_param_popup_title = "Set parameters"; + return set_param_popup_title; + } } diff --git a/js/Events/CLKSOM_f.js b/js/Events/CLKSOM_f.js index 1b67fd78..7b8c17e6 100644 --- a/js/Events/CLKSOM_f.js +++ b/js/Events/CLKSOM_f.js @@ -21,4 +21,8 @@ function CLKSOM_f() { CLKSOM_f.prototype.set = function CLKSOM_f() { return new BasicBlock(this.x); } + CLKSOM_f.prototype.get_popup_title = function CLKSOM_f() { + var set_param_popup_title = "Set parameters"; + return set_param_popup_title; + } } diff --git a/js/Events/CLKSPLIT_f.js b/js/Events/CLKSPLIT_f.js index 1f12def7..2a561cd1 100644 --- a/js/Events/CLKSPLIT_f.js +++ b/js/Events/CLKSPLIT_f.js @@ -20,4 +20,8 @@ function CLKSPLIT_f() { CLKSPLIT_f.prototype.set = function CLKSPLIT_f() { return new BasicBlock(this.x); } + CLKSPLIT_f.prototype.get_popup_title = function CLKSPLIT_f() { + var set_param_popup_title = "Set parameters"; + return set_param_popup_title; + } } diff --git a/js/Events/END_c.js b/js/Events/END_c.js index 89478703..cc481538 100644 --- a/js/Events/END_c.js +++ b/js/Events/END_c.js @@ -41,4 +41,8 @@ function END_c() { } return new BasicBlock(this.x); } + END_c.prototype.get_popup_title = function END_c() { + var set_param_popup_title = "Set final simulation time"; + return set_param_popup_title; + } } diff --git a/js/Events/EVTDLY_c.js b/js/Events/EVTDLY_c.js index 26e11e47..1c641eef 100644 --- a/js/Events/EVTDLY_c.js +++ b/js/Events/EVTDLY_c.js @@ -51,4 +51,8 @@ function EVTDLY_c() { } return new BasicBlock(this.x); } + EVTDLY_c.prototype.get_popup_title = function EVTDLY_c() { + var set_param_popup_title = "Set Event Delay block parameters"; + return set_param_popup_title; + } } diff --git a/js/Events/EVTDLY_f.js b/js/Events/EVTDLY_f.js index f355fc65..ea09f020 100644 --- a/js/Events/EVTDLY_f.js +++ b/js/Events/EVTDLY_f.js @@ -51,4 +51,8 @@ function EVTDLY_f() { } return new BasicBlock(this.x); } + EVTDLY_f.prototype.get_popup_title = function EVTDLY_f() { + var set_param_popup_title = "Set Event Delay block parameters"; + return set_param_popup_title; + } } diff --git a/js/Events/EVTGEN_f.js b/js/Events/EVTGEN_f.js index d651c74d..2f3a97d3 100644 --- a/js/Events/EVTGEN_f.js +++ b/js/Events/EVTGEN_f.js @@ -40,4 +40,8 @@ function EVTGEN_f() { } return new BasicBlock(this.x); } + EVTGEN_f.prototype.get_popup_title = function EVTGEN_f() { + var set_param_popup_title = "Set Event time"; + return set_param_popup_title; + } } diff --git a/js/Events/EVTVARDLY.js b/js/Events/EVTVARDLY.js index ab7fa3df..f0f23c0c 100644 --- a/js/Events/EVTVARDLY.js +++ b/js/Events/EVTVARDLY.js @@ -40,4 +40,8 @@ function EVTVARDLY() { } return new BasicBlock(this.x); } + EVTVARDLY.prototype.get_popup_title = function EVTVARDLY() { + var set_param_popup_title = "Set parameter of variable event delay"; + return set_param_popup_title; + } } diff --git a/js/Events/HALT_f.js b/js/Events/HALT_f.js index 30073376..eef88685 100644 --- a/js/Events/HALT_f.js +++ b/js/Events/HALT_f.js @@ -41,4 +41,8 @@ function HALT_f() { } return new BasicBlock(this.x); } + HALT_f.prototype.get_popup_title = function HALT_f() { + var set_param_popup_title = "Set Halt block parameters"; + return set_param_popup_title; + } } diff --git a/js/Events/IFTHEL_f.js b/js/Events/IFTHEL_f.js index 50fe5c53..0715a074 100644 --- a/js/Events/IFTHEL_f.js +++ b/js/Events/IFTHEL_f.js @@ -67,4 +67,8 @@ function IFTHEL_f() { } return new BasicBlock(this.x); } + IFTHEL_f.prototype.get_popup_title = function IFTHEL_f() { + var set_param_popup_title = "Set parameters"; + return set_param_popup_title; + } } diff --git a/js/Events/MCLOCK_f.js b/js/Events/MCLOCK_f.js index dfff693a..c3ad99c5 100644 --- a/js/Events/MCLOCK_f.js +++ b/js/Events/MCLOCK_f.js @@ -91,4 +91,8 @@ function MCLOCK_f() { var typ = newpar; return new BasicBlock(this.x); } + MCLOCK_f.prototype.get_popup_title = function MCLOCK_f() { + var set_param_popup_title = "Set parameters"; + return set_param_popup_title; + } } diff --git a/js/Events/MFCLCK_f.js b/js/Events/MFCLCK_f.js index 26f05135..4c1b09bd 100644 --- a/js/Events/MFCLCK_f.js +++ b/js/Events/MFCLCK_f.js @@ -45,4 +45,8 @@ function MFCLCK_f() { } return new BasicBlock(this.x); } + MFCLCK_f.prototype.get_popup_title = function MFCLCK_f() { + var set_param_popup_title = "Set Multifrequency clock parameters"; + return set_param_popup_title; + } } diff --git a/js/Events/M_freq.js b/js/Events/M_freq.js index f240607e..b9a4c9dd 100644 --- a/js/Events/M_freq.js +++ b/js/Events/M_freq.js @@ -82,4 +82,8 @@ function M_freq() { } return new BasicBlock(this.x); } + M_freq.prototype.get_popup_title = function M_freq() { + var set_param_popup_title = "Set block parameters"; + return set_param_popup_title; + } } diff --git a/js/Events/VirtualCLK0.js b/js/Events/VirtualCLK0.js index ba638920..6808468b 100644 --- a/js/Events/VirtualCLK0.js +++ b/js/Events/VirtualCLK0.js @@ -22,4 +22,8 @@ function VirtualCLK0() { VirtualCLK0.prototype.set = function VirtualCLK0() { return new BasicBlock(this.x); } + VirtualCLK0.prototype.get_popup_title = function VirtualCLK0() { + var set_param_popup_title = "Set parameters"; + return set_param_popup_title; + } } diff --git a/js/Events/freq_div.js b/js/Events/freq_div.js index 66b8a2dd..c082227a 100644 --- a/js/Events/freq_div.js +++ b/js/Events/freq_div.js @@ -200,4 +200,8 @@ function freq_div() { var typ = newpar; return new BasicBlock(this.x); } + freq_div.prototype.get_popup_title = function freq_div() { + var set_param_popup_title = "Set frequency division block parameters"; + return set_param_popup_title; + } } |