Codebase list ruby-fxruby / 3d5a4e82-a43d-42a1-b45b-3cdbad1db042/upstream/1.6.45+git20221125.1.7d76b2a rdoc-sources / FXMDIButton.rb
3d5a4e82-a43d-42a1-b45b-3cdbad1db042/upstream/1.6.45+git20221125.1.7d76b2a

Tree @3d5a4e82-a43d-42a1-b45b-3cdbad1db042/upstream/1.6.45+git20221125.1.7d76b2a (Download .tar.gz)

FXMDIButton.rb @3d5a4e82-a43d-42a1-b45b-3cdbad1db042/upstream/1.6.45+git20221125.1.7d76b2araw · 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