-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApp.cs
272 lines (230 loc) · 9.13 KB
/
App.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
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
#region Namespaces
using System;
using System.Collections.Generic;
using Autodesk.Revit.ApplicationServices;
using Autodesk.Revit.Attributes;
using Autodesk.Revit.DB;
using Autodesk.Revit.UI;
using System.Reflection;
using System.Windows.Media.Imaging;
using WC.WarningChartWPF;
using System.Diagnostics;
using System.Windows.Forms;
using Autodesk.Revit.UI.Events;
using System.Collections;
using WC.Helpers;
#endregion
namespace WC
{
class App : IExternalApplication
{
private static UIControlledApplication MyApplication { get; set; }
private static Assembly assembly;
private static object TheInternalDoingPart(UIControlledApplication CApp, string TabName, string PanelName)
{
IList ERPs = null;
ERPs = CApp.GetRibbonPanels(TabName);
Autodesk.Revit.UI.RibbonPanel NewOrExtgRevitPanel = null;
foreach (Autodesk.Revit.UI.RibbonPanel Pan in ERPs)
{
if (Pan.Name == PanelName)
{
NewOrExtgRevitPanel = Pan;
goto FoundSoJumpPastNew;
}
}
Autodesk.Revit.UI.RibbonPanel NewRevitPanel = null;
NewRevitPanel = CApp.CreateRibbonPanel(TabName, PanelName);
NewOrExtgRevitPanel = NewRevitPanel;
FoundSoJumpPastNew:
return NewOrExtgRevitPanel;
}
// Windows Revit handle
static WindowHandle _hWndRevit = null;
// Class instance
internal static App thisApp = null;
// Presenter instance
private WarningChartPresenter _presenter;
// Keeps track of the number of Warnings in the current Document
private int _currentCount;
// Current Document
private Document _document;
// Hardcoded helpfile path
static string helpFile = "file:///C:/ProgramData/Autodesk/ApplicationPlugins/Archilizer_Warchart.bundle/Content/Help/Warchart%20_%20Revit%20_%20Autodesk%20App%20Store.html";
private bool _disabled;
static void AddRibbonPanel(UIControlledApplication application)
{
// Create a custom ribbon panel
var tabName = "Archilizer";
var panelName = "Miscellaneous";
try
{
application.CreateRibbonTab(tabName);
}
catch (Exception)
{
}
var ribbonPanel = (RibbonPanel)TheInternalDoingPart(application, tabName, panelName);
// Get dll assembly path
var thisAssemblyPath = Assembly.GetExecutingAssembly().Location;
assembly = Assembly.GetExecutingAssembly();
var assemblyVersion = assembly.GetName().Version;
var ch = new ContextualHelp(ContextualHelpType.Url, @helpFile);
CreatePushButton(ribbonPanel, String.Format("Warning" + Environment.NewLine + "Chart"), thisAssemblyPath, "WC.CommandWarningChart",
String.Format("Displays a Pie Chart representing Project Warnings.{0}{0}v{1}", Environment.NewLine, assemblyVersion), "WC.Resources.icon_Warchart.png", ch);
}
private static void CreatePushButton(RibbonPanel ribbonPanel, string name, string path, string command, string tooltip, string icon, ContextualHelp ch)
{
BitmapIcons bitmapIcons = new BitmapIcons(assembly, icon, MyApplication);
PushButtonData pbData = new PushButtonData(
name,
name,
path,
command);
PushButton pb = ribbonPanel.AddItem(pbData) as PushButton;
pb.ToolTip = tooltip;
var largeImage = bitmapIcons.LargeBitmap();
var smallImage = bitmapIcons.SmallBitmap();
pb.LargeImage = largeImage;
pb.Image = smallImage;
pb.SetContextualHelp(ch);
}
public Result OnStartup(UIControlledApplication a)
{
ControlledApplication c_app = a.ControlledApplication;
MyApplication = a;
// Make sure you have to update the plugin
string version = a.ControlledApplication.VersionNumber;
AddRibbonPanel(a);
_presenter = null; // no dialog needed yet; ThermalAsset command will bring it
thisApp = this; // static access to this application instance
c_app.DocumentChanged // Document Changed event - whenever it changes, check for your stuff (in this app check if warnings number has changed)
+= new EventHandler<Autodesk.Revit.DB.Events.DocumentChangedEventArgs>(
c_app_DocumentChanged);
a.ViewActivated += new EventHandler<Autodesk.Revit.UI.Events.ViewActivatedEventArgs>(OnViewActivated);
return Result.Succeeded;
}
public Result OnShutdown(UIControlledApplication a)
{
ControlledApplication c_app = a.ControlledApplication;
c_app.DocumentChanged
-= new EventHandler<Autodesk.Revit.DB.Events.DocumentChangedEventArgs>(
c_app_DocumentChanged);
a.ViewActivated -= new EventHandler<Autodesk.Revit.UI.Events.ViewActivatedEventArgs>(OnViewActivated);
if (_presenter != null)
{
_presenter.Close();
}
return Result.Succeeded;
}
/// <summary>
/// On Document Switched
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void OnViewActivated(object sender, ViewActivatedEventArgs e)
{
Document doc = e.CurrentActiveView.Document;
// If the document is a Family Document, disable the UI
if(doc.IsFamilyDocument)
{
if(!_disabled && _presenter != null)
{
_presenter.Disable();
_disabled = true;
}
return;
}
else
{
if(_disabled)
{
_presenter.Enable();
_disabled = false;
}
}
if (_document != null && _document.Title != doc.Title)
{
_document = doc;
_currentCount = doc.GetWarnings().Count;
_presenter._Application = new UIApplication(doc.Application);
_presenter.DocumentSwitched();
}
}
/// <summary>
/// On document change, update Family Parameters
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void c_app_DocumentChanged(object sender, Autodesk.Revit.DB.Events.DocumentChangedEventArgs e)
{
if (_presenter != null)
{
if (e.GetDocument().GetWarnings().Count != _currentCount)
{
_currentCount = e.GetDocument().GetWarnings().Count;
_presenter.DocumentChanged();
}
}
}
/// <summary>
/// De-facto the command is here.
/// </summary>
/// <param name="uiapp"></param>
public void ShowForm(UIApplication uiapp)
{
// get the isntance of Revit Thread
// to pass it to the Windows Form later
if (null == _hWndRevit)
{
Process process
= Process.GetCurrentProcess();
IntPtr h = process.MainWindowHandle;
_hWndRevit = new WindowHandle(h);
}
if (_presenter == null || _presenter.IsClosed)
{
//new handler
RequestHandler handler = new RequestHandler();
//new event
ExternalEvent exEvent = ExternalEvent.Create(handler);
// set current document
_document = uiapp.ActiveUIDocument.Document;
// Set the initial number of warnings so we don't detect document change on the first event
_currentCount = uiapp.ActiveUIDocument.Document.GetWarnings().Count;
_presenter = new WarningChartPresenter(uiapp, exEvent, handler);
try
{
//pass parent (Revit) thread here
_presenter.Show(_hWndRevit);
}
catch(Exception ex)
{
TaskDialog.Show("Error", ex.Message);
_presenter.Dispose();
_presenter = null;
}
}
}
}
/// <summary>
/// Retrieve Revit Windows thread in order to pass it to the form as it's owner
/// </summary>
public class WindowHandle : IWin32Window
{
IntPtr _hwnd;
public WindowHandle(IntPtr h)
{
Debug.Assert(IntPtr.Zero != h,
"expected non-null window handle");
_hwnd = h;
}
public IntPtr Handle
{
get
{
return _hwnd;
}
}
}
}