forked from Unity-Technologies/UnityCsReference
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPragmaFixingWindow.cs
98 lines (82 loc) · 3.01 KB
/
PragmaFixingWindow.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using UnityEngine;
using UnityEditorInternal;
using UnityEditor.Scripting;
namespace UnityEditor
{
internal class PragmaFixingWindow : EditorWindow
{
public static void ShowWindow(string[] paths)
{
PragmaFixingWindow win = EditorWindow.GetWindow<PragmaFixingWindow>(true);
win.SetPaths(paths);
win.ShowModal();
}
class Styles
{
public GUIStyle selected = "OL SelectedRow";
public GUIStyle box = "OL Box";
public GUIStyle button = "LargeButton";
}
static Styles s_Styles = null;
ListViewState m_LV = new ListViewState();
string[] m_Paths;
public PragmaFixingWindow()
{
titleContent = EditorGUIUtility.TrTextContent("Unity - #pragma fixing");
}
public void SetPaths(string[] paths)
{
m_Paths = paths;
m_LV.totalRows = paths.Length;
}
void OnGUI()
{
if (s_Styles == null)
{
s_Styles = new Styles();
minSize = new Vector2(450, 300);
position = new Rect(position.x, position.y, minSize.x, minSize.y);
}
GUILayout.Space(10);
GUILayout.Label("#pragma implicit and #pragma downcast need to be added to following files\nfor backwards compatibility");
GUILayout.Space(10);
GUILayout.BeginHorizontal();
GUILayout.Space(10);
foreach (ListViewElement el in ListViewGUILayout.ListView(m_LV, s_Styles.box))
{
if (el.row == m_LV.row && Event.current.type == EventType.Repaint)
s_Styles.selected.Draw(el.position, false, false, false, false);
GUILayout.Label(m_Paths[el.row]);
}
GUILayout.Space(10);
GUILayout.EndHorizontal();
GUILayout.Space(10);
GUILayout.BeginHorizontal();
GUILayout.FlexibleSpace();
if (GUILayout.Button("Fix now", s_Styles.button))
{
Close();
PragmaFixing30.FixFiles(m_Paths);
// bugfix (377429): do not call AssetDatabase.Refresh here as that screws up project upgrading.
// When this script is invoked from Application::InitializeProject, the assets will be refreshed anyway.
GUIUtility.ExitGUI();
}
if (GUILayout.Button("Ignore", s_Styles.button))
{
Close();
GUIUtility.ExitGUI();
}
if (GUILayout.Button("Quit", s_Styles.button))
{
EditorApplication.Exit(0);
GUIUtility.ExitGUI();
}
GUILayout.Space(10);
GUILayout.EndHorizontal();
GUILayout.Space(10);
}
}
}