eXept Software AG Logo

Smalltalk/X Webserver

Documentation of class 'DisplayRootView':

Home

everywhere
www.exept.de
for:
[back]

Class: DisplayRootView


Inheritance:

   Object
   |
   +--GraphicsContext
      |
      +--DeviceGraphicsContext
         |
         +--GraphicsMedium
            |
            +--DisplaySurface
               |
               +--DisplayRootView

Package:
stx:libview
Category:
Views-Special
Version:
rev: 1.36 date: 2008/07/09 12:44:23
user: fm
file: DisplayRootView.st directory: libview
module: stx stc-classLibrary: libview
Author:
Claus Gittinger

Description:


this class describes the rootWindow (which is the background window or
desktop and can be used for drawing outside of Views 
i.e. for dragging between Views).

For historic and compatibility reasons, there is a global variable 
called 'RootView', which is bound to the default displays ('Display')
rootview. We recommend, not to access this variable, instead, get a
displays rootView via the #rootView message (sent to the device).
Otherwise, your application will not work in a multiScreen environment.

Instances of myself (i.e. these rootViews) are light-weight views; 
they do not support events, models etc.
They are pure drawing canvases and should be only used for special
applications (i.e. dragging). 
There may be display systems in which rootViews are not
supported/allowed implemented. So be VERY careful when using them.

Be aware, that the rootView is not always visible - some
windowManagers install another (pseudoRoot), into which icons and
windowManager menus are drawn. If that is the case, your paining
into the rootView may not be visible, unless you set the #noClipByChildren
option (see below).
Also, it is not guaranteed, that all devices support drawing in the
root window - especially if the device is a simulated one, such as
a remote webBrowser ...
In general, you should never use the rootView for normal applications.

To draw in the (Displays) root window:

    |rootView|

    rootView := Screen current rootView.
    rootView paint:(Color red).
    rootView fillRectangleX:10 y:10 width:100 height:100.

of course, all stuff from View and its superclasses can be used:

    |rootView|

    rootView := Screen current rootView.
    rootView paint:(Color red).
    rootView noClipByChildren.
    rootView fillRectangleX:10 y:10 width:100 height:100.


Class protocol:

instance creation
o  onDevice: aDisplay
since there is only one RootView - catch new and return
the one and only rootView.


Instance protocol:

accessing
o  application

o  model

o  name
return my name - always 'RootWindow'

o  subViews
return the collection of subviews - none here

o  uuid
return my uuid - always the same here.
TODO: think what happens with multiple screens...

destroying
o  destroy
catch destroy - some windowmanagers get confused if
we destroy the rootWindow if its a virtual root window

dummy
o  redrawX: x y: y width: width height: height
ignored

initialization & release
o  initialize

o  reinitialize
reinit after snapin

queries
o  canDropObjects: aCollectionOfDropObjects
return true, if aCollectionOfDropObjects can be
dropped in the receiver.
False is returned here, since nothing can be dropped on the desktop.
(for now - actually some systems do allow dropping things on the desktop
and this query should be forwarded to my display device)

o  isRootView
return true, since yes, I am a rootview

o  isWindowManagerRunning
answer true, if a window manager is currently running.
This is done by performing an action (enabling button events of
root window), which will fail if a window manager is running.



ST/X 6.1.1; WebServer 1.620 at exept:8081; Mon, 21 May 2012 16:09:43 GMT