private void PaintControl(SWF.Control control) { string controlType = control.GetType().ToString().Replace("System.Windows.Forms", "SWF"); string controlName = control.Name; if (controlName == null) { controlName = ""; } if (!string.IsNullOrEmpty(filter)) { if (!controlType.ToLower().Contains(filter) && !controlName.ToLower().Contains(filter)) { return; } } GUILayout.BeginHorizontal(); if (GUILayout.Button("...", GUILayout.Width(24))) { EditorMenu.ShowInspector(); ControlInspector.DesignerObject = control; } GUILayout.Label(control.GetHashCode().ToString("X2"), GUILayout.Width(64)); GUILayout.Label(controlType); GUILayout.Label(controlName); GUILayout.EndHorizontal(); }
void OnGUI() { if (!Application.isPlaying) { return; } if (SWF.Control.uwfDefaultController == null) { GUILayout.Label("SWF.Control.DefaultController is null"); return; } float width = position.width - 24; _scrollPosition = GUILayout.BeginScrollView(_scrollPosition); GUILayout.BeginVertical(); _filter = GUILayout.TextField(_filter); GUILayout.Label("Modal Forms"); for (int i = 0; i < SWF.Control.uwfDefaultController.ModalForms.Count; i++) { string c_type = SWF.Control.uwfDefaultController.ModalForms[i].GetType().ToString().Replace("System.Windows.Forms", "SWF"); string c_name = SWF.Control.uwfDefaultController.ModalForms[i].Name; if (c_name == null) { c_name = ""; } if (!String.IsNullOrEmpty(_filter)) { if (!c_type.ToLower().Contains(_filter.ToLower()) && !c_name.ToLower().Contains(_filter.ToLower())) { continue; } } GUILayout.BeginHorizontal(GUILayout.Width(width)); if (GUILayout.Button("...", GUILayout.Width(24))) { EditorMenu.ShowInspector(); ControlInspector.DesignerObject = SWF.Control.uwfDefaultController.ModalForms[i]; } GUILayout.Label(c_type, GUILayout.Width(160)); GUILayout.Label(c_name, GUILayout.Width(220)); GUILayout.EndHorizontal(); } GUILayout.Space(24); GUILayout.Label("Forms"); for (int i = 0; i < SWF.Control.uwfDefaultController.Forms.Count; i++) { string c_type = SWF.Control.uwfDefaultController.Forms[i].GetType().ToString().Replace("System.Windows.Forms", "SWF"); string c_name = SWF.Control.uwfDefaultController.Forms[i].Name; if (c_name == null) { c_name = ""; } if (!String.IsNullOrEmpty(_filter)) { if (!c_type.ToLower().Contains(_filter.ToLower()) && !c_name.ToLower().Contains(_filter.ToLower())) { continue; } } GUILayout.BeginHorizontal(GUILayout.Width(width)); if (GUILayout.Button("...", GUILayout.Width(24))) { EditorMenu.ShowInspector(); ControlInspector.DesignerObject = SWF.Control.uwfDefaultController.Forms[i]; } GUILayout.Label(c_type, GUILayout.Width(160)); GUILayout.Label(c_name, GUILayout.Width(220)); GUILayout.EndHorizontal(); } GUILayout.Space(24); GUILayout.Label("uwfContext"); for (int i = 0; i < SWF.Control.uwfDefaultController.Contexts.Count; i++) { string c_type = SWF.Control.uwfDefaultController.Contexts[i].GetType().ToString().Replace("System.Windows.Forms", "SWF"); string c_name = SWF.Control.uwfDefaultController.Contexts[i].Name; if (c_name == null) { c_name = ""; } if (!String.IsNullOrEmpty(_filter)) { if (!c_type.ToLower().Contains(_filter.ToLower()) && !c_name.ToLower().Contains(_filter.ToLower())) { continue; } } GUILayout.BeginHorizontal(GUILayout.Width(width)); if (GUILayout.Button("...", GUILayout.Width(24))) { EditorMenu.ShowInspector(); ControlInspector.DesignerObject = SWF.Control.uwfDefaultController.Contexts[i]; } GUILayout.Label(c_type, GUILayout.Width(160)); GUILayout.Label(c_name, GUILayout.Width(220)); GUILayout.EndHorizontal(); } GUILayout.Space(24); GUILayout.Label("Hovered Control"); var hoveredControl = SWF.Control.uwfDefaultController.hoveredControl; if (hoveredControl != null) { string c_type = hoveredControl.GetType().Name; string c_name = hoveredControl.Name; if (c_name == null) { c_name = ""; } GUILayout.BeginHorizontal(GUILayout.Width(width)); if (GUILayout.Button("...", GUILayout.Width(24))) { EditorMenu.ShowInspector(); ControlInspector.DesignerObject = hoveredControl; } GUILayout.Label(c_type, GUILayout.Width(160)); GUILayout.Label(c_name, GUILayout.Width(220)); GUILayout.EndHorizontal(); } GUILayout.EndVertical(); GUILayout.EndScrollView(); }