Codebase list ruby-fxruby / 9d9a764c-8573-45e2-a4b0-a5e74452a7a7/upstream rdoc-sources / FXMDIButton.rb
9d9a764c-8573-45e2-a4b0-a5e74452a7a7/upstream

Tree @9d9a764c-8573-45e2-a4b0-a5e74452a7a7/upstream (Download .tar.gz)

FXMDIButton.rb @9d9a764c-8573-45e2-a4b0-a5e74452a7a7/upstreamraw · history · blame

module Fox
  #
  # MDI Delete button
  #
  class FXMDIDeleteButton < FXButton
    #
    # Constructor
    #
    def initialize(p, target=nil, selector=0, opts=FRAME_RAISED, x=0, y=0, width=0, height=0) # :yields: theMDIDeleteButton
    end
  end

  #
  # MDI Restore button
  #
  class FXMDIRestoreButton < FXButton
    #
    # Constructor
    #
    def initialize(p, target=nil, selector=0, opts=FRAME_RAISED, x=0, y=0, width=0, height=0) # :yields: theMDIRestoreButton
    end
  end

  #
  # MDI Maximize button
  #
  class FXMDIMaximizeButton < FXButton
    #
    # Constructor
    #
    def initialize(p, target=nil, selector=0, opts=FRAME_RAISED, x=0, y=0, width=0, height=0) # :yields: theMDIMaximizeButton
    end
  end

  #
  # MDI Minimize button
  #
  class FXMDIMinimizeButton < FXButton
    #
    # Constructor
    #
    def initialize(p, target=nil, selector=0, opts=FRAME_RAISED, x=0, y=0, width=0, height=0) # :yields: theMDIMinimizeButton
    end
  end

  #
  # MDI Window button
  #
  class FXMDIWindowButton < FXMenuButton
    #
    # Constructor
    #
    def initialize(p, pup, target=nil, selector=0, opts=0, x=0, y=0, width=0, height=0) # :yields: theMDIWindowButton
    end
  end

  #
  # MDI Window Menu
  #
  class FXMDIMenu < FXMenuPane
    #
    # Construct MDI menu
    #
    def initialize(owner, target=nil); end
  end
end