Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WinForms / System / WinForms / Design / PbrsForward.cs / 1 / PbrsForward.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Windows.Forms.Design { using System.Collections; using System.ComponentModel; using System.Diagnostics; using System; using System.Design; using System.ComponentModel.Design; using System.Windows.Forms; using System.Drawing; using Microsoft.Win32; internal class PbrsForward : IWindowTarget { private Control target; private IWindowTarget oldTarget; // we save the last key down so we can recreate the last message if we need to activate // the properties window... // private Message lastKeyDown; private ArrayList bufferedChars; private const int WM_PRIVATE_POSTCHAR = NativeMethods.WM_USER + 0x1598; private bool postCharMessage; private IMenuCommandService menuCommandSvc; private IServiceProvider sp; private bool ignoreMessages = false; public PbrsForward(Control target, IServiceProvider sp) { this.target = target; this.oldTarget = target.WindowTarget; this.sp = sp; target.WindowTarget = this; } private IMenuCommandService MenuCommandService { get { if (menuCommandSvc == null && sp != null) { menuCommandSvc = (IMenuCommandService)sp.GetService(typeof(IMenuCommandService)); } return menuCommandSvc; } } private ISupportInSituService InSituSupportService { get { return (ISupportInSituService)sp.GetService(typeof(ISupportInSituService)); } } public void Dispose() { target.WindowTarget = oldTarget; } ////// /// Called when the window handle of the control has changed. /// void IWindowTarget.OnHandleChange(IntPtr newHandle){ } ////// /// Called to do control-specific processing for this window. /// void IWindowTarget.OnMessage(ref Message m){ // Get the Designer for the currently selected item on the Designer... // SET STATE .. ignoreMessages = false; // Here lets query for the ISupportInSituService. // If we find the service then ask if it has a designer which is interested // in getting the keychars by querring the IgnoreMessages. if (m.Msg >= NativeMethods.WM_KEYFIRST && m.Msg <= NativeMethods.WM_KEYLAST || (m.Msg >= NativeMethods.WM_IME_STARTCOMPOSITION && m.Msg <= NativeMethods.WM_IME_COMPOSITION)) { if (InSituSupportService != null) { ignoreMessages = InSituSupportService.IgnoreMessages; } } switch (m.Msg) { case WM_PRIVATE_POSTCHAR: if (bufferedChars == null) { return; } // recreate the keystroke to the newly activated window IntPtr hWnd = IntPtr.Zero; if (!ignoreMessages) { hWnd = NativeMethods.GetFocus(); } else { if (InSituSupportService != null) { hWnd = InSituSupportService.GetEditWindow(); } else { hWnd = NativeMethods.GetFocus(); } } if (hWnd != m.HWnd) { foreach (BufferedKey bk in bufferedChars) { if (bk.KeyChar.Msg == NativeMethods.WM_CHAR) { if (bk.KeyDown.Msg != 0) { NativeMethods.SendMessage(hWnd, NativeMethods.WM_KEYDOWN, bk.KeyDown.WParam, bk.KeyDown.LParam); } NativeMethods.SendMessage(hWnd, NativeMethods.WM_CHAR, bk.KeyChar.WParam, bk.KeyChar.LParam); if (bk.KeyUp.Msg != 0) { NativeMethods.SendMessage(hWnd, NativeMethods.WM_KEYUP, bk.KeyUp.WParam, bk.KeyUp.LParam); } } else { NativeMethods.SendMessage(hWnd, bk.KeyChar.Msg, bk.KeyChar.WParam, bk.KeyChar.LParam); } } } bufferedChars.Clear(); return; case NativeMethods.WM_KEYDOWN: this.lastKeyDown = m; break; case NativeMethods.WM_IME_ENDCOMPOSITION: case NativeMethods.WM_KEYUP: this.lastKeyDown.Msg = 0; break; case NativeMethods.WM_CHAR: case NativeMethods.WM_IME_STARTCOMPOSITION: case NativeMethods.WM_IME_COMPOSITION: ISelectionService selService = (ISelectionService)sp.GetService(typeof(ISelectionService)); if ((Control.ModifierKeys & (Keys.Control | Keys.Alt)) != 0) { break; } if (bufferedChars == null) { bufferedChars = new ArrayList(); } bufferedChars.Add(new BufferedKey(lastKeyDown, m, lastKeyDown)); if (!ignoreMessages && MenuCommandService != null) { // throw the properties window command, we will redo the keystroke when we actually // lose focus postCharMessage = true; MenuCommandService.GlobalInvoke(StandardCommands.PropertiesWindow); } else if (ignoreMessages && m.Msg != NativeMethods.WM_IME_COMPOSITION) { if (InSituSupportService != null) { postCharMessage = true; InSituSupportService.HandleKeyChar(); } } if (postCharMessage) { // If copy of message has been buffered for forwarding, eat the original now return; } break; case NativeMethods.WM_KILLFOCUS: if (postCharMessage) { // see ASURT 45313 // now that we've actually lost focus, post this message to the queue. This allows // any activity that's in the queue to settle down before our characters are posted. // to the queue. // // we post because we need to allow the focus to actually happen before we send // our strokes so we know where to send them // // we can't use the wParam here because it may not be the actual window that needs // to pick up the strokes. // UnsafeNativeMethods.PostMessage(target.Handle, WM_PRIVATE_POSTCHAR, IntPtr.Zero, IntPtr.Zero); postCharMessage = false; } break; } if (this.oldTarget != null) { oldTarget.OnMessage(ref m); } } private struct BufferedKey { public readonly Message KeyDown; public readonly Message KeyUp; public readonly Message KeyChar; public BufferedKey(Message keyDown, Message keyChar, Message keyUp) { this.KeyChar = keyChar; this.KeyDown = keyDown; this.KeyUp = keyUp; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlIlVisitor.cs
- TreeSet.cs
- XsltException.cs
- SerialPort.cs
- Scene3D.cs
- XmlSchemaSimpleTypeList.cs
- JournalEntry.cs
- ElementUtil.cs
- DataKeyArray.cs
- CategoryGridEntry.cs
- ValueQuery.cs
- SimpleType.cs
- X509Utils.cs
- SecurityRuntime.cs
- _AuthenticationState.cs
- CodeFieldReferenceExpression.cs
- RunClient.cs
- ShapeTypeface.cs
- ClosableStream.cs
- Screen.cs
- DecoderFallbackWithFailureFlag.cs
- RemotingException.cs
- CornerRadius.cs
- ValueUnavailableException.cs
- PageCanvasSize.cs
- RegisteredScript.cs
- LayoutUtils.cs
- AuthenticationSection.cs
- altserialization.cs
- Expression.cs
- PackWebResponse.cs
- ObjectManager.cs
- CLSCompliantAttribute.cs
- StaticSiteMapProvider.cs
- MessageQuerySet.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- Parsers.cs
- HMACSHA1.cs
- BindValidator.cs
- DecimalConverter.cs
- ResXFileRef.cs
- ConfigurationManagerInternal.cs
- ConnectionInterfaceCollection.cs
- XmlDataCollection.cs
- SecureEnvironment.cs
- DecoderBestFitFallback.cs
- StreamGeometryContext.cs
- WindowsFormsHostAutomationPeer.cs
- GroupBox.cs
- SqlUnionizer.cs
- DbModificationCommandTree.cs
- ColumnResult.cs
- ReadingWritingEntityEventArgs.cs
- SecurityPolicySection.cs
- HtmlTableCell.cs
- TextTreeUndo.cs
- ObjectItemNoOpAssemblyLoader.cs
- PrintPageEvent.cs
- BehaviorEditorPart.cs
- cookie.cs
- SortExpressionBuilder.cs
- ApplicationTrust.cs
- EllipticalNodeOperations.cs
- AttributeSetAction.cs
- StructuredType.cs
- TransformDescriptor.cs
- ModelPropertyCollectionImpl.cs
- HttpDictionary.cs
- BamlMapTable.cs
- WebServiceData.cs
- UInt32Storage.cs
- XmlAutoDetectWriter.cs
- AssemblyBuilder.cs
- PasswordBoxAutomationPeer.cs
- PerformanceCounterManager.cs
- Base64Decoder.cs
- AdvancedBindingEditor.cs
- ToolStripManager.cs
- SendContent.cs
- ListBindingHelper.cs
- Compiler.cs
- ImageMetadata.cs
- Compiler.cs
- StreamInfo.cs
- WebServiceEnumData.cs
- XamlFigureLengthSerializer.cs
- XmlSchemaObject.cs
- XmlSchemaRedefine.cs
- WebPartMenu.cs
- NameValueSectionHandler.cs
- SecurityException.cs
- odbcmetadatafactory.cs
- XPathNavigatorKeyComparer.cs
- SqlCachedBuffer.cs
- HtmlFormWrapper.cs
- BrowserTree.cs
- XmlSerializerFactory.cs
- OpCodes.cs
- AspNetSynchronizationContext.cs
- MessageQueueEnumerator.cs