Sha256: 4e4e657c5fee6a03bb69ea988be4440f658612c2a5eab602c645dc15338a01f2
Contents?: true
Size: 621 Bytes
Versions: 37
Compression:
Stored size: 621 Bytes
Contents
module Fox # # FXDrawable is an abstract base class for any surface that can be # drawn upon, such as an FXWindow or an FXImage. # class FXDrawable < FXId # Width of drawable, in pixels [Integer] attr_reader :width # Height of drawable, in pixels [Integer] attr_reader :height # Visual [FXVisual] attr_accessor :visual # # Resize drawable to the specified width and height. # # ==== Parameters: # # +width+:: new drawable width, in pixels [Integer] # +height+:: new drawable height, in pixels [Integer] # def resize(w, h); end end end
Version data entries
37 entries across 37 versions & 2 rubygems