Sha256: 045bf1c09fd3a5e3bd735c7c6e972d3cb7249b1ac686a5aa6f0acb02198910a3

Contents?: true

Size: 1.91 KB

Versions: 43

Compression:

Stored size: 1.91 KB

Contents

module Fox
  #
  # The tab book layout manager arranges pairs of children;
  # the even numbered children (0,2,4,...) are usually tab items,
  # and are placed on the top.  The odd numbered children are
  # usually layout managers, and are placed below; all the odd
  # numbered children are placed on top of each other, similar
  # to the switcher widget.  When the user presses one of the
  # tab items, the tab item is raised above the neighboring tabs,
  # and the corresponding panel is raised to the top.
  # Thus, a tab book can be used to present many GUI controls
  # in a small space by placing several panels on top of each
  # other and using tab items to select the desired panel.
  # When one of the tab items is pressed, the tab book's #setCurrent method
  # is called with _notify+=true. This causes the tab book to send a
  # +SEL_COMMAND+ message to its target.
  #
  class FXTabBook < FXTabBar
    #
    # Return an initialized FXTabBook instance.
    #
    # ==== Parameters:
    #
    # +p+::	the parent window for this tar book [FXComposite]
    # +target+::	the message target, if any, for this tar book [FXObject]
    # +selector+::	the message identifier for this tab book [Integer]
    # +opts+::	tar book options [Integer]
    # +x+::	initial x-position [Integer]
    # +y+::	initial y-position [Integer]
    # +width+::	initial width [Integer]
    # +height+::	initial height [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]
    #
    def initialize(p, target=nil, selector=0, opts=TABBOOK_NORMAL, x=0, y=0, width=0, height=0, padLeft=DEFAULT_SPACING, padRight=DEFAULT_SPACING, padTop=DEFAULT_SPACING, padBottom=DEFAULT_SPACING) # :yields: theTabBook
    end
  end
end

Version data entries

43 entries across 43 versions & 2 rubygems

Version Path
fxruby-1.6.22-x86-mingw32 rdoc-sources/FXTabBook.rb
fxruby-1.6.22 rdoc-sources/FXTabBook.rb
fxruby-1.6.22.pre4-x86-mingw32 rdoc-sources/FXTabBook.rb
fxruby-1.6.22.pre4 rdoc-sources/FXTabBook.rb
fxruby-1.6.22.pre3-x86-mingw32 rdoc-sources/FXTabBook.rb
fxruby-1.6.22.pre3 rdoc-sources/FXTabBook.rb
fxruby-1.6.22.pre2-x86-mingw32 rdoc-sources/FXTabBook.rb
fxruby-1.6.22.pre2 rdoc-sources/FXTabBook.rb
fxrubi-1.6.22.pre1-x86-mingw32 rdoc-sources/FXTabBook.rb
fxrubi-1.6.22.pre1 rdoc-sources/FXTabBook.rb
fxruby-1.6.20-x86-mingw32 rdoc-sources/FXTabBook.rb
fxruby-1.6.20-x86-linux rdoc-sources/FXTabBook.rb
fxruby-1.6.20 rdoc-sources/FXTabBook.rb
fxruby-1.6.20-universal-darwin-10 rdoc-sources/FXTabBook.rb
fxruby-1.6.19-x86-mingw32 rdoc-sources/FXTabBook.rb
fxruby-1.6.14-mswin32 rdoc-sources/FXTabBook.rb
fxruby-1.6.13-mswin32 rdoc-sources/FXTabBook.rb
fxruby-1.6.11 rdoc-sources/FXTabBook.rb
fxruby-1.6.10 rdoc-sources/FXTabBook.rb
fxruby-1.6.12 rdoc-sources/FXTabBook.rb