Sha256: 455a58aade617141432cbf3b3e81dbbb3a494550b679bb56da9ac698e64b59a3

Contents?: true

Size: 653 Bytes

Versions: 3

Compression:

Stored size: 653 Bytes

Contents

class Wx::Window

  # Creates an appropriate (temporary) DC to paint on and
  # passes that to the given block. Deletes the DC when the block returns.
  # Creates a Wx::PaintDC when called from an evt_paint handler and a
  # Wx::ClientDC otherwise.
  # @yieldparam [Wx::PaintDC,Wx::ClientDC] dc dc to paint on
  # @return [Object] result from block
  def paint; end

  # Similar to #paint but this time creates a Wx::AutoBufferedPaintDC when called
  # from an evt_paint handler and a Wx::ClientDC otherwise.
  # @yieldparam [Wx::AutoBufferedPaintDC,Wx::ClientDC] dc dc to paint on
  # @return [Object] result from block
  def paint_buffered; end

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
wxruby3-0.9.0.pre.rc.1 lib/wx/doc/window.rb
wxruby3-0.9.0.pre.beta.14 lib/wx/doc/window.rb
wxruby3-0.9.0.pre.beta.13 lib/wx/doc/window.rb