Sha256: 5a5b170fdda306a3df8a502d75e192e3eda27fb884fbc18b959c79901d2e2816

Contents?: true

Size: 1009 Bytes

Versions: 5

Compression:

Stored size: 1009 Bytes

Contents

###
# wxRuby3 wxWidgets interface director
# Copyright (c) M.J.N. Corino, The Netherlands
###

module WXRuby3

  class Director

    class WindowDisabler < Director

      def setup
        super
        spec.disable_proxies
        # scope delimited guard constructs do not work in Ruby
        # so we'll have to use a block approach to Rubify
        # remove ctor (essentially make this a namespace/module instead of class)
        spec.ignore 'wxWindowDisabler::wxWindowDisabler'
        # add Ruby-style static method
        spec.add_extend_code 'wxWindowDisabler', <<~__HEREDOC
          static void disable(wxWindow *to_skip = NULL)
          {
            if (rb_block_given_p())
            {
              wxWindowDisabler disabler(to_skip);
              rb_yield(Qnil);
            }
            return ;
          }
          __HEREDOC
        spec.do_not_generate(:variables, :enums, :defines, :functions)
      end
    end # class WindowDisabler

  end # class Director

end # module WXRuby3

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
wxruby3-0.9.0.pre.rc.3 rakelib/lib/director/window_disabler.rb
wxruby3-0.9.0.pre.rc.2 rakelib/lib/director/window_disabler.rb
wxruby3-0.9.0.pre.rc.1 rakelib/lib/director/window_disabler.rb
wxruby3-0.9.0.pre.beta.14 rakelib/lib/director/window_disabler.rb
wxruby3-0.9.0.pre.beta.13 rakelib/lib/director/window_disabler.rb