Class Fox::FXObject
In: rdoc-sources/FXObject.rb
Parent: Object

FXObject is the base class for all objects in FOX; in order to receive messages from the user interface, your class must derive from FXObject. The FXObject class also provides serialization facilities, with which you can save and restore the object‘s state. If you‘ve subclassed from FXObject, you can save your subclasses’ state by overloading the save() and load() functions and use the stream API to serialize its member data.

Methods

handle   load   save  

Public Instance methods

Handle a message sent from sender, with given selector and message data.

Load object from stream.

Save object to stream.

[Validate]