Class: Fox::FXShutterItem
- Inherits:
-
FXVerticalFrame
- Object
- FXObject
- FXId
- FXDrawable
- FXWindow
- FXComposite
- FXPacker
- FXVerticalFrame
- Fox::FXShutterItem
- Defined in:
- rdoc-sources/FXShutter.rb
Overview
A Shutter Item is a panel which is embedded inside a Shutter Widget. It can contain other user interface widgets which can be added under the content widget. The content widget is itself embedded in a scroll window to allow unlimited room for all the contents.
Message identifiers
ID_SHUTTERITEM_BUTTON
-
x
Instance Attribute Summary collapse
-
#button ⇒ Object
readonly
The button for this shutter item FXButton.
-
#content ⇒ Object
readonly
The contents for this shutter item FXVerticalFrame.
-
#helpText ⇒ Object
Status line help text for this shutter item [String].
-
#tipText ⇒ Object
Tool tip message for this shutter item [String].
Attributes inherited from FXPacker
#baseColor, #borderColor, #borderWidth, #frameStyle, #hSpacing, #hiliteColor, #packingHints, #padBottom, #padLeft, #padRight, #padTop, #shadowColor, #vSpacing
Attributes inherited from FXWindow
#accelTable, #backColor, #defaultCursor, #dragCursor, #first, #focus, #key, #last, #layoutHints, #next, #numChildren, #owner, #parent, #prev, #root, #selector, #shell, #target, #x, #y
Attributes inherited from FXDrawable
Attributes inherited from FXId
Instance Method Summary collapse
-
#initialize(p, text = "", icon = nil, opts = 0, x = 0, y = 0, width = 0, height = 0, padLeft = DEFAULT_SPACING, padRight = DEFAULT_SPACING, padTop = DEFAULT_SPACING, padBottom = DEFAULT_SPACING, hSpacing = DEFAULT_SPACING, vSpacing = DEFAULT_SPACING) ⇒ FXShutterItem
constructor
Return an initialized FXShutterItem instance.
Methods inherited from FXComposite
#maxChildHeight, #maxChildWidth
Methods inherited from FXWindow
#acceptDrop, #acquireClipboard, #acquireSelection, #active?, #addHotKey, #after?, after?, #before?, before?, #beginDrag, #canFocus?, #changeFocus, #childAtIndex, #childOf?, #children, #clearDragRectangle, #clearShape, colorType, colorTypeName, commonAncestor, #composeContext, #composite?, #contains?, #containsChild?, #create, #createComposeContext, #cursorPosition, #default?, #defaultHeight, #defaultWidth, deleteType, deleteTypeName, #destroy, #destroyComposeContext, #detach, #didAccept, #disable, #doesSaveUnder?, #dragging?, #dropDisable, #dropEnable, #dropEnabled?, #dropFinished, #dropTarget?, #each_child, #each_child_recursive, #enable, #enabled?, #endDrag, #forceRefresh, #getChildAt, #getDNDData, #getHeightForWidth, #getWidthForHeight, #grab, #grabKeyboard, #grabbed?, #grabbedKeyboard?, #handleDrag, #hasClipboard?, #hasFocus?, #hasSelection?, #height, #height=, #hide, imageType, #inFocusChain?, #indexOfChild, #initial?, #inquireDNDAction, #inquireDNDTypes, #killFocus, #layout, #linkAfter, #linkBefore, #lower, #move, octetType, octetTypeName, #offeredDNDType?, #position, #raiseWindow, #recalc, #releaseClipboard, #releaseSelection, #remHotKey, #removeChild, #repaint, #reparent, #resize, #scroll, #setCursorPosition, #setDNDData, #setDefault, #setDragRectangle, #setFocus, #setInitial, #setShape, #shell?, #show, #shown?, stringType, textType, textTypeName, #tr, #translateCoordinatesFrom, #translateCoordinatesTo, #underCursor?, #ungrab, #ungrabKeyboard, #update, urilistType, urilistTypeName, utf16Type, utf16TypeName, utf8Type, utf8TypeName, #visible=, #width, #width=
Methods included from Responder2
Methods inherited from FXDrawable
Methods inherited from FXId
#create, #created?, #destroy, #detach, #runOnUiThread
Methods inherited from FXObject
#bind, #handle, #load, #save, subclasses
Constructor Details
#initialize(p, text = "", icon = nil, opts = 0, x = 0, y = 0, width = 0, height = 0, padLeft = DEFAULT_SPACING, padRight = DEFAULT_SPACING, padTop = DEFAULT_SPACING, padBottom = DEFAULT_SPACING, hSpacing = DEFAULT_SPACING, vSpacing = DEFAULT_SPACING) ⇒ FXShutterItem
Return an initialized FXShutterItem instance.
Parameters:
p
-
the parent shutter for this shutter item Fox::FXShutter
text
-
the text, if any [String]
icon
-
the icon, if any Fox::FXIcon
opts
-
options [Integer]
x
-
initial x-position, when the
LAYOUT_FIX_X
layout hint is in effect [Integer] y
-
initial y-position, when the
LAYOUT_FIX_Y
layout hint is in effect [Integer] width
-
initial width, when the
LAYOUT_FIX_WIDTH
layout hint is in effect [Integer] height
-
initial height, when the
LAYOUT_FIX_HEIGHT
layout hint is in effect [Integer] padLeft
-
internal padding on the left side, in pixels [Integer]
padRight
-
internal padding on the right side, in pixels [Integer]
padTop
-
internal padding on the top side, in pixels [Integer]
padBottom
-
internal padding on the bottom side, in pixels [Integer]
hSpacing
-
horizontal spacing between widgets, in pixels [Integer]
vSpacing
-
vertical spacing between widgets, in pixels [Integer]
47 48 |
# File 'rdoc-sources/FXShutter.rb', line 47 def initialize(p, text="", icon=nil, opts=0, x=0, y=0, width=0, height=0, padLeft=DEFAULT_SPACING, padRight=DEFAULT_SPACING, padTop=DEFAULT_SPACING, padBottom=DEFAULT_SPACING, hSpacing=DEFAULT_SPACING, vSpacing=DEFAULT_SPACING) # :yields: theShutterItem end |
Instance Attribute Details
#button ⇒ Object (readonly)
The button for this shutter item Fox::FXButton
16 17 18 |
# File 'rdoc-sources/FXShutter.rb', line 16 def @button end |
#content ⇒ Object (readonly)
The contents for this shutter item Fox::FXVerticalFrame
19 20 21 |
# File 'rdoc-sources/FXShutter.rb', line 19 def content @content end |
#helpText ⇒ Object
Status line help text for this shutter item [String]
22 23 24 |
# File 'rdoc-sources/FXShutter.rb', line 22 def helpText @helpText end |
#tipText ⇒ Object
Tool tip message for this shutter item [String]
25 26 27 |
# File 'rdoc-sources/FXShutter.rb', line 25 def tipText @tipText end |