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
- BamlCollectionHolder.cs
- TreeView.cs
- ProtocolsConfigurationHandler.cs
- WindowsFormsHostAutomationPeer.cs
- TextureBrush.cs
- WindowsRichEdit.cs
- WebPartAddingEventArgs.cs
- LifetimeServices.cs
- AccessorTable.cs
- ListBox.cs
- WebPartEditorCancelVerb.cs
- DataBindingCollectionEditor.cs
- VirtualPathProvider.cs
- CompositeFontParser.cs
- WindowShowOrOpenTracker.cs
- DecimalConverter.cs
- PopupEventArgs.cs
- Cursor.cs
- ObjectViewFactory.cs
- XmlText.cs
- TrackingExtract.cs
- codemethodreferenceexpression.cs
- PackWebRequestFactory.cs
- DbSetClause.cs
- BooleanSwitch.cs
- TriState.cs
- validationstate.cs
- EntityModelBuildProvider.cs
- MenuCommandService.cs
- ExtentJoinTreeNode.cs
- ClientWindowsAuthenticationMembershipProvider.cs
- Literal.cs
- DataGridViewRowCancelEventArgs.cs
- StateMachineDesignerPaint.cs
- ScrollBarRenderer.cs
- DesignerTextBoxAdapter.cs
- ButtonFieldBase.cs
- XmlSchemaNotation.cs
- SafeRightsManagementHandle.cs
- RoleManagerSection.cs
- Publisher.cs
- WebServiceHost.cs
- MarshalByValueComponent.cs
- DockPattern.cs
- Version.cs
- FtpWebResponse.cs
- Ops.cs
- InvalidateEvent.cs
- DesignerAdapterAttribute.cs
- FileLogRecord.cs
- ImageKeyConverter.cs
- OleDbWrapper.cs
- Track.cs
- ADMembershipProvider.cs
- CurrencyWrapper.cs
- XPathNode.cs
- HyperLinkField.cs
- BezierSegment.cs
- SiblingIterators.cs
- DataGridTextColumn.cs
- OutputCacheProfile.cs
- GeometryModel3D.cs
- DocumentPaginator.cs
- MediaSystem.cs
- ParameterInfo.cs
- TypeUtil.cs
- VariantWrapper.cs
- ContentPlaceHolderDesigner.cs
- StrongNameHelpers.cs
- ConstantProjectedSlot.cs
- DataKey.cs
- SqlReorderer.cs
- TextRangeEdit.cs
- WorkflowDefinitionDispenser.cs
- MemberDomainMap.cs
- RegistrySecurity.cs
- ColorMatrix.cs
- OdbcParameter.cs
- SafeFileHandle.cs
- BitmapEffectCollection.cs
- FirstMatchCodeGroup.cs
- AssociationSetEnd.cs
- ExecutedRoutedEventArgs.cs
- DataGridItemAttachedStorage.cs
- NegatedCellConstant.cs
- ContentTextAutomationPeer.cs
- ListControlDataBindingHandler.cs
- DecimalConstantAttribute.cs
- FrugalMap.cs
- ExpressionBindingCollection.cs
- ConfigurationLockCollection.cs
- FixUp.cs
- MailWebEventProvider.cs
- SystemIPGlobalStatistics.cs
- SrgsItemList.cs
- AdornerDecorator.cs
- PropertyRecord.cs
- _UncName.cs
- HtmlInputButton.cs
- SystemPens.cs