127 lines
4.6 KiB
C#
127 lines
4.6 KiB
C#
using ExcelDna.Integration.CustomUI;
|
|
using System.Reflection;
|
|
using System.Runtime.InteropServices;
|
|
#if! NET472
|
|
using System.Runtime.Versioning;
|
|
#endif
|
|
using System.Windows.Forms;
|
|
|
|
namespace RhSolutions.Controllers;
|
|
|
|
#if !NET472
|
|
[SupportedOSPlatform("windows")]
|
|
#endif
|
|
[ComVisible(true)]
|
|
public class RibbonController : ExcelRibbon
|
|
{
|
|
private static IRibbonUI ribbonUi;
|
|
private static bool _workbookIsValid;
|
|
|
|
public override string GetCustomUI(string RibbonID)
|
|
{
|
|
return @"
|
|
<customUI onLoad='RibbonLoad' xmlns='http://schemas.microsoft.com/office/2006/01/customui'>
|
|
<ribbon>
|
|
<tabs>
|
|
<tab id='rau' label='RhSolutions'>
|
|
<group id='priceList' label='Прайс-лист'>
|
|
<button id='export' getEnabled='GetExportEnabled' label='Экспорт в новый файл' size='normal' imageMso='PivotExportToExcel' onAction='OnToolPressed'/>
|
|
<button id='convert' getEnabled='GetConvertEnabled' label='Актуализировать' size='normal' imageMso='FileUpdate' onAction='OnToolPressed'/>
|
|
<button id='merge' label='Объединить' size='normal' imageMso='Copy' onAction='OnToolPressed'/>
|
|
<button id='guess' getEnabled='GetGuessEnabled' label='Найти и экспортировать' size='normal' imageMso='ControlWizards' onAction='OnToolPressed'/>
|
|
<button id='fillsleeves' getEnabled='GetSleevesEnabled' label='Подобрать гильзы' size='normal' imageMso='CreateQueryFromWizard' onAction='OnToolPressed'/>
|
|
<button id='dxfexport' getEnabled='GetDxfEnabled' label='Экспортировать в DXF' size='normal' imageMso='ExportExcel' onAction='OnToolPressed'/>
|
|
</group>
|
|
<group id='rausettings' getLabel='GetVersionLabel'>
|
|
<button id='setPriceList' getLabel='GetPriceListPathLabel' size='large' imageMso='TableExcelSpreadsheetInsert' onAction='OnSetPricePressed'/>
|
|
</group>
|
|
</tab>
|
|
</tabs>
|
|
</ribbon>
|
|
</customUI>";
|
|
}
|
|
|
|
public void RibbonLoad(IRibbonUI sender)
|
|
{
|
|
ribbonUi = sender;
|
|
}
|
|
|
|
public static void RefreshControl(string id)
|
|
{
|
|
ribbonUi?.InvalidateControl(id);
|
|
}
|
|
|
|
public void OnSetPricePressed(IRibbonControl control)
|
|
{
|
|
IFileDialog dialog = RhSolutionsAddIn.ServiceProvider.GetService<IFileDialog>();
|
|
string file = dialog.GetFile();
|
|
|
|
if (!string.IsNullOrEmpty(file))
|
|
{
|
|
RhSolutionsAddIn.Configuration.SetPriceListPath(file);
|
|
RhSolutionsAddIn.Configuration.SaveSettings();
|
|
}
|
|
}
|
|
|
|
public void OnToolPressed(IRibbonControl control)
|
|
{
|
|
try
|
|
{
|
|
var toolFactory = RhSolutionsAddIn.ServiceProvider.GetService<ToolFactory>();
|
|
using Tool tool = toolFactory.GetTool(control.Id);
|
|
tool.Execute();
|
|
}
|
|
|
|
catch (Exception exception)
|
|
{
|
|
MessageBox.Show(exception.Message,
|
|
"Ошибка",
|
|
MessageBoxButtons.OK,
|
|
MessageBoxIcon.Information);
|
|
RhSolutionsAddIn.Excel.StatusBar = false;
|
|
return;
|
|
}
|
|
}
|
|
|
|
public bool GetConvertEnabled(IRibbonControl control) => _workbookIsValid;
|
|
public bool GetDxfEnabled(IRibbonControl control) => _workbookIsValid;
|
|
public bool GetSleevesEnabled(IRibbonControl control) => _workbookIsValid;
|
|
public bool GetGuessEnabled(IRibbonControl control) => RhSolutionsAddIn.Excel.ActiveWorkbook != null && !_workbookIsValid;
|
|
|
|
public bool GetExportEnabled(IRibbonControl control)
|
|
{
|
|
if (RhSolutionsAddIn.Excel.ActiveWorkbook == null)
|
|
return false;
|
|
|
|
else
|
|
{
|
|
Range selection = RhSolutionsAddIn.Excel.Selection;
|
|
return selection.Columns.Count == 2;
|
|
}
|
|
}
|
|
|
|
public string GetVersionLabel(IRibbonControl control)
|
|
{
|
|
string version = Assembly.GetExecutingAssembly().GetName().Version.ToString();
|
|
return $"v{version}";
|
|
}
|
|
|
|
public string GetPriceListPathLabel(IRibbonControl control)
|
|
{
|
|
string name = RhSolutionsAddIn.Configuration.GetPriceListFileName();
|
|
return string.IsNullOrEmpty(name) ? "Шаблонный файл" : name;
|
|
}
|
|
|
|
public static void UpdateWorkbookValidation()
|
|
{
|
|
if (RhSolutionsAddIn.Excel.ActiveWorkbook == null)
|
|
_workbookIsValid = false;
|
|
|
|
else
|
|
{
|
|
Worksheet worksheet = RhSolutionsAddIn.Excel.ActiveWorkbook.ActiveSheet;
|
|
_workbookIsValid = worksheet.IsValidSource();
|
|
}
|
|
}
|
|
}
|