Skip to content
Snippets Groups Projects
Select Git revision
  • eba21f18b8813581e74aea40d9ee38f77bb61ab7
  • master default protected
  • 1.6
  • v1.6.40
  • v1.6.39
  • v1.6.38
  • v1.6.37
  • v1.6.37.rc1
  • v1.6.36
  • 1.6.35
  • 1.6.34
  • 1.6.33
  • 1.6.32.pre2
  • 1.6.32.pre1
  • 1.6.31
  • 1.6.30
  • 1.6.29
  • 1.6.28
  • 1.6.26
  • 1.6.27
  • 1.6.26.pre1
  • 1.6.25
  • 1.6.25.pre2
23 results

FXComposite.rb

Blame
  • FXComposite.rb 919 B
    module Fox
      #
      # Base composite
      #
      # === Events
      #
      # The following messages are sent from FXComposite to its target:
      #
      # +SEL_KEYPRESS+::
      #   sent when a key goes down, but only if there is no other widget with the
      #   focus (or if the focused widget doesn't handle this keypress). The message
      #   data is an FXEvent instance.
      # +SEL_KEYRELEASE+::
      #   sent when a key goes up, but only if there is no other widget with the
      #   focus (or if the focused widget doesn't handle this key release). The message
      #   data is an FXEvent instance.
      #
      class FXComposite < FXWindow
        # Constructor
        def initialize(parent, opts=0, x=0, y=0, width=0, height=0) # :yields: theComposite
        end
      
        #
        # Return the width of the widest child window.
        #
        def maxChildWidth() ; end
      
        #
        # Return the height of the tallest child window.
        #
        def maxChildHeight() ; end
      end
    end