-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #322 from mcorino/develop
Develop
- Loading branch information
Showing
5 changed files
with
92 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters