- more code cleanup and ordering
59ce84d6
Dimitar Tsenev
committed
2 changed files
WindowMessageSink.cs
/NotifyIcon/NotifyIconWpf/Interop/WindowMessageSink.cs-2+2
/NotifyIcon/NotifyIconWpf/Interop/WindowMessageSink.cs
Add comment 150
Add comment 151
Add comment 152 #region CreateMessageWindow
Add comment 153 Minus   public const int WmNCCreate = 0x0081;
Add comment 153 Plus   public const int WM_NCCREATE = 0x0081;
Add comment 154 /// <summary>
Add comment 155 /// Creates the helper message window that is used
Add comment 156 /// to receive messages from the taskbar icon.
Add comment 215
Add comment 216 // Pass the message to the default window procedure
Add comment 217 long result = WinApi.DefWindowProc(hwnd, messageId, wparam, lparam);
Add comment 218 Minus   result = messageId == WmNCCreate ? 1 : result;
Add comment 218 Plus   result = messageId == WM_NCCREATE ? 1 : result;
Add comment 219 return result;
Add comment 220 }
Add comment 221
ExplorerBrowser.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/ExplorerBrowser/ExplorerBrowser.cs-25+6
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/ExplorerBrowser/ExplorerBrowser.cs
Add comment 2140 {
Add comment 2141 if (explorerBrowserControl != null)
Add comment 2142 {
Add comment 2143 Minus   s.ReleaseHandle();
Add comment 2144 Minus   s.DestroyHandle();
Add comment 2143 Plus   ShellViewExplorerManager.ReleaseHandle();
Add comment 2144 Plus   ShellViewExplorerManager.DestroyHandle();
Add comment 2145
Add comment 2146 WindowsAPI.FreeLibrary(BEHDLL);
Add comment 2147 // unhook events
Add comment 3035
Add comment 3036 #endregion
Add comment 3037
Add comment 3038 Minus  
Add comment 3039 Minus  [DllImport("user32.dll")]
Add comment 3040 Minus  public static extern bool GetCursorPos(out POINT lpPoint);
Add comment 3041 Minus  
Add comment 3042 Minus  public static Point GetCursorPosition()
Add comment 3043 Minus  {
Add comment 3044 Minus  POINT lpPoint;
Add comment 3045 Minus  GetCursorPos(out lpPoint);
Add comment 3046 Minus  //bool success = User32.GetCursorPos(out lpPoint);
Add comment 3047 Minus  // if (!success)
Add comment 3048 Minus  
Add comment 3049 Minus  return new Point((int)lpPoint.x, (int)lpPoint.y);
Add comment 3050 Minus  }
Add comment 3051 Minus  
Add comment 3052 Minus  
Add comment 3053 Minus  
Add comment 3054 Minus  
Add comment 3055 3038 #region view event forwarding
Add comment 3056 3039 internal void FireSelectionChanged()
Add comment 3057 3040 {
Add comment 3076 3059 ItemsChanged.Invoke(this, EventArgs.Empty);
Add comment 3077 3060 }
Add comment 3078 3061 }
Add comment 3079 Minus   SubclassHWND s;
Add comment 3062 Plus   SubclassHWND ShellViewExplorerManager;
Add comment 3080 3063 public void SetUpShellViewHandles(bool isHandle = true)
Add comment 3081 3064 {
Add comment 3082 3065 Invoke(new MethodInvoker(
Add comment 3120 3103 {
Add comment 3121 3104 AvailableVisibleColumns = AvailableColumns(false);
Add comment 3122 3105 SysListviewDT = (WindowsAPI.IDropTarget)isv;
Add comment 3123 Minus   s = new SubclassHWND(this, SysListViewHandle);
Add comment 3124 Minus   s.AssignHandle(ShellSysListViewHandle);
Add comment 3106 Plus   ShellViewExplorerManager = new SubclassHWND(this, SysListViewHandle);
Add comment 3107 Plus   ShellViewExplorerManager.AssignHandle(ShellSysListViewHandle);
Add comment 3125 3108 //SubclassHWND s = new SubclassHWND(this, SysListViewHandle);
Add comment 3126 3109 //s.AssignHandle(ShellSysListViewHandle);
Add comment 3127 3110 //SubclassHWnd(ShellSysListViewHandle);
Add comment 3138 3121 {
Add comment 3139 3122 try
Add comment 3140 3123 {
Add comment 3141 Minus   s.ReleaseHandle(); //DeSubClass(ShellSysListViewHandle);
Add comment 3124 Plus   ShellViewExplorerManager.ReleaseHandle(); //DeSubClass(ShellSysListViewHandle);
Add comment 3142 3125 }
Add comment 3143 3126 catch (Exception)
Add comment 3144 3127 {
Add comment 3184 3167
Add comment 3185 3168 internal void vItemHot(string classname, ShellObject item, System.Windows.Rect rec, int index, bool Isback)
Add comment 3186 3169 {
Add comment 3187 Minus  
Add comment 3188 3170 if (ItemHot != null)
Add comment 3189 3171 {
Add comment 3190 3172 ExplorerAUItemEventArgs e = new ExplorerAUItemEventArgs();
Add comment 3197 3179 }
Add comment 3198 3180 }
Add comment 3199 3181 internal void vMouseItemMiddleClick(ShellObject item) {
Add comment 3200 Minus  
Add comment 3201 3182 if (ItemMouseMiddleClick != null) {
Add comment 3202 3183 ExplorerMouseEventArgs e = new ExplorerMouseEventArgs();
Add comment 3203 3184 e.Item = item;