mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-14 13:41:05 +00:00
Update gtkserver.js
This commit is contained in:
parent
d62a00c137
commit
5e412918c3
|
@ -9,7 +9,8 @@ var binPath = "bin\\gtk-server.exe";
|
||||||
var GTKElements = [];
|
var GTKElements = [];
|
||||||
|
|
||||||
// Common (Element)
|
// Common (Element)
|
||||||
var GTKElement = function(elementType) {
|
var GTKElement = function() {
|
||||||
|
this.Type = "GTKElement";
|
||||||
this.Width = 0;
|
this.Width = 0;
|
||||||
this.Height = 0;
|
this.Height = 0;
|
||||||
|
|
||||||
|
@ -56,7 +57,7 @@ var Table = function() {
|
||||||
|
|
||||||
this.Type = "Table";
|
this.Type = "Table";
|
||||||
this.attach = function(element, left, right, top, buttom) {
|
this.attach = function(element, left, right, top, buttom) {
|
||||||
// TODO: Table.Attach()
|
// TODO: Table.attach()
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
Table.prototype = new GTKElement();
|
Table.prototype = new GTKElement();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user