zwcloud / ImGui

Immediate Mode GUI for C#
https://zwcloud.net/#project/imgui
GNU Affero General Public License v3.0
197 stars 21 forks source link

Re-implement PushStyleVar/PopStyleVar APIs based on StyleRuleSet. #31

Closed zwcloud closed 5 years ago

zwcloud commented 5 years ago

They are APIs that used to change controls style on the fly. They are once removed because the old style system, which is based on the static object GUIStyle.Basic, is not well considered.

See the history of deleted src/ImGui/GUILayout.Adjust.cs for more details.

zwcloud commented 5 years ago

To achieve this, we need an internal stack, for example StyleRuleSet.Stack, which will be applied in subsequent GUI/GUILayout call to the StyleRuleSet of control nodes.