EZPopUpMenu:
Filter:
Classes | GUI > EZ-GUI

EZPopUpMenu : EZLists : EZGui : Object

A wrapper class for a label plus a popUpMenu with per item actions

Description

EZPopUpMenu is wrapper class which creates an (optional) label and a popUpMenu. It includes per item actions as well as a global action which are both evaluated upon selection of an item. Convenience methods for inserting and deleting menu items are also included . If the parent is nil, then EZPopUpMenu will create its own window.See EZGui and EZLists for all of the options.

Some Important Issues Regarding EZPopUpMenu

The convenience methods for EZPopUpMenu require that the items array is an array of associations of labels and functions, not like in PopUpMenu, where items is simply an array of strings. If label is nil, then no staticText is created.

Class Methods

EZPopUpMenu.new(parentView, bounds, label, items, globalAction, initVal: 0, initAction: false, labelWidth, labelHeight: 20, layout, gap, margin)

From superclass: EZLists

Arguments:

parentView

The parent view or window. If the parent is nil, then EZPopUpMenu will create its own Window, and place it conveniently on the screen if the bounds are a Point. If the bounds are a Rect, then the Rect determines the window bounds.

bounds

An instance of Rect or Point. Default value is 160@22.

label

The label. Default value is nil. If nil, then no StaticText is created.

items

Default value is nil. An Array of Associations ['label' -> { arg menuObj; value }, ]. Or and Array Symbols (if you are only using globalAction).

globalAction

A global function to be performed in addition to the item functions { arg menuObj; value }.

initVal

Initial value of the menu, i.e. the index selected. Default value is 0.

initAction

An instance of Boolean. Performs the action at initVal on creation of the menu, plus the globalAction. Default value is false.

labelWidth

Default value is 80.

labelHeight

Default value is 20. Not used if layout is \horz.

layout

\vert or \horz. default is \horz.

gap

A Point. By default, the view tries to get its parent's gap, otherwise it defaults to 2@2. Setting it overrides these.

margin

A Point. This will inset the bounds occupied by the subviews of view.

Discussion:

Inherited class methods

Instance Methods

Changing Appearance

.setColors(stringBackground, stringColor, menuBackground, menuStringColor, background)

Arguments:

stringBackground

An instance of Color. The background of the label and unit views.

stringColor

An instance of Color. The stringColor of the label and unit views.

menuBackground

An instance of Color. The background of the menu.

menuStringColor

An instance of Color. The stringColor of the menu.

background

An instance of Color. The background of the list view.

.font = font

From superclass: EZGui

Set the Font used by all the views.

Arguments:

font

An instance of Font.

Inherited instance methods

Undocumented instance methods

.initViews(parentView, bounds, label, labelWidth, labelHeight, arglayout)

.menu

Examples