Commit 867fdfb6 authored by Christoffer Ackelman's avatar Christoffer Ackelman

Web: Minor cleanup.

parent 121334c9
......@@ -3,6 +3,7 @@
class CliTable {
command: string;
qualifier: Array<string>;
constructor(command, qualifier) {
this.command = command;
this.qualifier = qualifier;
......@@ -32,19 +33,16 @@ enum State {
}
class Cli {
verb: Array;
qualifier: Array;
qualValue: Array;
verb: Array = new Array(CliC.VERB_VECT_SIZE);
qualifier: Array = new Array(30);
qualValue: Array = new Array(30);
status: number;
cliTableIndex: number;
cliQualifierIndex: Array;
cliQualifierIndex: Array = new Array(30);
configuredVerbs: number;
cliTable: Array<CliTable>;
constructor(cliTable) {
this.verb = new Array(CliC.VERB_VECT_SIZE);
this.qualifier = new Array(30);
this.qualValue = new Array(30);
this.cliQualifierIndex = new Array(30);
this.cliTable = cliTable;
}
......
......@@ -130,15 +130,13 @@ class GlowBarChartInfo {
class GlowTableInfo {
columns;
rows;
column_size: Array;
constructor() {
this.column_size = new Array(30);
}
column_size: Array = new Array(30);
}
class PendingData {
func_cb: (id: number, val: number, sts: number = 0, res: number = 0) => void;
data: object;
constructor(func_cb, data) {
this.func_cb = func_cb;
this.data = data;
......@@ -227,6 +225,7 @@ enum Msg {
class Uint8ArrayHelper {
buf: Uint8Array;
idx: number;
constructor(size, tag) {
this.buf = new Uint8Array(size);
this.buf[0] = tag;
......@@ -255,10 +254,10 @@ class Uint8ArrayHelper {
class DataViewHelper {
dv: DataView;
offset: number;
offset = 0;
constructor(data: ArrayBuffer) {
this.dv = new DataView(data);
this.offset = 0;
}
getUint8() {
......@@ -266,11 +265,6 @@ class DataViewHelper {
return this.dv.getUint8(this.offset - 1);
}
getInt16() {
this.offset += 2;
return this.dv.getInt16(this.offset - 2);
}
getUint16() {
this.offset += 2;
return this.dv.getUint8(this.offset - 2);
......@@ -302,32 +296,17 @@ class DataViewHelper {
}
class Gdh {
debug: boolean;
pending: Array;
sub: Array<Sub>;
PORT: number;
ws: WebSocket;
open_cb: () => void;
close_cb: () => void;
return_cb: () => void;
next_id: number;
subscriptionCount: number;
listSent: boolean;
constructor() {
this.debug = false;
this.pending = [];
this.sub = [];
this.PORT = 4448;
this.ws = null;
this.open_cb = null;
this.close_cb = null;
this.return_cb = null;
this.next_id = 1234;
this.subscriptionCount = 1;
this.listSent = false;
}
init() {
debug = false;
pending: Array = [];
sub: Array<Sub> = [];
static PORT = 4448;
ws: WebSocket = null;
return_cb: () => void = null;
next_id = 1234;
subscriptionCount = 1;
listSent = false;
constructor(open_cb, close_cb = null) {
if (window.location.hostname === "") {
this.ws = new WebSocket("ws:127.0.0.1:4448");
} else {
......@@ -336,8 +315,8 @@ class Gdh {
this.ws.binaryType = "arraybuffer";
this.ws.onopen = function (e) {
if (this.gdh.open_cb !== null) {
this.gdh.open_cb();
if (open_cb !== null) {
open_cb();
}
};
......@@ -345,8 +324,8 @@ class Gdh {
if (this.debug) {
console.log("Socket closed");
}
if (this.gdh.close_cb !== null) {
this.gdh.close_cb();
if (close_cb !== null) {
close_cb();
}
};
......
......@@ -122,15 +122,13 @@ enum Event {
class PlowNodeClass {
a: PlowArray;
ctx: PlowCtx;
nc_name: string;
group: number;
node_open: number;
nc_name = "";
group = 0;
node_open = 0;
constructor(ctx) {
this.a = new PlowArray(ctx);
this.ctx = ctx;
this.nc_name = "";
this.group = 0;
this.node_open = 0;
}
draw(g, p, node, highlight) {
......@@ -143,10 +141,10 @@ class PlowNodeClass {
}
class PlowArray {
a: Array<PlowNode>;
a: Array = [];
ctx: PlowCtx;
constructor(ctx) {
this.a = [];
this.ctx = ctx;
}
......@@ -391,56 +389,35 @@ class PlowArray {
class PlowNode {
ctx: PlowCtx;
userdata: object;
x_right: number;
x_left: number;
y_high: number;
y_low: number;
userdata: object = null;
x_right = 0.0;
x_left = 0.0;
y_high = 0.0;
y_low = 0.0;
nc: PlowNodeClass;
pos: Point;
n_name: string;
annotv: Array;
annotsize: Array;
pixmapv: Array;
trace_object: string;
trace_attribute: string;
trace_attr_type: number;
highlight: boolean;
select: boolean;
invert: boolean;
pos = new Point();
n_name = "";
annotv = [];
annotsize = [];
pixmapv = [];
trace_object = "";
trace_attribute = "";
trace_attr_type = 0;
highlight = false;
select = false;
invert = false;
level: number;
node_open: number;
fill_color: number;
p: number;
old_value: number;
first_scan: boolean;
relative_position: number;
node_open = 0;
fill_color = 0;
p = 0;
old_value = 0;
first_scan = true;
relative_position = 0;
constructor(ctx, nc, level) {
this.ctx = ctx;
this.userdata = null;
this.x_right = 0.0;
this.x_left = 0.0;
this.y_high = 0.0;
this.y_low = 0.0;
this.nc = nc;
this.pos = new Point();
this.n_name = "";
this.annotv = [];
this.annotsize = [];
this.pixmapv = [];
this.trace_object = "";
this.trace_attribute = "";
this.trace_attr_type = 0;
this.highlight = false;
this.select = false;
this.invert = false;
this.level = level;
this.node_open = 0;
this.fill_color = 0;
this.p = 0;
this.old_value = 0;
this.first_scan = true;
this.relative_position = 0;
}
set_annotation(number, text) {
......@@ -570,13 +547,14 @@ class PlowNode {
}
class PlowAnnot {
RELATIVE_OFFSET = 1;
static RELATIVE_OFFSET = 1;
ctx: PlowCtx;
p: Point;
draw_type: number;
text_size: number;
annot_type: number;
number: number;
constructor(ctx, x, y, text_size, text_color, annot_type, number) {
this.p = new Point(x, y);
this.draw_type = text_color;
......@@ -646,7 +624,7 @@ class PlowAnnot {
let y = (this.p.y + p0.y) * this.ctx.zoom_factor - tsize / 4;
if ((this.annot_type & RELATIVE_POSITION) !== 0) {
let rel_x = (p0.x + node.relative_position + this.RELATIVE_OFFSET) *
let rel_x = (p0.x + node.relative_position + PlowAnnot.RELATIVE_OFFSET) *
this.ctx.zoom_factor;
if (x < rel_x) {
x = rel_x;
......@@ -674,6 +652,7 @@ class PlowAnnotPixmap {
ctx: PlowCtx;
p: Point;
number: number;
constructor(ctx, x, y, number) {
this.p = new Point(x, y);
this.number = number;
......@@ -729,6 +708,7 @@ class PlowRect {
fill_color: number;
fill: number;
fix_color: number;
constructor(ctx, x, y, width, height, fill_color, border_color, fill, fix_color) {
this.ll = new Point(x, y);
this.ur = new Point(x + width, y + height);
......@@ -817,6 +797,7 @@ class GDraw {
canvas: HTMLCanvasElement;
gctx: CanvasRenderingContext2D;
offset_top: number;
constructor(ctx) {
this.ctx = ctx;
this.canvas = document.querySelector("canvas");
......@@ -826,43 +807,29 @@ class GDraw {
}
class PlowCtx {
gdh: Gdh;
debug: boolean;
nodraw: number;
zoom_factor: number;
base_zoom_factor: number;
offset_x: number;
offset_y: number;
x_right: number;
x_left: number;
y_high: number;
y_low: number;
gdh: Gdh = null;
debug = false;
nodraw = 0;
zoom_factor = 20.0;
base_zoom_factor = 20.0;
offset_x = 0;
offset_y = 0;
x_right = 0.0;
x_left = 0.0;
y_high = 0.0;
y_low = 0.0;
a: PlowArray;
a_nc: PlowArray;
name: string;
name = "Claes context";
gdraw: GDraw;
select_object: PlowNode;
event_cb: (event: object, object: PlowNode, x: number, y: number) => void;
event_object: PlowNode;
select_object: PlowNode = null;
event_cb: (event: object, object: PlowNode, x: number, y: number) => void = null;
event_object: PlowNode = null;
constructor() {
this.gdh = null;
this.debug = false;
this.nodraw = 0;
this.zoom_factor = 20.0;
this.base_zoom_factor = 20.0;
this.offset_x = 0;
this.offset_y = 0;
this.x_right = 0.0;
this.x_left = 0.0;
this.y_high = 0.0;
this.y_low = 0.0;
this.a = new PlowArray(this);
this.a_nc = new PlowArray(this);
this.name = "Claes context";
this.gdraw = new GDraw(this);
this.select_object = null;
this.event_cb = null;
this.event_object = null;
}
draw() {
......
......@@ -159,6 +159,7 @@ enum XttMntMethodsMask {
class PwrtObjid {
vid: number;
oix: number;
constructor(vid, oix) {
this.oix = oix;
this.vid = vid;
......@@ -176,6 +177,7 @@ class PwrtAttrRef {
class CdhrNumber {
value: number;
sts: number;
constructor(value, sts) {
this.value = value;
this.sts = sts;
......@@ -195,9 +197,11 @@ class UserdataCbReturn {
class Point {
x = 0;
y = 0;
constructor() {
}
constructor(x: number, y:number) {
constructor(x: number, y: number) {
this.x = x;
this.y = y;
}
......@@ -208,9 +212,11 @@ class Rect {
y = 0;
width = 0;
height = 0;
constructor() {
}
constructor(x: number, y:number, width: number, height: number) {
constructor(x: number, y: number, width: number, height: number) {
this.x = x;
this.y = y;
this.width = width;
......
<!DOCTYPE html>
<html>
<head>
<head>
<title>Alarm List</title>
<link rel="stylesheet" type="text/css" href="toolbar.css">
</head>
</head>
<body>
<body>
<div class="toolbar" role="toolbar">
<div id="toolitem1" tabindex="0" class="toolbar-item" role="button"><img src="toolbar_ack.png"><img>....</div>
<div id="toolitem2" tabindex="-1" class="toolbar-item" role="button"><img src="toolbar_navigator.png"><img></div>
<div id="toolitem3" tabindex="-1" class="toolbar-item" role="button"><img src="toolbar_plc.png"><img>....</div>
<div id="toolitem4" tabindex="-1" class="toolbar-item" role="button"><img src="toolbar_graph.png"><img></div>
<div id="toolitem5" tabindex="-1" class="toolbar-item" role="button"><img src="toolbar_objectgraph.png"><img></div>
<div id="toolitem6" tabindex="-1" class="toolbar-item" role="button"><img src="toolbar_navigator.png"><img></div>
<div id="toolitem7" tabindex="-1" class="toolbar-item" role="button"><img src="toolbar_plc.png"><img></div>
<div id="toolitem8" tabindex="-1" class="toolbar-item" role="button"><img src="toolbar_history.png"><img></div>
<div id="toolitem9" tabindex="-1" class="toolbar-item" role="button"><img src="toolbar_object.png"><img></div>
<div id="toolitem10" tabindex="-1" class="toolbar-item" role="button"><img src="toolbar_crossref.png"><img></div>
<div id="toolitem11" tabindex="-1" class="toolbar-item" role="button"><img src="toolbar_help.png"><img></div>
<div id="toolitem12" tabindex="-1" class="toolbar-item" role="button"><img src="toolbar_classhelp.png"><img></div>
<div id="toolitem1" tabindex="0" class="toolbar-item" role="button">
<img src="toolbar_ack.png"/>....
</div>
<div id="toolitem2" tabindex="-1" class="toolbar-item" role="button">
<img src="toolbar_navigator.png"/>
</div>
<div id="toolitem3" tabindex="-1" class="toolbar-item" role="button">
<img src="toolbar_plc.png"/>....
</div>
<div id="toolitem4" tabindex="-1" class="toolbar-item" role="button">
<img src="toolbar_graph.png"/>
</div>
<div id="toolitem5" tabindex="-1" class="toolbar-item" role="button">
<img src="toolbar_objectgraph.png"/>
</div>
<div id="toolitem6" tabindex="-1" class="toolbar-item" role="button">
<img src="toolbar_navigator.png"/>
</div>
<div id="toolitem7" tabindex="-1" class="toolbar-item" role="button">
<img src="toolbar_plc.png"/>
</div>
<div id="toolitem8" tabindex="-1" class="toolbar-item" role="button">
<img src="toolbar_history.png"/>
</div>
<div id="toolitem9" tabindex="-1" class="toolbar-item" role="button">
<img src="toolbar_object.png"/>
</div>
<div id="toolitem10" tabindex="-1" class="toolbar-item" role="button">
<img src="toolbar_crossref.png"/>
</div>
<div id="toolitem11" tabindex="-1" class="toolbar-item" role="button">
<img src="toolbar_help.png"/>
</div>
<div id="toolitem12" tabindex="-1" class="toolbar-item" role="button">
<img src="toolbar_classhelp.png"/>
</div>
</div>
<canvas id="flowcanvas" width="1200" height="800"></canvas>
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
......@@ -29,5 +53,5 @@
<script type="text/babel" src="ev.ts"></script>
<hr>
<address><a href="mailto:claes@debian86.ssab.com"></a></address>
</body>
</body>
</html>
......@@ -15,14 +15,12 @@ class Ev {
ncSuccess: PlowNodeClass;
scan_update: boolean;
priv: number;
mhSyncIdx: number;
maxEve: number;
mhSyncIdx = 0;
maxEve = 30;
type: EvType;
timer: number;
constructor() {
this.mhSyncIdx = 0;
this.maxEve = 30;
constructor() {
this.type = this.get_type();
switch (this.type) {
case EvType.EventList:
......@@ -39,9 +37,7 @@ class Ev {
this.ctx.event_cb = this.plow_event;
this.createNodeClasses();
this.ctx.gdh = new Gdh();
this.ctx.gdh.open_cb = this.gdh_init_cb;
this.ctx.gdh.init();
this.ctx.gdh = new Gdh(this.gdh_init_cb);
this.ctx.gdraw.canvas.addEventListener("click", function (event) {
let y = event.pageY - this.ctx.gdraw.offset_top;
......@@ -671,6 +667,7 @@ class Ev {
class EvItemAlarm {
node: PlowNode;
e: MhEvent;
constructor(ev, e, destination, destCode) {
this.e = e;
......
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<head>
<title>Trace</title>
<link rel="stylesheet" type="text/css" href="toolbar.css">
</head>
</head>
<body>
<body>
<div class="toolbar" role="toolbar">
<div id="toolitem1" tabindex="0" class="toolbar-item" role="button"><img src="toolbar_graph.png"><img></div>
<div id="toolitem2" tabindex="-1" class="toolbar-item" role="button"><img src="toolbar_navigator.png"><img></div>
<div id="toolitem3" tabindex="-1" class="toolbar-item" role="button"><img src="toolbar_history.png"><img></div>
<div id="toolitem4" tabindex="-1" class="toolbar-item" role="button"><img src="toolbar_object.png"><img></div>
<div id="toolitem1" tabindex="0" class="toolbar-item" role="button">
<img src="toolbar_graph.png"/>
</div>
<div id="toolitem2" tabindex="-1" class="toolbar-item" role="button">
<img src="toolbar_navigator.png"/>
</div>
<div id="toolitem3" tabindex="-1" class="toolbar-item" role="button">
<img src="toolbar_history.png"/>
</div>
<div id="toolitem4" tabindex="-1" class="toolbar-item" role="button">
<img src="toolbar_object.png"/>
</div>
</div>
<canvas id="flowcanvas" width="1200" height="800"></canvas>
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
......@@ -19,5 +27,5 @@
<script type="text/babel" src="flow.ts"></script>
<hr>
<address><a href="mailto:claes@debian86.ssab.com"></a></address>
</body>
</body>
</html>
This diff is collapsed.
<!DOCTYPE html>
<html>
<head>
<head>
<title>Ge graph</title>
<link rel="stylesheet" type="text/css" href="toolbar.css">
</head>
</head>
<body>
<body>
<canvas id="flowcanvas" width="1200" height="800"></canvas>
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
<script type="text/babel" src="pwr.js"></script>
......@@ -65,5 +65,5 @@
<script type="text/babel" src="ge_appl.ts"></script>
<hr>
<address><a href="mailto:claes@debian86.ssab.com"></a></address>
</body>
</body>
</html>
......@@ -14,6 +14,7 @@ let cliTable = [new CliTable("OPEN",
class Appl {
graph: Graph;
constructor() {
this.graph = new Graph(this);
}
......
......@@ -8319,6 +8319,7 @@ class DynInputFocus extends DynElem {
action(o, e) {
return 1;
}
open(lines, row) {
let i;
for (i = row; i < lines.length; i++) {
......
......@@ -27,9 +27,11 @@ class LocalSub {
ref() {
this.refCount++;
}
unref() {
this.refCount--;
}
getRefCount() {
return this.refCount;
}
......@@ -235,6 +237,7 @@ class Graph {
priv = 0;
timer: number;
frame: GrowFrame;
constructor(appl) {
this.appl = appl;
if (typeof InstallTrigger !== 'undefined') {
......@@ -268,9 +271,7 @@ class Graph {
this.ctx.traceConnect();
this.trace_cyclic();
} else {
this.gdh = new Gdh();
this.gdh.open_cb = this.gdh_init_cb;
this.gdh.init();
this.gdh = new Gdh(this.gdh_init_cb);
}
}
......@@ -303,6 +304,7 @@ class Graph {
this.gdh.getRefObjectInfoAll(this.trace_scan);
}
}
trace_scan(id, sts) {
this.scan_time = this.ctx.scantime;
this.fast_scan_time = this.ctx.fast_scantime;
......@@ -713,9 +715,11 @@ class Graph {
getLdb() {
return this.ldb;
}
getGdh() {
return this.gdh;
}
isAuthorized(access) {
return !!(this.priv & access);
// return appl.isAuthorized( access);
......@@ -769,11 +773,13 @@ class Graph {
this.ctxPush();
}
}
traceDisconnect(o) {
if (o.userdata !== null) {
o.userdata.disconnect(o);
}
}
traceScan(o) {
if (o.userdata !== null) {
let dyn = o.userdata;
......
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<head>
<title>Operator window</title>
<link rel="stylesheet" type="text/css" href="toolbar.css">
<style>
.menu {
float:left;
width:20%;
height:100%;
float: left;
width: 20%;
height: 100%;
}
.main {
float:left;
width:79%;
height:100%;
float: left;
width: 79%;
height: 100%;
}
</style>
</head>
</head>
<body>
<body>
<iframe class="menu" src="opwind_menu.html"></iframe>
<iframe class="main" src="xtt_help_index.html"></iframe>
</body>
</body>
</html>
"use strict";
class OpWindMenu {
priv: number;
user: string;
user_text: Text;
priv = 0;
user = "";
user_text: Text = null;
host: string;
gdh: Gdh;
info: OpwindMenuInfo;
constructor() {
this.priv = 0;
this.user = "";
this.user_text = null;
this.host = window.location.hostname;
if (this.host === "") {
this.host = "localhost";
}
this.gdh = new Gdh();
this.gdh.open_cb = this.gdh_init_cb;
this.gdh.init();
this.gdh = new Gdh(this.gdh_init_cb);
}
is_authorized(access) {
......@@ -46,7 +42,7 @@ class OpWindMenu {
button.type = "button";
button.className = "leftmenu-button";
button.value = text;
button.addEventListener('click', function() {
button.addEventListener('click', function () {
menu.button_cb(button.value);
});
context.appendChild(button);
......
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<head>
<title>Operator Menu</title>
<link rel="stylesheet" type="text/css" href="toolbar.css">
</head>
</head>
<body>
<body>
<div id="opwindmenu" width="120" height="800">
<h1 id="opwind_title"></h1>
<p id="opwind_text"></p>
<hr>
<button id="login_button" type="button" class="leftmenu-button">Login</button>
<div id="login_frame" class="login-frame">
Username<br>
<input id="login_user" name="username" class="login-field" /><br>
Password<br>
<input id="login_passw" name="password" type="password" class="login-field" /><br>
<div id="login_frame" class="login-frame">Username<br>
<input id="login_user" name="username" class="login-field"/><br>Password<br>
<input id="login_passw" name="password" type="password" class="login-field"/><br>
<button id="apply_button" type="button" style="flex-grow:1">Apply</button>
<button id="cancel_button" type="button" style="float:right">Cancel</button><br>
<button id="cancel_button" type="button" style="float:right">Cancel</button>
<br>
<button id="logout_button" type="button" class="leftmenu-button">Logout</button>
</div>
</div>
......@@ -28,5 +27,5 @@
<script type="text/babel" src="opwind.ts"></script>
<hr>
<address><a href="mailto:claes@debian86.ssab.com"></a></address>
</body>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<head>
<title>Xtt</title>
<link rel="stylesheet" type="text/css" href="toolbar.css">
</head>
</head>
<body>
<body>
<div class="toolbar" role="toolbar">
<div id="toolitem1" tabindex="0" class="toolbar-item" role="button"><img src="toolbar_graph.png"><img></div>
<div id="toolitem2" tabindex="-1" class="toolbar-item" role="button"><img src="toolbar_objectgraph.png"><img></div>
<div id="toolitem3" tabindex="-1" class="toolbar-item" role="button"><img src="toolbar_plc.png"><img></div>
<div id="toolitem4" tabindex="-1" class="toolbar-item" role="button"><img src="toolbar_history.png"><img></div>
<div id="toolitem5" tabindex="-1" class="toolbar-item" role="button"><img src="toolbar_object.png"><img></div>
<div id="toolitem6" tabindex="-1" class="toolbar-item" role="button"><img src="toolbar_crossref.png"><img></div>
<div id="toolitem7" tabindex="-1" class="toolbar-item" role="button"><img src="toolbar_help.png"><img></div>
<div id="toolitem8" tabindex="-1" class="toolbar-item" role="button"><img src="toolbar_classhelp.png"><img></div>
<div id="toolitem1" tabindex="0" class="toolbar-item" role="button">
<img src="toolbar_graph.png"/>
</div>
<div id="toolitem2" tabindex="-1" class="toolbar-item" role="button">
<img src="toolbar_objectgraph.png"/>
</div>
<div id="toolitem3" tabindex="-1" class="toolbar-item" role="button">
<img src="toolbar_plc.png"/>
</div>
<div id="toolitem4" tabindex="-1" class="toolbar-item" role="button">
<img src="toolbar_history.png"/>
</div>
<div id="toolitem5" tabindex="-1" class="toolbar-item" role="button">
<img src="toolbar_object.png"/>
</div>
<div id="toolitem6" tabindex="-1" class="toolbar-item" role="button">
<img src="toolbar_crossref.png"/>
</div>
<div id="toolitem7" tabindex="-1" class="toolbar-item" role="button">
<img src="toolbar_help.png"/>
</div>
<div id="toolitem8" tabindex="-1" class="toolbar-item" role="button">
<img src="toolbar_classhelp.png"/>
</div>
</div>
<canvas id="flowcanvas" width="1200" height="800"></canvas>
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
......@@ -25,5 +41,5 @@
<script type="text/babel" src="xtt.ts"></script>
<hr>
<address><a href="mailto:claes@debian86.ssab.com"></a></address>
</body>
</body>
</html>
......@@ -3,6 +3,7 @@
class XttOpenChildrenData {
node: PlowNode;
open_next: PlowNode;
constructor(node, open_next) {
this.node = node;
this.open_next = open_next;
......@@ -10,13 +11,13 @@ class XttOpenChildrenData {
}
class Xtt {
ncObject: PlowNodeClass;
ncObject: PlowNodeClass = null;
scan_update: boolean;
priv: number;
ctx: PlowCtx;
timer: number;
timer = null;
constructor() {
this.ncObject = null;
this.priv = Number(sessionStorage.getItem("pwr_privilege"));
console.log("pwr_privilege", this.priv);
......@@ -25,9 +26,7 @@ class Xtt {
this.ctx.event_cb = this.plow_event;
this.createNodeClasses();
this.ctx.gdh = new Gdh();
this.ctx.gdh.open_cb = this.gdh_init_cb;
this.ctx.gdh.init();
this.ctx.gdh = new Gdh(this.gdh_init_cb);
this.ctx.gdraw.canvas.addEventListener("click", function (event) {
let y = event.pageY - this.ctx.gdraw.offset_top;
......@@ -591,6 +590,7 @@ class XttItemObject {
full_name: string;
has_children: boolean;
node: PlowNode;
constructor(xtt, object_info, destination, destCode) {
this.objid = object_info.objid;
this.cid = object_info.cid;
......@@ -690,6 +690,7 @@ class XttItemAttr {
firstScan: boolean;
old_value: number;
node: PlowNode;
constructor(xtt, info, destination, destCode) {
this.name = info.name;
this.objid = info.objid;
......@@ -807,6 +808,7 @@ class XttItemAttrArray {
size: number;
elements: number;
node: PlowNode;
constructor(xtt, info, destination, destCode) {
this.name = info.name;
this.objid = info.objid;
......@@ -882,6 +884,7 @@ class XttItemAttrObject {
flags: number;
size: number;
node: PlowNode;
constructor(xtt, info, destination, destCode) {
this.name = info.name;
this.classname = info.classname;
......@@ -941,6 +944,7 @@ class XttItemCrr {
objid: PwrtObjid;
type: number;
node: PlowNode;
constructor(xtt, info, destination, destCode) {
this.name = info.name;
this.classname = info.classname;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment