Sha256: 62428c8e9cb2bcad6cf8be3313037ab51304a75cc75610a93641c60e0fdb9355

Contents?: true

Size: 1.51 KB

Versions: 94

Compression:

Stored size: 1.51 KB

Contents

module Fox
  #
  # The Frame widget provides borders around some contents. Borders may be raised, sunken,
  # thick, ridged or etched.  They can also be turned off completely.
  # In addition, a certain amount of padding may be specified between the contents of
  # the widget and the borders.  The contents may be justified inside the widget using the
  # justification options.
  # The Frame widget is sometimes used by itself as a place holder, but most often is used
  # as a convenient base class for simple controls.
  #
  # === Constants
  #
  # +DEFAULT_PAD+::   Default padding
  #
  class FXFrame < FXWindow

    # Frame style [Integer]
    attr_accessor :frameStyle

    # Border width, in pixels [Integer]
    attr_reader :borderWidth

    # Top interior padding, in pixels [Integer]
    attr_accessor :padTop

    # Bottom interior padding, in pixels [Integer]
    attr_accessor :padBottom

    # Left interior padding, in pixels [Integer]
    attr_accessor :padLeft

    # Right interior padding, in pixels [Integer]
    attr_accessor :padRight

    # Highlight color {FXColor}
    attr_accessor :hiliteColor

    # Shadow color {FXColor}
    attr_accessor :shadowColor

    # Border color {FXColor}
    attr_accessor :borderColor

    # Base GUI color {FXColor}
    attr_accessor :baseColor

    #
    # Construct frame window.
    #
    def initialize(parent, opts=FRAME_NORMAL, x=0, y=0, width=0, height=0, padLeft=DEFAULT_PAD, padRight=DEFAULT_PAD, padTop=DEFAULT_PAD, padBottom=DEFAULT_PAD) # :yields: theFrame
    end
  end
end

Version data entries

94 entries across 94 versions & 1 rubygems

Version Path
fxruby-1.6.48 rdoc-sources/FXFrame.rb
fxruby-1.6.48-x64-mingw32 rdoc-sources/FXFrame.rb
fxruby-1.6.48-x64-mingw-ucrt rdoc-sources/FXFrame.rb
fxruby-1.6.48-x86-mingw32 rdoc-sources/FXFrame.rb
fxruby-1.6.47 rdoc-sources/FXFrame.rb
fxruby-1.6.47-x64-mingw-ucrt rdoc-sources/FXFrame.rb
fxruby-1.6.47-x64-mingw32 rdoc-sources/FXFrame.rb
fxruby-1.6.47-x86-mingw32 rdoc-sources/FXFrame.rb
fxruby-1.6.46 rdoc-sources/FXFrame.rb
fxruby-1.6.46-x64-mingw32 rdoc-sources/FXFrame.rb
fxruby-1.6.46-x64-mingw-ucrt rdoc-sources/FXFrame.rb
fxruby-1.6.46-x86-mingw32 rdoc-sources/FXFrame.rb
fxruby-1.6.45 rdoc-sources/FXFrame.rb
fxruby-1.6.45-x64-mingw32 rdoc-sources/FXFrame.rb
fxruby-1.6.45-x64-mingw-ucrt rdoc-sources/FXFrame.rb
fxruby-1.6.45-x86-mingw32 rdoc-sources/FXFrame.rb
fxruby-1.6.44 rdoc-sources/FXFrame.rb
fxruby-1.6.44-x64-mingw32 rdoc-sources/FXFrame.rb
fxruby-1.6.44-x86-mingw32 rdoc-sources/FXFrame.rb
fxruby-1.6.43 rdoc-sources/FXFrame.rb