Sha256: 178e625665383699114af8dc12b384d425ede70b32080143307d70b0a1194124
Contents?: true
Size: 1.39 KB
Versions: 10
Compression:
Stored size: 1.39 KB
Contents
# :stopdoc: # This file is automatically generated by the WXRuby3 documentation # generator. Do not alter this file. # :startdoc: module Wx::GRID # Base class for activatable editors. # Inheriting from this class makes it simpler to implement editors that support only activation, but not in-place editing, as they only need to implement {Wx::GRID::GridCellActivatableEditor#try_activate}, {Wx::GRID::GridCellActivatableEditor#do_activate} and {Wx::GRID::GridCellActivatableEditor#clone} methods, but not all the other pure virtual methods of {Wx::GRID::GridCellEditor}. # class GridCellActivatableEditor < GridCellEditor # Same method as in {Wx::GRID::GridCellEditor}, but pure virtual. # Note that the implementation of this method must never return Wx::GridActivationResult#do_edit for the editors inheriting from this class, as it doesn't support normal editing. # @param row [Integer] # @param col [Integer] # @param grid [Wx::Grid] # @param actSource [Wx::GridActivationSource] # @return [Wx::GridActivationResult] def try_activate(row, col, grid, actSource) end # Same method as in {Wx::GRID::GridCellEditor}, but pure virtual. # @param row [Integer] # @param col [Integer] # @param grid [Wx::Grid] # @return [void] def do_activate(row, col, grid) end end # GridCellActivatableEditor end
Version data entries
10 entries across 10 versions & 1 rubygems