Sha256: 7c9e4a4defbd5c0141b2935a3a5cab9a222728a3bd5a07147215bc21ffe7574f
Contents?: true
Size: 847 Bytes
Versions: 94
Compression:
Stored size: 847 Bytes
Contents
module Fox # # A menu title is a child of a menu bar which is responsible # for popping up a pulldown menu. # # === Events # # The following messages are sent by FXMenuTitle 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. # +SEL_LEFTBUTTONPRESS+:: sent when the left mouse button goes down; the message data is an FXEvent instance. # +SEL_LEFTBUTTONRELEASE+:: sent when the left mouse button goes up; the message data is an FXEvent instance. # class FXMenuTitle < FXMenuCaption # The popup menu {FXPopup} attr_accessor :menu # # Constructor # def initialize(parent, text, icon=nil, popupMenu=nil, opts=0) # :yields: theMenuTitle end end end
Version data entries
94 entries across 94 versions & 1 rubygems