diff --git a/doc/JSEUIWindow.html b/doc/JSEUIWindow.html new file mode 100644 index 0000000..fa21c4a --- /dev/null +++ b/doc/JSEUIWindow.html @@ -0,0 +1,1876 @@ + + +
+ + +JSEUIWindow class represents the basic building block for user interface components. A JSEUIWindow occupies a rectangular area on the screen and is responsible for drawing and event handling. JSEUIWindow is the base class for all window-like widgets, which includes window form, alert.etc. They are used to create UI container for buttons, text fields, etc.
+Window() >Window() is the constructor of the Window class, which creates a new instance of window object. The default visibility of the new window object is set to False.
+maximize()
+++Maximize the window
+
minimize()
+++Minimize the window
+
alert()
+++Promopt alert over current window
+
addMenu()
+++Add menu for current window
+
width
+++Get/set the width of the window
+
height
+++Get/set the height of the window
+
visible
+++Get/set the visibility of the window
+
Default: False
title
+++Get/set the title of the window
+
maximizeButton
+++Get/set maximize button for the window
+
minimizeButton
+++Get/set minimize button for the window
+
miniWidth
+++Get/set minimum width of the window
+
maxWidth
+++Get/set maxmum width of the window
+
miniHeight
+++Get/set minimum height of the window
+
miniHeight
+++Get/set minimum height of the window
+
This simple calculator applicaiton is implemetned using JavaScriptExecutable library. It utilizes grid layout in an window object. Muiltiple views were added in to the window, like Button, TextView.
The window is resizable with menus which is able to alter the setting of the calculator.
Figure 1 - Simple calculator
To view source code, please visit our github. All copy rights reserved.
+
+