Codebase list ruby-fxruby / 42285a56-c0e4-43cb-8673-97d97da4ddc4/upstream/1.6.45+git20221125.1.7d76b2a rdoc-sources / FXDragCorner.rb
42285a56-c0e4-43cb-8673-97d97da4ddc4/upstream/1.6.45+git20221125.1.7d76b2a

Tree @42285a56-c0e4-43cb-8673-97d97da4ddc4/upstream/1.6.45+git20221125.1.7d76b2a (Download .tar.gz)

FXDragCorner.rb @42285a56-c0e4-43cb-8673-97d97da4ddc4/upstream/1.6.45+git20221125.1.7d76b2araw · history · blame

module Fox
  #
  # A drag corner widget may be placed in the bottom right corner
  # so as to allow the window to be resized more easily.
  #
  class FXDragCorner < FXWindow

    # Highlight color {FXColor}
    attr_accessor :hiliteColor

    # Shadow color {FXColor}
    attr_accessor :shadowColor

    # Construct a drag corner
    def initialize(p) # :yields: theDragCorner
    end
  end
end