Sha256: e16d2d2945caaa62d77bf539921bdecb5538b1ef1b838b9bb44319769c75983f

Contents?: true

Size: 1.09 KB

Versions: 6

Compression:

Stored size: 1.09 KB

Contents

module Fox
  #
  # Popup window
  #
  # === Popup internal orientation
  #
  # +POPUP_VERTICAL+::          Vertical orientation
  # +POPUP_HORIZONTAL+::        Horizontal orientation
  # +POPUP_SHRINKWRAP+::        Shrinkwrap to content
  #
  class FXPopup < FXShell

    # Frame style [Integer]
    attr_accessor :frameStyle

    # Border width [Integer]
    attr_reader :borderWidth

    # Highlight color [FXColor]
    attr_accessor :hiliteColor

    # Shadow color [FXColor]
    attr_accessor :shadowColor

    # Border color [FXColor]
    attr_accessor :borderColor

    # Base color [FXColor]
    attr_accessor :baseColor

    # Current grab owner [FXWindow]
    attr_reader :grabOwner

    # Popup orientation [Integer]
    attr_accessor :orientation

    # Shrinkwrap mode [Boolean]
    attr_accessor :shrinkWrap

    #
    # Construct popup pane
    #
    def initialize(owner, opts=POPUP_VERTICAL|FRAME_RAISED|FRAME_THICK, x=0, y=0, width=0, height=0) # :yields: thePopup
    end

    # Pop it up
    def popup(grabto, x, y, width=0, height=0); end

    # Pop it down
    def popdown(); end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
fxruby-1.6.22-x86-mingw32 rdoc-sources/FXPopup.rb
fxruby-1.6.22 rdoc-sources/FXPopup.rb
fxruby-1.6.22.pre4-x86-mingw32 rdoc-sources/FXPopup.rb
fxruby-1.6.22.pre4 rdoc-sources/FXPopup.rb
fxruby-1.6.22.pre3-x86-mingw32 rdoc-sources/FXPopup.rb
fxruby-1.6.22.pre3 rdoc-sources/FXPopup.rb