-
Notifications
You must be signed in to change notification settings - Fork 45
/
GeneralOptionsPanel.cs
115 lines (101 loc) · 3.31 KB
/
GeneralOptionsPanel.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
//
// GeneralOptionsPanel.cs
//
// Author:
// Levi Bard <[email protected]>
//
// Copyright (c) 2010 Unity Technologies
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
//
//
using System;
using System.IO;
using MonoDevelop.Ide;
using MonoDevelop.Core;
using MonoDevelop.Ide.Gui.Dialogs;
namespace MonoDevelop.Debugger.Soft.Unity
{
/// <summary>
/// Global options panel for Unity debugger
/// </summary>
[System.ComponentModel.ToolboxItem(true)]
public partial class GeneralOptionsPanel : Gtk.Bin
{
private static readonly string internalPath = "/Contents/MacOS/Unity";
public GeneralOptionsPanel ()
{
this.Build ();
if (PropertyService.IsMac) {
unityChooser.Action = Gtk.FileChooserAction.SelectFolder;
unityChooser.Title = "Browse to the Unity app";
}
// Load defaults
unityChooser.SetFilename (Environment.GetFolderPath (Environment.SpecialFolder.Personal));
if (PropertyService.IsMac) {
if (File.Exists (Util.UnityLocation)) {
unityChooser.SetCurrentFolder (Util.UnityLocation.Replace(internalPath, string.Empty));
} else if (Directory.Exists (Util.UnityLocation)) {
unityChooser.SetCurrentFolder (Util.UnityLocation);
}
} else if (File.Exists (Util.UnityLocation)) {
unityChooser.SetFilename (Util.UnityLocation);
}
launchCB.Active = Util.UnityLaunch;
buildCB.Active = Util.UnityBuild;
}
/// <summary>
/// Store selected properties
/// </summary>
public bool Store ()
{
Util.UnityLocation = unityChooser.Filename;
if (PropertyService.IsMac) {
string fullPath = Util.UnityLocation + internalPath;
if (File.Exists (fullPath)) {
Util.UnityLocation = fullPath;
}
}
Util.UnityLaunch = launchCB.Active;
Util.UnityBuild = buildCB.Active;
PropertyService.SaveProperties ();
return true;
}
protected virtual void OnLaunchCBToggled (object sender, System.EventArgs e)
{
unityChooser.Sensitive = launchCB.Active;
}
}
/// <summary>
/// OptionsPanel wrapper for GeneralOptionsPanel
/// </summary>
public class GeneralOptionsPanelBinding : OptionsPanel
{
private GeneralOptionsPanel panel;
public override Gtk.Widget CreatePanelWidget ()
{
panel = new GeneralOptionsPanel ();
return panel;
}
public override void ApplyChanges ()
{
panel.Store ();
}
}
}