Sha256: 1134749af125fab3014df0afc9cd76d10662b0428559c3fbca9beffb881407e5
Contents?: true
Size: 819 Bytes
Versions: 16
Compression:
Stored size: 819 Bytes
Contents
# Copyright (c) 2023 M.J.N. Corino, The Netherlands # # This software is released under the MIT license. # # Some parts are # Copyright 2004-2007, wxRuby development team # released under the MIT-like wxRuby2 license # Device Context to paint on a window outside an on_paint handler. It is # recommended that PaintDC is used in preference to this class. class Wx::ClientDC # This class should not be instantiated directly in wxRuby; it should # always be used via Window#paint, which takes a block receiving the # DC. This ensures that the DC is cleaned up at the correct time, # avoiding errors and segfaults on exit. define_method(:initialize) do | *args | Kernel.raise RuntimeError, "Do not instantiate ClientDC directly; use Window#paint", caller[1..-1] end end
Version data entries
16 entries across 16 versions & 1 rubygems