Extended .NET SDK Documentation 2025 SP0
Loading...
Searching...
No Matches
CFxUI.cs
Go to the documentation of this file.
1//------------------------------------------------------------------------------
2// <auto-generated />
3//
4// This file was automatically generated by SWIG (http://www.swig.org).
5// Version 4.0.2
6//
7// Do not make changes to this file unless you know what you are doing--modify
8// the SWIG interface file instead.
9//------------------------------------------------------------------------------
10
11namespace PCAD_DOT_NET {
12
13using System;
14using System.Runtime.InteropServices;
15using Teigha.Core;
16using Teigha.TD;
17
18public class CFxUI : global::System.IDisposable {
19 private Object locker = new Object();
20 private HandleRef swigCPtr;
21 protected bool swigCMemOwn;
22 [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
23 public CFxUI(IntPtr cPtr, bool cMemoryOwn) {
24 swigCMemOwn = cMemoryOwn;
25 swigCPtr = new HandleRef(this, cPtr);
26 }
27 [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
28 public static HandleRef getCPtr(CFxUI obj) {
29 return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
30 }
31
32 ~CFxUI() {
33 Dispose(false);
34 }
35
36 public void Dispose() {
37 Dispose(true);
38 global::System.GC.SuppressFinalize(this);
39 }
40
41 protected virtual void Dispose(bool disposing) {
42 lock(this) {
43 if (swigCPtr.Handle != global::System.IntPtr.Zero) {
44 if (swigCMemOwn) {
45 swigCMemOwn = false;
47 }
48 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
49 }
50 }
51 }
52
57
62
68
74
75 public virtual CFxUIItemDefinition FindItem(CFxString uiGroup, CFxString id) {
76 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_FindItem(swigCPtr, CFxString.getCPtr(uiGroup), CFxString.getCPtr(id));
77 CFxUIItemDefinition ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxUIItemDefinition(cPtr, false);
79 return ret;
80 }
81
83 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_CreateItemDefinition(swigCPtr, CFxString.getCPtr(id), CFxUIContext.getCPtr(pContext));
84 CFxUIItemDefinition ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxUIItemDefinition(cPtr, false);
86 return ret;
87 }
88
93
99
100 public virtual bool AddGroup(CFxUIGroup pItem) {
101 bool ret = PCADGlobalsPINVOKE.CFxUI_AddGroup(swigCPtr, CFxUIGroup.getCPtr(pItem));
103 return ret;
104 }
105
106 public virtual bool RemoveGroup(CFxString sGroupName) {
107 bool ret = PCADGlobalsPINVOKE.CFxUI_RemoveGroup(swigCPtr, CFxString.getCPtr(sGroupName));
109 return ret;
110 }
111
112 public virtual CFxUIGroup GetStartUpGroup() {
113 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_GetStartUpGroup(swigCPtr);
114 CFxUIGroup ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxUIGroup(cPtr, false);
116 return ret;
117 }
118
120 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_GetStartUpWorkspace(swigCPtr);
121 CFxUIWorkspace ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxUIWorkspace(cPtr, false);
123 return ret;
124 }
125
126 public virtual CFxUIGroup GetGroup(CFxString name) {
127 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_GetGroup(swigCPtr, CFxString.getCPtr(name));
128 CFxUIGroup ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxUIGroup(cPtr, false);
130 return ret;
131 }
132
134 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_CreateGroupIterator(swigCPtr);
135 SWIGTYPE_p_CFxUIIteratorT_CFxUIGroup_t ret = (cPtr == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_CFxUIIteratorT_CFxUIGroup_t(cPtr, false);
137 return ret;
138 }
139
145
151
152 public virtual CFxUIWorkspace GetWorkspace(CFxString name) {
153 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_GetWorkspace(swigCPtr, CFxString.getCPtr(name));
154 CFxUIWorkspace ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxUIWorkspace(cPtr, false);
156 return ret;
157 }
158
165
167 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_GetCurrentWorkspace(swigCPtr);
168 CFxUIWorkspace ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxUIWorkspace(cPtr, false);
170 return ret;
171 }
172
177
183
184 public virtual CFxUIGroup CreateGroup(CFxString groupName, CFxString fileName) {
185 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_CreateGroup(swigCPtr, CFxString.getCPtr(groupName), CFxString.getCPtr(fileName));
186 CFxUIGroup ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxUIGroup(cPtr, false);
188 return ret;
189 }
190
191 public virtual CFxUIGroup CreateRuntimeGroup(CFxString groupName) {
192 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_CreateRuntimeGroup(swigCPtr, CFxString.getCPtr(groupName));
193 CFxUIGroup ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxUIGroup(cPtr, false);
195 return ret;
196 }
197
198 public virtual CFxUIWorkspace CreateWorkspace(CFxString wsName, CFxString fileName) {
199 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_CreateWorkspace(swigCPtr, CFxString.getCPtr(wsName), CFxString.getCPtr(fileName));
200 CFxUIWorkspace ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxUIWorkspace(cPtr, false);
202 return ret;
203 }
204
205 public virtual CFxUIMenuItem CreateMenuItem(CFxUI.MenuType eType, CFxString pClass, CFxString command, CFxString id) {
206 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_CreateMenuItem__SWIG_0(swigCPtr, (int)eType, CFxString.getCPtr(pClass), CFxString.getCPtr(command), CFxString.getCPtr(id));
207 CFxUIMenuItem ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxUIMenuItem(cPtr, false);
209 return ret;
210 }
211
212 public virtual CFxUIMenuItem CreateMenuItem(CFxUI.MenuType eType, CFxString pClass, CFxString command) {
213 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_CreateMenuItem__SWIG_1(swigCPtr, (int)eType, CFxString.getCPtr(pClass), CFxString.getCPtr(command));
214 CFxUIMenuItem ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxUIMenuItem(cPtr, false);
216 return ret;
217 }
218
223
225 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_CreateToolbarItem__SWIG_0(swigCPtr, (int)type, CFxString.getCPtr(sUID));
226 CFxUIToolbarItem ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxUIToolbarItem(cPtr, false);
228 return ret;
229 }
230
232 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_CreateToolbarItem__SWIG_1(swigCPtr, (int)type);
233 CFxUIToolbarItem ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxUIToolbarItem(cPtr, false);
235 return ret;
236 }
237
239 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_CreateToolbarItem__SWIG_2(swigCPtr);
240 CFxUIToolbarItem ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxUIToolbarItem(cPtr, false);
242 return ret;
243 }
244
249
251 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_CreateRibbonTabItem__SWIG_0(swigCPtr, CFxString.getCPtr(sUID));
252 SWIGTYPE_p_CFxUIRibbonTab ret = (cPtr == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_CFxUIRibbonTab(cPtr, false);
254 return ret;
255 }
256
258 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_CreateRibbonTabItem__SWIG_1(swigCPtr);
259 SWIGTYPE_p_CFxUIRibbonTab ret = (cPtr == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_CFxUIRibbonTab(cPtr, false);
261 return ret;
262 }
263
265 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_CreateRibbonPanelItem__SWIG_0(swigCPtr, CFxString.getCPtr(sUID));
266 SWIGTYPE_p_CFxUIRibbonPanel ret = (cPtr == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_CFxUIRibbonPanel(cPtr, false);
268 return ret;
269 }
270
272 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_CreateRibbonPanelItem__SWIG_1(swigCPtr);
273 SWIGTYPE_p_CFxUIRibbonPanel ret = (cPtr == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_CFxUIRibbonPanel(cPtr, false);
275 return ret;
276 }
277
279 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_CreateRibbonRowItem__SWIG_0(swigCPtr, CFxString.getCPtr(sUID));
280 SWIGTYPE_p_CFxUIRibbonRow ret = (cPtr == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_CFxUIRibbonRow(cPtr, false);
282 return ret;
283 }
284
286 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_CreateRibbonRowItem__SWIG_1(swigCPtr);
287 SWIGTYPE_p_CFxUIRibbonRow ret = (cPtr == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_CFxUIRibbonRow(cPtr, false);
289 return ret;
290 }
291
298
305
312
319
326
333
340
347
349 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_CreateRibbonHelpMenuItem__SWIG_0(swigCPtr, CFxString.getCPtr(sUID));
350 SWIGTYPE_p_CFxUIRibbonHelpMenuItem ret = (cPtr == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_CFxUIRibbonHelpMenuItem(cPtr, false);
352 return ret;
353 }
354
356 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_CreateRibbonHelpMenuItem__SWIG_1(swigCPtr);
357 SWIGTYPE_p_CFxUIRibbonHelpMenuItem ret = (cPtr == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_CFxUIRibbonHelpMenuItem(cPtr, false);
359 return ret;
360 }
361
366
371
376
381
386
391
396
401
403 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_CreateDoubleClickAction__SWIG_0(swigCPtr, CFxString.getCPtr(className), CFxString.getCPtr(sUID));
404 CFxUIDoubleClickAction ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxUIDoubleClickAction(cPtr, false);
406 return ret;
407 }
408
410 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_CreateDoubleClickAction__SWIG_1(swigCPtr, CFxString.getCPtr(className));
411 CFxUIDoubleClickAction ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxUIDoubleClickAction(cPtr, false);
413 return ret;
414 }
415
420
422 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_CreateAccelerator__SWIG_0(swigCPtr, CFxUIItemDefinition.getCPtr(pDefinition), CFxString.getCPtr(sUID));
423 CFxUIAccelerator ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxUIAccelerator(cPtr, false);
425 return ret;
426 }
427
429 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_CreateAccelerator__SWIG_1(swigCPtr, CFxUIItemDefinition.getCPtr(pDefinition));
430 CFxUIAccelerator ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxUIAccelerator(cPtr, false);
432 return ret;
433 }
434
439
440 public virtual CFxUIButton CreateMouseButton(CFxUIItemDefinition pDefinition, int iButtonNumber, CFxString sUID) {
441 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_CreateMouseButton__SWIG_0(swigCPtr, CFxUIItemDefinition.getCPtr(pDefinition), iButtonNumber, CFxString.getCPtr(sUID));
442 CFxUIButton ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxUIButton(cPtr, false);
444 return ret;
445 }
446
447 public virtual CFxUIButton CreateMouseButton(CFxUIItemDefinition pDefinition, int iButtonNumber) {
448 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_CreateMouseButton__SWIG_1(swigCPtr, CFxUIItemDefinition.getCPtr(pDefinition), iButtonNumber);
449 CFxUIButton ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxUIButton(cPtr, false);
451 return ret;
452 }
453
458
460 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_CreateTabletMenu(swigCPtr);
461 CFxUITabletMenu ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxUITabletMenu(cPtr, false);
463 return ret;
464 }
465
470
472 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_CreateTempOverrideKey__SWIG_0(swigCPtr, CFxString.getCPtr(sUID));
473 CFxUITempOverrideKey ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxUITempOverrideKey(cPtr, false);
475 return ret;
476 }
477
479 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_CreateTempOverrideKey__SWIG_1(swigCPtr);
480 CFxUITempOverrideKey ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxUITempOverrideKey(cPtr, false);
482 return ret;
483 }
484
489
490 public virtual CFxUIImageItem CreateImageItem(CFxString sName, CFxString sUID) {
491 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_CreateImageItem__SWIG_0(swigCPtr, CFxString.getCPtr(sName), CFxString.getCPtr(sUID));
492 CFxUIImageItem ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxUIImageItem(cPtr, false);
494 return ret;
495 }
496
498 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_CreateImageItem__SWIG_1(swigCPtr, CFxString.getCPtr(sName));
499 CFxUIImageItem ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxUIImageItem(cPtr, false);
501 return ret;
502 }
503
508
514
515 public virtual CFxUIToolbarItem CreateRuntimeToolbar(CFxString sToolbarName, CFxString sGroupName) {
516 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_CreateRuntimeToolbar__SWIG_1(swigCPtr, CFxString.getCPtr(sToolbarName), CFxString.getCPtr(sGroupName));
517 CFxUIToolbarItem ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxUIToolbarItem(cPtr, false);
519 return ret;
520 }
521
526
531
536
541
546
551
556
562
563 public virtual int Menucmd(CFxString strCmd, CFxString strResult) {
564 int ret = PCADGlobalsPINVOKE.CFxUI_Menucmd(swigCPtr, CFxString.getCPtr(strCmd), CFxString.getCPtr(strResult));
566 return ret;
567 }
568
569 public virtual bool CheckEvents(bool bMouseMove, bool bMouseWheel, bool bMouseButton, bool bAllKeyboard) {
570 bool ret = PCADGlobalsPINVOKE.CFxUI_CheckEvents(swigCPtr, bMouseMove, bMouseWheel, bMouseButton, bAllKeyboard);
572 return ret;
573 }
574
579
580 public virtual void Update(bool bFullUpdate) {
581 PCADGlobalsPINVOKE.CFxUI_Update__SWIG_0(swigCPtr, bFullUpdate);
583 }
584
589
594
599
601 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_UpdatePanelPreview(swigCPtr, SWIGTYPE_p_CFxUIRibbonPanel.getCPtr(pRibbonPanelDef), SWIGTYPE_p_CFxWidget.getCPtr(parent), SWIGTYPE_p_CFxRibbonPreviewProxy.getCPtr(pRibbonPreviewProxy), CFxString.getCPtr(strUID));
602 SWIGTYPE_p_CFxWidget ret = (cPtr == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_CFxWidget(cPtr, false);
604 return ret;
605 }
606
611
616
621
623 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_CreateRuntimeItemDefinition(swigCPtr, CFxString.getCPtr(id), CFxUIContext.getCPtr(pContext));
624 CFxUIItemDefinition ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxUIItemDefinition(cPtr, false);
626 return ret;
627 }
628
633
634 public virtual CFxUIMenuItem CreateRuntimeMenuItem(CFxUI.MenuType eType, CFxString pClass, CFxString command, CFxString id) {
635 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_CreateRuntimeMenuItem__SWIG_0(swigCPtr, (int)eType, CFxString.getCPtr(pClass), CFxString.getCPtr(command), CFxString.getCPtr(id));
636 CFxUIMenuItem ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxUIMenuItem(cPtr, false);
638 return ret;
639 }
640
641 public virtual CFxUIMenuItem CreateRuntimeMenuItem(CFxUI.MenuType eType, CFxString pClass, CFxString command) {
642 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_CreateRuntimeMenuItem__SWIG_1(swigCPtr, (int)eType, CFxString.getCPtr(pClass), CFxString.getCPtr(command));
643 CFxUIMenuItem ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxUIMenuItem(cPtr, false);
645 return ret;
646 }
647
652
654 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_CreateRuntimeToolbarItem__SWIG_0(swigCPtr, (int)type);
655 CFxUIToolbarItem ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxUIToolbarItem(cPtr, false);
657 return ret;
658 }
659
661 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_CreateRuntimeToolbarItem__SWIG_1(swigCPtr);
662 CFxUIToolbarItem ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxUIToolbarItem(cPtr, false);
664 return ret;
665 }
666
671
673 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_GetVisibleMenuCollection(swigCPtr);
674 CFxUIMenuItemCollection ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxUIMenuItemCollection(cPtr, false);
676 return ret;
677 }
678
680 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_GetVisibleToolbarCollection(swigCPtr);
681 CFxUIToolbarItemCollection ret = (cPtr == global::System.IntPtr.Zero) ? null : new CFxUIToolbarItemCollection(cPtr, false);
683 return ret;
684 }
685
687 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_GetVisibleRibbonTabCollection(swigCPtr);
688 SWIGTYPE_p_CFxUIRibbonTabCollection ret = (cPtr == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_CFxUIRibbonTabCollection(cPtr, false);
690 return ret;
691 }
692
694 global::System.IntPtr cPtr = PCADGlobalsPINVOKE.CFxUI_GetVisibleRibbonSystemMenu(swigCPtr);
695 SWIGTYPE_p_CFxUIRibbonSystemMenuItem ret = (cPtr == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_CFxUIRibbonSystemMenuItem(cPtr, false);
697 return ret;
698 }
699
706
713
723
724 public enum ToolbarType {
725 eAction,
726 eControl,
727 eFlyout
728 }
729
730 public enum ButtonType {
731 eClick,
735 }
736
737 public enum Orientation {
738 eLeft = 0x0001,
739 eRight = 0x0002,
740 eTop = 0x0004,
741 eBottom = 0x0008,
742 eFloating = 0x0010,
744 }
745
747 eFull = 0,
748 eMedium = 1,
749 eNarrow = 2
750 }
751
752}
753
754}
static HandleRef getCPtr(CFxString obj)
Definition CFxString.cs:28
static HandleRef getCPtr(CFxUIAccelerator obj)
static HandleRef getCPtr(CFxUIButton obj)
static HandleRef getCPtr(CFxUIContext obj)
static HandleRef getCPtr(CFxUIDoubleClickAction obj)
static HandleRef getCPtr(CFxUIGroup obj)
Definition CFxUIGroup.cs:28
virtual CFxUITempOverrideKey CreateTempOverrideKey(CFxString sUID)
Definition CFxUI.cs:471
virtual SWIGTYPE_p_CFxUIRibbonTab CreateRibbonTabItem()
Definition CFxUI.cs:257
virtual void DestroyMouseButton(CFxUIButton pItem)
Definition CFxUI.cs:454
virtual void DestroyRibbonRowItem(SWIGTYPE_p_CFxUIRibbonRow pRow)
Definition CFxUI.cs:372
virtual void DestroyRuntimeMenuItem(CFxUIMenuItem pItem)
Definition CFxUI.cs:648
virtual CFxUIMenuItemCollection GetVisibleMenuCollection()
Definition CFxUI.cs:672
virtual CFxUIMenuItem CreateMenuItem(CFxUI.MenuType eType, CFxString pClass, CFxString command, CFxString id)
Definition CFxUI.cs:205
virtual void DestroyRibbonQuickAccessBarItem(SWIGTYPE_p_CFxUIRibbonQuickAccessBarItem pQuickAccessBarItem)
Definition CFxUI.cs:397
virtual void DestroyImageItem(CFxUIImageItem pItem)
Definition CFxUI.cs:504
virtual CFxUIToolbarItem CreateRuntimeToolbarItem(CFxUI.ToolbarType type)
Definition CFxUI.cs:653
virtual SWIGTYPE_p_CFxUIIteratorT_CFxUIGroup_t CreateGroupIterator()
Definition CFxUI.cs:133
virtual SWIGTYPE_p_CFxUIRibbonQuickAccessBarItem CreateRibbonQuickAccessBarItem(CFxString sUID)
Definition CFxUI.cs:334
virtual void RemoveUIReactor(CFxUIReactor pReactor)
Definition CFxUI.cs:617
virtual SWIGTYPE_p_CFxUIRibbonHelpMenuItem CreateRibbonHelpMenuItem()
Definition CFxUI.cs:355
virtual CFxUIWorkspace GetCurrentWorkspace()
Definition CFxUI.cs:166
virtual CFxUIWorkspace GetStartUpWorkspace()
Definition CFxUI.cs:119
virtual SWIGTYPE_p_CFxUIRibbonPanel CreateRibbonPanelItem(CFxString sUID)
Definition CFxUI.cs:264
virtual CFxUIDoubleClickAction CreateDoubleClickAction(CFxString className, CFxString sUID)
Definition CFxUI.cs:402
virtual CFxUIAccelerator CreateAccelerator(CFxUIItemDefinition pDefinition)
Definition CFxUI.cs:428
virtual CFxString CreateRuntimeToolbar(CFxString sToolbarName)
Definition CFxUI.cs:509
virtual void LoadInterface()
Definition CFxUI.cs:53
virtual SWIGTYPE_p_CFxUIRibbonRow CreateRibbonRowItem()
Definition CFxUI.cs:285
virtual SWIGTYPE_p_CFxUIRibbonQuickAccessBarItem CreateRibbonQuickAccessBarItem()
Definition CFxUI.cs:341
static HandleRef getCPtr(CFxUI obj)
Definition CFxUI.cs:28
virtual SWIGTYPE_p_CFxUIRibbonRowItem CreateRibbonRowElementItem(SWIGTYPE_p_CFxUIRibbonItem__RibbonItemType type, CFxString sUID)
Definition CFxUI.cs:292
virtual CFxUIToolbarItem CreateRuntimeToolbar(CFxString sToolbarName, CFxString sGroupName)
Definition CFxUI.cs:515
virtual void DestroyRibbonRowElementItem(SWIGTYPE_p_CFxUIRibbonRowItem pItem)
Definition CFxUI.cs:377
virtual bool RemoveGroup(CFxString sGroupName)
Definition CFxUI.cs:106
virtual CFxUIGroup GetStartUpGroup()
Definition CFxUI.cs:112
virtual void DestroyRuntimeItemDefinition(CFxUIItemDefinition pDefinition)
Definition CFxUI.cs:629
virtual void DestroyItemDefinition(CFxUIItemDefinition pDefinition)
Definition CFxUI.cs:89
virtual void Update(bool bFullUpdate)
Definition CFxUI.cs:580
virtual void ResetEvents()
Definition CFxUI.cs:575
virtual void DestroyDoubleClickAction(CFxUIDoubleClickAction pItem)
Definition CFxUI.cs:416
virtual SWIGTYPE_p_CFxUIRibbonSystemMenuItem CreateRibbonSystemMenuItem()
Definition CFxUI.cs:327
virtual bool LoadResourceFile(CFxString name)
Definition CFxUI.cs:69
virtual void DestroyRibbonQuickAccessBar(SWIGTYPE_p_CFxUIRibbonQuickAccessBar pQuickAccessBar)
Definition CFxUI.cs:382
virtual SWIGTYPE_p_CFxUIRibbonTabCollection GetVisibleRibbonTabCollection()
Definition CFxUI.cs:686
virtual void DestroyRuntimeToolbar(CFxString sObjectName)
Definition CFxUI.cs:522
virtual SWIGTYPE_p_CFxUIRibbonQuickAccessBar GetVisibleRibbonQuickAccessBar()
Definition CFxUI.cs:700
virtual CFxUIButton CreateMouseButton(CFxUIItemDefinition pDefinition, int iButtonNumber, CFxString sUID)
Definition CFxUI.cs:440
virtual SWIGTYPE_p_CFxUIRibbonRowItem CreateRibbonRowElementItem(SWIGTYPE_p_CFxUIRibbonItem__RibbonItemType type)
Definition CFxUI.cs:299
virtual CFxUIItemDefinition FindItem(CFxString uiGroup, CFxString id)
Definition CFxUI.cs:75
virtual CFxUIWorkspace GetWorkspace(CFxString name)
Definition CFxUI.cs:152
virtual SWIGTYPE_p_CFxWidget UpdatePanelPreview(SWIGTYPE_p_CFxUIRibbonPanel pRibbonPanelDef, SWIGTYPE_p_CFxWidget parent, SWIGTYPE_p_CFxRibbonPreviewProxy pRibbonPreviewProxy, CFxString strUID)
Definition CFxUI.cs:600
virtual CFxUITabletMenu CreateTabletMenu()
Definition CFxUI.cs:459
virtual void DestroyMenuItem(CFxUIMenuItem pItem)
Definition CFxUI.cs:219
virtual CFxUIWorkspace CreateWorkspace(CFxString wsName, CFxString fileName)
Definition CFxUI.cs:198
virtual CFxUIMenuItem CreateMenuItem(CFxUI.MenuType eType, CFxString pClass, CFxString command)
Definition CFxUI.cs:212
virtual void RemoveUserDefaultContextMenu(CFxUIContext pContext)
Definition CFxUI.cs:532
virtual void DestroyRibbonHelpMenuItem(SWIGTYPE_p_CFxUIRibbonHelpMenuItem pHelpMenuItem)
Definition CFxUI.cs:392
virtual SWIGTYPE_p_CFxUIRibbonHelpMenuItem CreateRibbonHelpMenuItem(CFxString sUID)
Definition CFxUI.cs:348
virtual SWIGTYPE_p_CFxUIRibbonQuickAccessBar CreateRibbonQuickAccessBar(CFxString sUID)
Definition CFxUI.cs:306
virtual void Dispose(bool disposing)
Definition CFxUI.cs:41
virtual bool CheckEvents(bool bMouseMove, bool bMouseWheel, bool bMouseButton, bool bAllKeyboard)
Definition CFxUI.cs:569
virtual void DestroyRibbonPanelItem(SWIGTYPE_p_CFxUIRibbonPanel pPanel)
Definition CFxUI.cs:367
virtual void AddUserObjectContextMenu(CFxString pClass, CFxUIContext pContext)
Definition CFxUI.cs:537
virtual void RemoveUserCommandContextMenu(CFxString strCommand, CFxUIContext pContext)
Definition CFxUI.cs:552
virtual void UpdateMenu()
Definition CFxUI.cs:590
virtual CFxUIItemDefinition CreateItemDefinition(CFxString id, CFxUIContext pContext)
Definition CFxUI.cs:82
virtual bool RemoveWorkspace(CFxUIWorkspace pItem)
Definition CFxUI.cs:146
virtual bool RemoveItemDefinition(CFxUIItemDefinition pDefinition)
Definition CFxUI.cs:94
virtual CFxUIItemDefinition CreateRuntimeItemDefinition(CFxString id, CFxUIContext pContext)
Definition CFxUI.cs:622
virtual CFxUIToolbarItem CreateToolbarItem(CFxUI.ToolbarType type)
Definition CFxUI.cs:231
virtual CFxUIGroup CreateGroup(CFxString groupName, CFxString fileName)
Definition CFxUI.cs:184
virtual SWIGTYPE_p_CFxUIRibbonSystemMenuItem CreateRibbonSystemMenuItem(CFxString sUID)
Definition CFxUI.cs:320
void Dispose()
Definition CFxUI.cs:36
virtual CFxUIToolbarItem CreateRuntimeToolbarItem()
Definition CFxUI.cs:660
virtual CFxString CreateUniqueID()
Definition CFxUI.cs:178
virtual void DestroyRuntimeToolbarItem(CFxUIToolbarItem pItem)
Definition CFxUI.cs:667
virtual CFxUIButton CreateMouseButton(CFxUIItemDefinition pDefinition, int iButtonNumber)
Definition CFxUI.cs:447
virtual void DestroyTabletMenu(CFxUITabletMenu pItem)
Definition CFxUI.cs:466
virtual SWIGTYPE_p_CFxUIRibbonQuickAccessBar CreateRibbonQuickAccessBar()
Definition CFxUI.cs:313
virtual void DestroyRibbonTabItem(SWIGTYPE_p_CFxUIRibbonTab pTab)
Definition CFxUI.cs:362
virtual SWIGTYPE_p_CFxUIRibbonSystemMenuItem GetVisibleRibbonSystemMenu()
Definition CFxUI.cs:693
virtual int Menucmd(CFxString strCmd, CFxString strResult)
Definition CFxUI.cs:563
virtual CFxUIGroup GetGroup(CFxString name)
Definition CFxUI.cs:126
virtual void DestroyRibbonSystemMenuItem(SWIGTYPE_p_CFxUIRibbonSystemMenuItem pSystemMenuItem)
Definition CFxUI.cs:387
virtual void AddUserCommandContextMenu(CFxString strCommand, CFxUIContext pContext)
Definition CFxUI.cs:547
virtual void Update()
Definition CFxUI.cs:585
virtual CFxUIToolbarItem CreateToolbarItem()
Definition CFxUI.cs:238
virtual void AddUIReactor(CFxUIReactor pReactor)
Definition CFxUI.cs:612
virtual SWIGTYPE_p_CFxUIIteratorT_CFxUIWorkspace_t CreateWorkspaceIterator()
Definition CFxUI.cs:159
virtual void SetCleanScreenState(bool bValue)
Definition CFxUI.cs:607
virtual CFxUIToolbarItem CreateToolbarItem(CFxUI.ToolbarType type, CFxString sUID)
Definition CFxUI.cs:224
virtual CFxUIMenuItem CreateRuntimeMenuItem(CFxUI.MenuType eType, CFxString pClass, CFxString command, CFxString id)
Definition CFxUI.cs:634
virtual CFxUIAccelerator CreateAccelerator(CFxUIItemDefinition pDefinition, CFxString sUID)
Definition CFxUI.cs:421
virtual CFxUIGroup CreateRuntimeGroup(CFxString groupName)
Definition CFxUI.cs:191
virtual CFxUIToolbarItemCollection GetVisibleToolbarCollection()
Definition CFxUI.cs:679
virtual bool AddWorkspace(CFxUIWorkspace pItem)
Definition CFxUI.cs:140
virtual CFxUIImageItem CreateImageItem(CFxString sName, CFxString sUID)
Definition CFxUI.cs:490
virtual void SetCurrentWorkspace(CFxUIWorkspace arg0)
Definition CFxUI.cs:173
virtual CFxUIMenuItem CreateRuntimeMenuItem(CFxUI.MenuType eType, CFxString pClass, CFxString command)
Definition CFxUI.cs:641
virtual CFxUITempOverrideKey CreateTempOverrideKey()
Definition CFxUI.cs:478
virtual bool LoadResourceFile(CFxString name, SWIGTYPE_p_p_CFxUIGroup pLoadedGroup)
Definition CFxUI.cs:63
virtual CFxUIDoubleClickAction CreateDoubleClickAction(CFxString className)
Definition CFxUI.cs:409
virtual void DestroyTempOverrideKey(CFxUITempOverrideKey pItem)
Definition CFxUI.cs:485
virtual SWIGTYPE_p_CFxUIRibbonTab CreateRibbonTabItem(CFxString sUID)
Definition CFxUI.cs:250
virtual SWIGTYPE_p_CFxUIRibbonPanel CreateRibbonPanelItem()
Definition CFxUI.cs:271
virtual void AddUserDefaultContextMenu(CFxUIContext pContext)
Definition CFxUI.cs:527
virtual SWIGTYPE_p_CFxUIRibbonRow CreateRibbonRowItem(CFxString sUID)
Definition CFxUI.cs:278
virtual void UpdateRibbon()
Definition CFxUI.cs:595
virtual void SaveInterface()
Definition CFxUI.cs:58
virtual bool AddGroup(CFxUIGroup pItem)
Definition CFxUI.cs:100
virtual void RemoveUserObjectContextMenu(CFxString pClass, CFxUIContext pContext)
Definition CFxUI.cs:542
virtual SWIGTYPE_p_CFxUIRibbonHelpMenuItemCollection GetVisibleRibbonHelpMenu()
Definition CFxUI.cs:707
virtual void DestroyAccelerator(CFxUIAccelerator pItem)
Definition CFxUI.cs:435
virtual CFxUIImageItem CreateImageItem(CFxString sName)
Definition CFxUI.cs:497
virtual bool DisplayContextMenu()
Definition CFxUI.cs:557
virtual void DestroyToolbarItem(CFxUIToolbarItem pItem)
Definition CFxUI.cs:245
CFxUI(IntPtr cPtr, bool cMemoryOwn)
Definition CFxUI.cs:23
static HandleRef getCPtr(CFxUIImageItem obj)
static HandleRef getCPtr(CFxUIItemDefinition obj)
static HandleRef getCPtr(CFxUIMenuItem obj)
static HandleRef getCPtr(CFxUIReactor obj)
static HandleRef getCPtr(CFxUITabletMenu obj)
static HandleRef getCPtr(CFxUITempOverrideKey obj)
static HandleRef getCPtr(CFxUIToolbarItem obj)
static HandleRef getCPtr(CFxUIWorkspace obj)
static void CFxUI_RemoveUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_CreateDoubleClickAction__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxUI_DestroyRibbonQuickAccessBarItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUI_AddUIReactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUI_DestroyMenuItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUI_DestroyToolbarItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_CreateRibbonQuickAccessBarItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUI_DestroyRibbonPanelItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUI_Update__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUI_DestroyRibbonTabItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUI_DestroyRibbonRowItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_CreateRibbonRowItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_CreateRuntimeItemDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxUI_CreateRibbonTabItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUI_DestroyRuntimeItemDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_GetVisibleMenuCollection(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateGroupIterator(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateToolbarItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void CFxUI_Update__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr CFxUI_CreateRibbonQuickAccessBar__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUI_DestroyTabletMenu(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUI_DisplayContextMenu(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_GetCurrentWorkspace(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUI_LoadInterface(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateGroup(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxUI_DestroyDoubleClickAction(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUI_RemoveUserDefaultContextMenu(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUI_SetCurrentWorkspace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_CreateTempOverrideKey__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_GetVisibleRibbonSystemMenu(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateMouseButton__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr CFxUI_CreateImageItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUI_RemoveWorkspace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_CreateRibbonPanelItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUI_LoadResourceFile__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_CFxUI(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_UpdatePanelPreview(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static global::System.IntPtr CFxUI_CreateRibbonQuickAccessBar__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_CreateRuntimeToolbarItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_GetGroup(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUI_CheckEvents(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, bool jarg3, bool jarg4, bool jarg5)
static global::System.IntPtr CFxUI_FindItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxUI_DestroyTempOverrideKey(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUI_AddUserCommandContextMenu(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxUI_DestroyRibbonHelpMenuItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUI_RemoveItemDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_CreateTabletMenu(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateRibbonRowItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateRibbonPanelItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_CreateMenuItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static void CFxUI_DestroyItemDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_CreateRibbonQuickAccessBarItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_CreateMenuItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr CFxUI_CreateUniqueID(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool CFxUI_AddWorkspace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUI_UpdateRibbon(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUI_SaveInterface(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUI_DestroyAccelerator(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_CreateRuntimeMenuItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr CFxUI_CreateToolbarItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxUI_CreateMouseButton__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static global::System.IntPtr CFxUI_CreateRuntimeToolbar__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUI_LoadResourceFile__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxUI_SetCleanScreenState(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool CFxUI_RemoveGroup(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUI_DestroyRibbonQuickAccessBar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUI_RemoveUserObjectContextMenu(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxUI_CreateRibbonHelpMenuItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int CFxUI_Menucmd(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxUI_GetStartUpWorkspace(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUI_AddUserDefaultContextMenu(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_CreateRuntimeGroup(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_CreateImageItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxUI_CreateDoubleClickAction__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUI_RemoveUserCommandContextMenu(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxUI_CreateRibbonSystemMenuItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUI_DestroyRibbonSystemMenuItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_GetStartUpGroup(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateToolbarItem__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateRibbonSystemMenuItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_GetVisibleRibbonHelpMenu(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateRuntimeToolbarItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr CFxUI_CreateRibbonRowElementItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_CreateRuntimeMenuItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static global::System.IntPtr CFxUI_GetVisibleRibbonQuickAccessBar(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUI_ResetEvents(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateRibbonRowElementItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxUI_CreateWorkspaceIterator(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateRibbonHelpMenuItem__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateAccelerator__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxUI_GetVisibleRibbonTabCollection(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUI_DestroyRuntimeMenuItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUI_DestroyImageItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_CreateRuntimeToolbar__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxUI_AddUserObjectContextMenu(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void CFxUI_DestroyRibbonRowElementItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUI_UpdateMenu(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CFxUI_CreateRibbonTabItem__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_CreateItemDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CFxUI_CreateTempOverrideKey__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUI_DestroyMouseButton(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_CreateAccelerator__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool CFxUI_AddGroup(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_GetVisibleToolbarCollection(global::System.Runtime.InteropServices.HandleRef jarg1)
static void CFxUI_DestroyRuntimeToolbar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_GetWorkspace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void CFxUI_DestroyRuntimeToolbarItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr CFxUI_CreateWorkspace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)