Sha256: a3630124a50408f56b0113dd19a601775acc4db217a61d28d2cc81f0202f0640
Contents?: true
Size: 945 Bytes
Versions: 16
Compression:
Stored size: 945 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
16 entries across 16 versions & 1 rubygems