mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-30 23:30:46 +00:00
Add private views for storing things in different gravity settings
This commit is contained in:
parent
d415a75a03
commit
a2b48d2103
2 changed files with 75 additions and 9 deletions
|
@ -1,7 +1,7 @@
|
|||
/* Definition of class NSStackView
|
||||
Copyright (C) 2020 Free Software Foundation, Inc.
|
||||
|
||||
By: Gregory John Casamento
|
||||
By: Gregory John Casamento <greg.casamento@gmail.com>
|
||||
Date: 08-08-2020
|
||||
|
||||
This file is part of the GNUstep Library.
|
||||
|
@ -82,10 +82,16 @@ static const CGFloat NSStackViewSpacingUseDefault = FLT_MAX;
|
|||
NSMutableArray *_arrangedSubviews;
|
||||
NSMutableArray *_detachedViews;
|
||||
NSMutableArray *_views;
|
||||
|
||||
// Gravity
|
||||
NSView *_topGravity;
|
||||
NSView *_leadingGravity;
|
||||
NSView *_centerGravity;
|
||||
NSView *_bottomGravity;
|
||||
NSView *_trailingGravity;
|
||||
|
||||
NSMapTable *_customSpacingMap;
|
||||
NSMapTable *_gravityMap;
|
||||
NSMapTable *_visiblePriorityMap;
|
||||
NSMapTable *_clippingMap;
|
||||
}
|
||||
|
||||
// Properties
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue