The INTViewer desktop is loaded at startup. It contains menu items, toolbar and windows. Notifications are displayed on the bottom right of the desktop.
To get the dimensions of the desktop area not used by the top components (highlighted in red in the snapshot below), use:
manager = WindowManager()
width = manager.getDesktopWidth()
height= manager.getDesktopHeight()
You can display a notification on the bottom right of the screen using NotificationDisplayer.
Example:
displayer = NotificationDisplayer()
displayer.showMessageNotification("The Java Runtime currently in use is not supported", "Warning", True)
You can show a message in the status bar on the bottom left of the screen using WindowManager.
Example:
manager = WindowManager()
manager.showMessage("This is my message")