Update of /cvsroot/mmclibrary/mmclibrary/MMCLib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19592/MMCLib
Modified Files:
About.cs ImageList.cs MMCLib.xml SnapinBase.cs
Log Message:
Index: MMCLib.xml
===================================================================
RCS file: /cvsroot/mmclibrary/mmclibrary/MMCLib/MMCLib.xml,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** MMCLib.xml 15 Mar 2005 06:16:55 -0000 1.13
--- MMCLib.xml 21 Mar 2005 20:14:08 -0000 1.14
***************
*** 680,683 ****
--- 680,693 ----
</summary>
</member>
+ <member name="M:Ironring.Management.MMC.BaseNode.OnShow(System.Boolean)">
+ <summary>
+ Show the Node
+ </summary>
+ <param name="bSelecting">TRUE if selecting, FALSE if deselecting</param>
+ <remarks>
+ TRUE if selecting. Indicates that the snap-in should set up the result pane and add the enumerated items.
+ FALSE if deselecting. Indicates that the snap-in is going out of focus and that it should clean up all result item cookies, because the current result pane will be replaced by a new one.
+ </remarks>
+ </member>
<member name="M:Ironring.Management.MMC.BaseNode.OnControlbarCommand(Ironring.Management.MMC.IControlbar,Ironring.Management.MMC.IToolbar,Ironring.Management.MMC.MMC_CONSOLE_VERB)">
<summary>
***************
*** 1700,1704 ****
<member name="F:Ironring.Management.MMC.MMCN_Notify.SHOW">
<summary>
! arg != 0 if selecting, 0 if deselecting
param = HSCOPEITEM of selected/deselected item
</summary>
--- 1710,1714 ----
<member name="F:Ironring.Management.MMC.MMCN_Notify.SHOW">
<summary>
! arg != 0 if selecting, 1 if deselecting
param = HSCOPEITEM of selected/deselected item
</summary>
***************
*** 2550,2553 ****
--- 2560,2569 ----
<param name="ppComponent">a pointer to out Component object</param>
</member>
+ <member name="M:Ironring.Management.MMC.SnapinBase.SetCurrentComponent(Ironring.Management.MMC.Component)">
+ <summary>
+ Set current snapin Component
+ </summary>
+ <param name="component"></param>
+ </member>
<member name="M:Ironring.Management.MMC.SnapinBase.Notify(Ironring.Management.MMC.IDataObject,System.UInt32,System.IntPtr,System.IntPtr)">
<summary>
Index: SnapinBase.cs
===================================================================
RCS file: /cvsroot/mmclibrary/mmclibrary/MMCLib/SnapinBase.cs,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** SnapinBase.cs 15 Mar 2005 06:44:55 -0000 1.19
--- SnapinBase.cs 21 Mar 2005 20:14:08 -0000 1.20
***************
*** 357,360 ****
--- 357,363 ----
public virtual void CreateComponent(out IComponent ppComponent)
{
+ /*if (m_Component == null)
+ m_Component = new Component(this);*/
+
ppComponent = new Component(this);
}
Index: About.cs
===================================================================
RCS file: /cvsroot/mmclibrary/mmclibrary/MMCLib/About.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** About.cs 4 Dec 2003 16:35:46 -0000 1.2
--- About.cs 21 Mar 2005 20:14:06 -0000 1.3
***************
*** 52,56 ****
/// ImageList contains images for all "about" images.
/// </summary>
! ImageList staticFolderIcons = new ImageList();
/// <summary>
--- 52,56 ----
/// ImageList contains images for all "about" images.
/// </summary>
! protected ImageList staticFolderIcons = new ImageList();
/// <summary>
Index: ImageList.cs
===================================================================
RCS file: /cvsroot/mmclibrary/mmclibrary/MMCLib/ImageList.cs,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** ImageList.cs 11 Feb 2004 13:23:03 -0000 1.7
--- ImageList.cs 21 Mar 2005 20:14:07 -0000 1.8
***************
*** 21,783 ****
namespace Ironring.Management.MMC
{
! /*CSC*******************************************************************************************
! **
! ** CLASS : ImageList
! ** BASE-CLASS : System.Collections.ArrayList
! **
! ** AUTHOR : Paul Kubitscheck
! ** SUBSTITUTE : Jim Murphy
! **
[...1509 lines suppressed...]
! IntPtr bits; // Garbage variable... just need it for the function call
! // This will create a bitmap handle with the color depth of the current screen
! hFinalBitmap = CreateDIBSection(hdc, ref bmiNew, 1 /* DIB_PAL_COLORS */, out bits,
! IntPtr.Zero, 0);
! // Translate the 32bpp pixels to something the screen can show
! SetDIBits(hdc, hFinalBitmap, 0, ds.dsBmih.biHeight, ds.dsBm.bmBits, ref bmiOld,
! 1 /* DIB_PAL_COLORS */);
! // Delete old bitmap
! DeleteObject(hBitmap);
! }
! // Cleanup
! DeleteDC(hdc);
!
! return hFinalBitmap;
! }
! }
}
|