File size: 5,898 Bytes
18a519f | 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 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 | using UnityEditor;
using UnityEngine;
using Codice.Client.Common;
using Codice.Client.Commands;
using PlasticGui;
using PlasticGui.WorkspaceWindow.Update;
using Unity.PlasticSCM.Editor.UI;
namespace Unity.PlasticSCM.Editor.Views
{
internal class ContinueWithPendingChangesQuestionerBuilder :
SwitchController.IContinueWithPendingChangesQuestionerBuilder
{
internal ContinueWithPendingChangesQuestionerBuilder(
IViewSwitcher viewSwitcher,
EditorWindow parentWindow)
{
mViewSwitcher = viewSwitcher;
mParentWindow = parentWindow;
}
public IContinueWithPendingChangesQuestioner Get(string title, string explanation)
{
return new ContinueWithPendingChangesQuestioner(
title,
explanation,
mViewSwitcher,
mParentWindow);
}
IViewSwitcher mViewSwitcher;
EditorWindow mParentWindow;
}
internal class ContinueWithPendingChangesQuestioner : IContinueWithPendingChangesQuestioner
{
internal ContinueWithPendingChangesQuestioner(
string title,
string explanation,
IViewSwitcher viewSwitcher,
EditorWindow parentWindow)
{
mTitle = title;
mExplanation = explanation;
mViewSwitcher = viewSwitcher;
mParentWindow = parentWindow;
}
public bool ContinueWithPendingChanges()
{
bool result = false;
GUIActionRunner.RunGUIAction(() =>
{
result = ConfirmContinueWithPendingChangesDialog.ConfirmContinue(
mTitle,
mExplanation,
mViewSwitcher,
mParentWindow);
});
return result;
}
string mTitle;
string mExplanation;
IViewSwitcher mViewSwitcher;
EditorWindow mParentWindow;
}
internal class ConfirmContinueWithPendingChangesDialog : PlasticDialog
{
protected override Rect DefaultRect
{
get
{
var baseRect = base.DefaultRect;
return new Rect(baseRect.x, baseRect.y, 500, 287);
}
}
internal static bool ConfirmContinue(
string title,
string explanation,
IViewSwitcher viewSwitcher,
EditorWindow parentWindow)
{
ConfirmContinueWithPendingChangesDialog dialog = Create(
title,
explanation,
viewSwitcher);
if (dialog.RunModal(parentWindow) != ResponseType.Ok)
return false;
if (dialog.mIsSwitchToConfirmationChecked)
SavePreference();
return true;
}
static ConfirmContinueWithPendingChangesDialog Create(
string title,
string explanation,
IViewSwitcher viewSwitcher)
{
var instance = CreateInstance<ConfirmContinueWithPendingChangesDialog>();
instance.mTitle = title;
instance.mExplanation = explanation;
instance.mViewSwitcher = viewSwitcher;
return instance;
}
static void SavePreference()
{
ClientConfigData data = ClientConfig.Get().GetClientConfigData();
data.SetPendingChangesOnSwitchAction(UserAction.None);
ClientConfig.Get().Save(data);
}
protected override string GetTitle()
{
return mTitle;
}
protected override void OnModalGUI()
{
Title(mTitle);
Paragraph(mExplanation);
DoSwitchToConfirmationCheckButton();
GUILayout.Space(10);
DoButtonsArea();
}
void DoSwitchToConfirmationCheckButton()
{
using (new EditorGUILayout.HorizontalScope())
{
GUILayout.FlexibleSpace();
mIsSwitchToConfirmationChecked = TitleToggle(
PlasticLocalization.GetString(
PlasticLocalization.Name.SwitchToConfirmationCheckButton),
mIsSwitchToConfirmationChecked);
}
}
void DoButtonsArea()
{
using (new EditorGUILayout.HorizontalScope())
{
GUILayout.FlexibleSpace();
if (Application.platform == RuntimePlatform.WindowsEditor)
{
DoContinueButton();
DoCancelAndViewPendingChangesButton();
DoCancelButton();
return;
}
DoCancelButton();
DoCancelAndViewPendingChangesButton();
DoContinueButton();
}
}
void DoContinueButton()
{
if (!NormalButton(PlasticLocalization.GetString(
PlasticLocalization.Name.SwitchToConfirmationContinueButton)))
return;
OkButtonAction();
}
void DoCancelButton()
{
if (!NormalButton(PlasticLocalization.GetString(
PlasticLocalization.Name.CancelButton)))
return;
CancelButtonAction();
}
void DoCancelAndViewPendingChangesButton()
{
if (!NormalButton(PlasticLocalization.GetString(
PlasticLocalization.Name.SwitchToConfirmationCancelViewChangesButton)))
return;
mViewSwitcher.ShowPendingChanges();
CancelButtonAction();
}
string mTitle;
string mExplanation;
IViewSwitcher mViewSwitcher;
bool mIsSwitchToConfirmationChecked;
}
} |