Codebase list ruby-fxruby / e3aeab84-6f99-48f1-9741-8ee1f4db26b1/main rdoc-sources / FXDockHandler.rb
e3aeab84-6f99-48f1-9741-8ee1f4db26b1/main

Tree @e3aeab84-6f99-48f1-9741-8ee1f4db26b1/main (Download .tar.gz)

FXDockHandler.rb @e3aeab84-6f99-48f1-9741-8ee1f4db26b1/mainraw · history · blame

module Fox
  #
  # The dock handler exists as a common base class for tool bar grip
  # and dock title.
  #
  # === Events
  #
  # The following messages are sent by FXDockHandler to its target:
  #
  # +SEL_KEYPRESS+::  sent when a key goes down; the message data is an FXEvent instance.
  # +SEL_KEYRELEASE+::  sent when a key goes up; the message data is an FXEvent instance.
  #
  class FXDockHandler < FXFrame
    # Status line help text [String]
    attr_accessor :helpText

    # Tool tip text [String]
    attr_accessor :tipText

    #
    # Return an initialized FXDockHandler instance.
    #
    def initialize(p, tgt, sel, opts, x, y, w, h, pl, pr, pt, pb) # :yields: aDockHandler
    end
  end
end