Codebase list ruby-fxruby / e0d51cbb-e718-4249-9d88-9ac77d2a88f9/upstream/1.6.45+git20230102.1.821f5a9 rdoc-sources / FXMDIButton.rb
e0d51cbb-e718-4249-9d88-9ac77d2a88f9/upstream/1.6.45+git20230102.1.821f5a9

Tree @e0d51cbb-e718-4249-9d88-9ac77d2a88f9/upstream/1.6.45+git20230102.1.821f5a9 (Download .tar.gz)

FXMDIButton.rb @e0d51cbb-e718-4249-9d88-9ac77d2a88f9/upstream/1.6.45+git20230102.1.821f5a9raw · 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