Sha256: 5e0e741bea0e2dd243e4e84364ba7d536bb3345a23b6b644fc1e1fcc1729e1ee

Contents?: true

Size: 1.2 KB

Versions: 50

Compression:

Stored size: 1.2 KB

Contents

module Fox
  #
  # FXColorDialog is a standard dialog panel used to edit colors.
  # Colors can be edited via RGB (Red, Green, Blue additive color model),
  # via HSV (Hue, Saturation, Value color modal), via CMY (Cyan, Magenta,
  # Yellow subtractive color model), or by name.
  # Commonly used colors can be dragged into a number of small color wells
  # to be used repeatedly; colors dropped into the small color wells are
  # automatically saved into the registry for future use.
  #
  # === Events
  #
  # The following messages are sent by FXColorDialog to its target:
  #
  # +SEL_CHANGED+::	sent continuously, while the color selector's color is changing
  # +SEL_COMMAND+::	sent when the new color is set
  #
  # === Message identifiers
  #
  # +ID_COLORSELECTOR+::	used internally to identify messages from the FXColorSelector

  class FXColorDialog < FXDialogBox

    # The color [FXColor]
    attr_accessor :rgba
   
    # Only opaque colors allowed [Boolean]
    attr_writer :opaqueOnly

    # Construct color dialog
    def initialize(owner, title, opts=0, x=0, y=0, width=0, height=0) # :yields: theColorDialog
    end
  
    # Return +true+ if only opaque colors allowed
    def opaqueOnly?() ; end
  end
end

Version data entries

50 entries across 50 versions & 2 rubygems

Version Path
fxruby-1.6.22.pre2-x86-mingw32 rdoc-sources/FXColorDialog.rb
fxruby-1.6.22.pre2 rdoc-sources/FXColorDialog.rb
fxrubi-1.6.22.pre1-x86-mingw32 rdoc-sources/FXColorDialog.rb
fxrubi-1.6.22.pre1 rdoc-sources/FXColorDialog.rb
fxruby-1.6.20-x86-mingw32 rdoc-sources/FXColorDialog.rb
fxruby-1.6.20-x86-linux rdoc-sources/FXColorDialog.rb
fxruby-1.6.20 rdoc-sources/FXColorDialog.rb
fxruby-1.6.20-universal-darwin-10 rdoc-sources/FXColorDialog.rb
fxruby-1.6.19-x86-mingw32 rdoc-sources/FXColorDialog.rb
fxruby-1.6.14-mswin32 rdoc-sources/FXColorDialog.rb
fxruby-1.6.13-mswin32 rdoc-sources/FXColorDialog.rb
fxruby-1.4.0 rdoc-sources/FXColorDialog.rb
fxruby-1.4.1 rdoc-sources/FXColorDialog.rb
fxruby-1.4.2 rdoc-sources/FXColorDialog.rb
fxruby-1.4.3 rdoc-sources/FXColorDialog.rb
fxruby-1.4.4 rdoc-sources/FXColorDialog.rb
fxruby-1.4.5 rdoc-sources/FXColorDialog.rb
fxruby-1.4.6 rdoc-sources/FXColorDialog.rb
fxruby-1.4.7 rdoc-sources/FXColorDialog.rb
fxruby-1.6.0 rdoc-sources/FXColorDialog.rb