Sha256: eb5cbb97eea74822c5759b3a8cc3590d917d4e8f88cda529f12baaa592b5ebc3

Contents?: true

Size: 883 Bytes

Versions: 6

Compression:

Stored size: 883 Bytes

Contents

# Copyright (c) 2023 M.J.N. Corino, The Netherlands
#
# This software is released under the MIT license.
#
# Some parts are
# Copyright 2004-2007, wxRuby development team
# released under the MIT-like wxRuby2 license

require_relative './enum'

module Wx

  class Orientation < Wx::Enum

    set_non_distinct(%i[ORIENTATION_MASK])

  end

  class Direction < Wx::Enum

    set_non_distinct(%i[TOP BOTTOM NORTH SOUTH WEST EAST ALL DIRECTION_MASK])

  end

  class Alignment < Wx::Enum

    set_non_distinct(%i[ALIGN_INVALID ALIGN_CENTRE_HORIZONTAL ALIGN_LEFT ALIGN_TOP ALIGN_CENTRE_VERTICAL ALIGN_CENTER ALIGN_MASK])

  end

  class SizerFlagBits < Wx::Enum

    set_non_distinct(%i[SIZER_FLAG_BITS_MASK])

  end

  class Stretch < Wx::Enum

    set_non_distinct(%i[GROW STRETCH_MASK])

  end

  class Border < Wx::Enum

    set_non_distinct(%i[BORDER_THEME BORDER_MASK])

  end

end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
wxruby3-1.5.1 lib/wx/core/defs.rb
wxruby3-1.5.0 lib/wx/core/defs.rb
wxruby3-1.4.2 lib/wx/core/defs.rb
wxruby3-1.4.1 lib/wx/core/defs.rb
wxruby3-1.4.0 lib/wx/core/defs.rb
wxruby3-1.3.1 lib/wx/core/defs.rb