Class: Fox::FXGroupBox
- Inherits:
-
FXPacker
- Object
- FXObject
- FXId
- FXDrawable
- FXWindow
- FXComposite
- FXPacker
- Fox::FXGroupBox
- Defined in:
- rdoc-sources/FXGroupBox.rb
Overview
An FXGroupBox widget provides a nice raised or sunken border around a group of widgets, providing a visual delineation. Typically, a title is placed over the border to provide some clarification.
Group box options
GROUPBOX_TITLE_LEFT
-
Title is left-justified
GROUPBOX_TITLE_CENTER
-
Title is centered
GROUPBOX_TITLE_RIGHT
-
Title is right-justified
GROUPBOX_NORMAL
-
same as
GROUPBOX_TITLE_LEFT
Instance Attribute Summary collapse
-
#font ⇒ Object
Title font FXFont.
-
#groupBoxStyle ⇒ Object
Group box style [Integer].
-
#text ⇒ Object
Group box title text [String].
-
#textColor ⇒ Object
Title text color FXColor.
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(parent, text, opts = GROUPBOX_NORMAL, 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) ⇒ FXGroupBox
constructor
Construct group box layout manager.
-
#to_s ⇒ Object
Return the group box’s title text.
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(parent, text, opts = GROUPBOX_NORMAL, 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) ⇒ FXGroupBox
Construct group box layout manager
29 30 |
# File 'rdoc-sources/FXGroupBox.rb', line 29 def initialize(parent, text, opts=GROUPBOX_NORMAL, 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: theGroupBox end |
Instance Attribute Details
#font ⇒ Object
Title font Fox::FXFont
23 24 25 |
# File 'rdoc-sources/FXGroupBox.rb', line 23 def font @font end |
#groupBoxStyle ⇒ Object
Group box style [Integer]
20 21 22 |
# File 'rdoc-sources/FXGroupBox.rb', line 20 def groupBoxStyle @groupBoxStyle end |
#text ⇒ Object
Group box title text [String]
17 18 19 |
# File 'rdoc-sources/FXGroupBox.rb', line 17 def text @text end |
#textColor ⇒ Object
Title text color Fox::FXColor
26 27 28 |
# File 'rdoc-sources/FXGroupBox.rb', line 26 def textColor @textColor end |
Instance Method Details
#to_s ⇒ Object
Return the group box’s title text
33 |
# File 'rdoc-sources/FXGroupBox.rb', line 33 def to_s; text; end |