# Changes 0.3.1
- Add Layout API and let Menu use it - Add DragData (for float, double, int, etc) - Add IO Delta calculation to not require a users delta value - Add Config Var for SLider drag min size - Remove Hid::Ref input of Containers as IO DragApi is used - Containers that accept input will require an ID to function
This commit is contained in:
		| @@ -29,6 +29,8 @@ using UI7MenuFlags = unsigned int; | ||||
| using UI7Align = unsigned int; | ||||
| /** 32Bit Value to store Context (IO) flags */ | ||||
| using UI7IOFlags = unsigned int; | ||||
| /** 32Bit Value for Layout Flags */ | ||||
| using UI7LayoutFlags = unsigned int; | ||||
|  | ||||
| /** Menu Flags */ | ||||
| enum UI7MenuFlags_ { | ||||
| @@ -48,6 +50,12 @@ enum UI7MenuFlags_ { | ||||
|   UI7MenuFlags_Scrolling = UI7MenuFlags_HzScrolling | UI7MenuFlags_VtScrolling, | ||||
| }; | ||||
|  | ||||
| /** UI7 Layout Flags */ | ||||
| enum UI7LayoutFlags_ { | ||||
|   UI7LayoutFlags_None = 0,              ///< No Flags used | ||||
|   UI7LayoutFlags_UseClipRect = 1 << 0,  ///< Enable ClipRect | ||||
| }; | ||||
|  | ||||
| /** UI7 Context Flags */ | ||||
| enum UI7IOFlags_ { | ||||
|   UI7IOFlags_None = 0,                 ///< No Additional Config available | ||||
|   | ||||
		Reference in New Issue
	
	Block a user