Sha256: 1f38e642c4e71686d3a17a6e3fde26b6fa462a99804e766a48d837357ce77d34
Contents?: true
Size: 978 Bytes
Versions: 7
Compression:
Stored size: 978 Bytes
Contents
# :stopdoc: # Copyright (c) 2023 M.J.N. Corino, The Netherlands # # This software is released under the MIT license. # :startdoc: module Wx # Just a shortcut version for creating a horizontal box sizer class HBoxSizer < Wx::BoxSizer # Constructor for a {Wx::HBoxSizer}. # @return [Wx::HBoxSizer] def initialize; end end # Just a shortcut version for creating a horizontal wrap sizer class HWrapSizer < Wx::WrapSizer # Constructor for a {Wx::HWrapSizer}. # The flags parameter can be a combination of the values {Wx::EXTEND_LAST_ON_EACH_LINE} which will cause the last # item on each line to use any remaining space on that line and {Wx::REMOVE_LEADING_SPACES} which removes any spacer # elements from the beginning of a row. # Both of these flags are on by default. # @param flags [Integer] # @return [Wx::HWrapSizer] def initialize(flags=Wx::WRAPSIZER_DEFAULT_FLAGS) end end end
Version data entries
7 entries across 7 versions & 1 rubygems