Codebase list ruby-fxruby / 58ea0207-4aab-45e9-bc04-849c8b3df19d/upstream/1.6.45+git20221125.1.7d76b2a rdoc-sources / FXDragCorner.rb
58ea0207-4aab-45e9-bc04-849c8b3df19d/upstream/1.6.45+git20221125.1.7d76b2a

Tree @58ea0207-4aab-45e9-bc04-849c8b3df19d/upstream/1.6.45+git20221125.1.7d76b2a (Download .tar.gz)

FXDragCorner.rb @58ea0207-4aab-45e9-bc04-849c8b3df19d/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