116 lines
3.9 KiB
C#
116 lines
3.9 KiB
C#
using System.IO;
|
|
using System.Reflection;
|
|
using System.Windows.Media;
|
|
using System.Windows.Media.Imaging;
|
|
using Autodesk.Revit.UI;
|
|
using Speckle.Connectors.Common;
|
|
using Speckle.Connectors.Revit.Common;
|
|
using Speckle.Connectors.Revit.Plugin;
|
|
using Speckle.Converters.RevitShared.Helpers;
|
|
using Speckle.Sdk;
|
|
|
|
namespace Speckle.Connectors.Revit2026.Plugin;
|
|
|
|
internal sealed class RevitWebViewPlugin(
|
|
UIControlledApplication uIControlledApplication,
|
|
RevitContext revitContext,
|
|
RevitControlWebViewDockable webViewPanel,
|
|
ISpeckleApplication speckleApplication
|
|
) : IRevitPlugin
|
|
{
|
|
public void Initialise()
|
|
{
|
|
// Create and register panels before app initialized. this is needed for double-click file open
|
|
CreateTabAndRibbonPanel(uIControlledApplication);
|
|
RegisterDockablePane();
|
|
uIControlledApplication.ControlledApplication.ApplicationInitialized += OnApplicationInitialized;
|
|
}
|
|
|
|
public void Shutdown()
|
|
{
|
|
// POC: should we be cleaning up the RibbonPanel etc...
|
|
// Should we be indicating to any active in-flight functions that we are being closed?
|
|
}
|
|
|
|
// POC: Could be injected but maybe not worthwhile
|
|
private void CreateTabAndRibbonPanel(UIControlledApplication application)
|
|
{
|
|
// POC: some top-level handling and feedback here
|
|
try
|
|
{
|
|
application.CreateRibbonTab(Connector.TabName);
|
|
}
|
|
catch (ArgumentException)
|
|
{
|
|
// exception occurs when the speckle tab has already been created.
|
|
// this happens when both the dui2 and the dui3 connectors are installed. Can be safely ignored.
|
|
}
|
|
|
|
RibbonPanel specklePanel = application.CreateRibbonPanel(Connector.TabName, Connector.TabTitle);
|
|
var dui3Button = (PushButton)
|
|
specklePanel.AddItem(
|
|
new PushButtonData(
|
|
"Speckle for Revit",
|
|
Connector.TabTitle,
|
|
typeof(RevitExternalApplication).Assembly.Location,
|
|
typeof(SpeckleRevitCommand).FullName
|
|
)
|
|
);
|
|
|
|
string path = typeof(RevitWebViewPlugin).Assembly.Location;
|
|
dui3Button.Image = LoadPngImgSource(
|
|
$"Speckle.Connectors.Revit{speckleApplication.HostApplicationVersion}.Assets.logo16.png",
|
|
path
|
|
);
|
|
dui3Button.LargeImage = LoadPngImgSource(
|
|
$"Speckle.Connectors.Revit{speckleApplication.HostApplicationVersion}.Assets.logo32.png",
|
|
path
|
|
);
|
|
dui3Button.ToolTipImage = LoadPngImgSource(
|
|
$"Speckle.Connectors.Revit{speckleApplication.HostApplicationVersion}.Assets.logo32.png",
|
|
path
|
|
);
|
|
dui3Button.ToolTip = "Speckle for Revit";
|
|
//dui3Button.AvailabilityClassName = typeof(CmdAvailabilityViews).FullName;
|
|
dui3Button.SetContextualHelp(new ContextualHelp(ContextualHelpType.Url, "https://speckle.systems"));
|
|
}
|
|
|
|
private void OnApplicationInitialized(object? sender, Autodesk.Revit.DB.Events.ApplicationInitializedEventArgs e)
|
|
{
|
|
var uiApplication = new UIApplication(sender as Autodesk.Revit.ApplicationServices.Application);
|
|
revitContext.UIApplication = uiApplication;
|
|
|
|
// POC: might be worth to interface this out, we shall see...
|
|
RevitAsync.Initialize(uiApplication);
|
|
}
|
|
|
|
private void RegisterDockablePane()
|
|
{
|
|
// Registering dockable pane should happen before UiApplication is initialized with RevitTask.
|
|
// Otherwise pane cannot be registered for double-click file open.
|
|
uIControlledApplication.RegisterDockablePane(
|
|
RevitExternalApplication.DockablePanelId,
|
|
Connector.TabTitle,
|
|
webViewPanel
|
|
);
|
|
}
|
|
|
|
private ImageSource? LoadPngImgSource(string sourceName, string path)
|
|
{
|
|
try
|
|
{
|
|
var assembly = Assembly.LoadFrom(Path.Combine(path));
|
|
var icon = assembly.GetManifestResourceStream(sourceName);
|
|
PngBitmapDecoder decoder = new(icon, BitmapCreateOptions.PreservePixelFormat, BitmapCacheOption.Default);
|
|
ImageSource source = decoder.Frames[0];
|
|
return source;
|
|
}
|
|
catch (Exception ex) when (!ex.IsFatal())
|
|
{
|
|
// POC: logging
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|