Changes between Version 7 and Version 8 of widgets


Ignore:
Timestamp:
11/29/2010 11:40:16 AM (13 years ago)
Author:
marcel.taeumel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • widgets

    v7 v8  
    11[[PageOutline(1-2)]]
    22
     3= Widgets =
     4
    35[[Image(widgetsbanner.PNG, nolink)]]
    4 
    5 = Introduction =
    66
    77Adds nice looking Morphic controls, e.g., lists, dropdown lists, push buttons, check boxes. It uses the [wiki:signals] mechanism for callbacks.
     
    9393== Containers & Spacers ==
    9494
     95'''Common Properties'''
     96|| '''Selector'''  || '''Type''' || '''Description''' ||
     97|| `color` || Color || background color ||
     98|| `borderWidth`  || Integer || the width of the border if not transparent
     99|| `borderStyle2` || Symbol || `#simple` (uses `borderColor`), `#inset`, `#raised` ||
     100|| `borderColor` || Color || border color ||
     101
     102'''Button Group'''
     103
     104[[Image(buttongroup2.png, nolink, title="Three autoexclusive check-boxes in a container.")]]
     105
     106This container is for ''buttons only''. For every new button, it automatically enables `autoExclusive` and `checkable`, so
     107that only one button can be checked at a time.
     108
     109'''Spacer'''
     110|| '''Selector'''  || '''Type''' || '''Description''' ||
     111|| `orientation` || Symbol || `#horizontal`, `#vertical` ||
     112
     113[[Image(spacer.png, nolink, title="A spacer widget is only visible in the designer.")]]
     114
     115A spacer is used to manually separate widgets from each other. The designer draws a thin blue line according to the orientation.
     116
     117
    95118== Input Widgets ==
    96119