eXept Software AG Logo

Smalltalk/X Webserver

Documentation of class 'ColorBulletIndicator':

Home

Documentation
www.exept.de
Everywhere
for:
[back]

Class: ColorBulletIndicator


Inheritance:

   Object
   |
   +--GraphicsMedium
      |
      +--DisplaySurface
         |
         +--SimpleView
            |
            +--View
               |
               +--ImageView
                  |
                  +--ColorBulletIndicator

Package:
stx:libwidg3
Category:
Views-Misc
Version:
rev: 1.14 date: 2022/02/17 10:26:29
user: cg
file: ColorBulletIndicator.st directory: libwidg3
module: stx stc-classLibrary: libwidg3

Description:


Shows a colored bullet (like a led lamp).
Xlates symbolic image names like #red/#green/#blue into a corresponding
bullet image.



[instance variables:]

[class variables:]

copyright

COPYRIGHT (c) 1998 by eXept Software AG All Rights Reserved This software is furnished under a license and may be used only in accordance with the terms of that license and with the inclusion of the above copyright notice. This software may not be provided or otherwise made available to, or used by, any other person. No title to or ownership of the software is hereby transferred.

Class protocol:

class initialization
o  initializeSharedImages
self initializeSharedImages


Instance protocol:

accessing
o  imagesAt: aSymbol put: anImage
define the image to be shown as per symbol

o  model: aModel
set the model, which is supposed to provide the boxes value.
If a listMessage was defined, it is also responsible for providing
the list

change & update
o  update: something with: aParameter from: changedObject

initialization
o  fetchDeviceResources
fetch device colors, to avoid reallocation at redraw time

o  initialize

menu
o  middleButtonMenu

private
o  getStateFromModel

queries
o  computePreferredExtent
(comment from inherited method)
return my computed preferred extent - this is the minimum size I would like to have.
If there are any components, a rectangle enclosing them
is returned. Otherwise, the actual extent is returned.


Examples:


    |top aV model|

    model := #red asValue.

    top := StandardSystemView new.
    top extent:100@100.
    aV := ColorBulletIndicator origin:0@0 in:top.
    aV model:model.

    top openAndWaitUntilVisible.
    [top isOpen] whileTrue:[
        Delay waitForSeconds:1.
        model value:#yellow.
        Delay waitForSeconds:1.
        model value:#green.
        Delay waitForSeconds:1.
        model value:#red.
    ].    


ST/X 7.7.0.0; WebServer 1.702 at 20f6060372b9.unknown:8081; Mon, 18 Nov 2024 06:50:07 GMT