Sha256: 01e0feeb43a07ae1dddec0d517c185c81168229431c80403a07edc7cfa9e8952
Contents?: true
Size: 943 Bytes
Versions: 21
Compression:
Stored size: 943 Bytes
Contents
# Copyright (c) 2023 M.J.N. Corino, The Netherlands # # This software is released under the MIT license. ### # wxRuby3 wxWidgets interface director ### module WXRuby3 class Director class Caret < Director def setup super spec.gc_as_object 'wxCaret' # all ctors require a running App spec.require_app 'wxCaret' # ignore method overloads that have no additional benefit in Ruby spec.ignore 'wxCaret::wxCaret(wxWindow*, int, int)', 'wxCaret::Create(wxWindow*, int, int)', 'wxCaret::GetPosition(int*, int*) const', 'wxCaret::GetSize(int*, int*) const', 'wxCaret::Move(int, int)', 'wxCaret::SetSize(int, int)' # prevent SWIG warning spec.extend_interface 'wxCaret', 'virtual ~wxCaret();' end end # class Caret end # class Director end # module WXRuby3
Version data entries
21 entries across 21 versions & 1 rubygems