Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Framework / MS / Internal / documents / FixedDocumentSequencePaginator.cs / 1 / FixedDocumentSequencePaginator.cs
//---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // // File: FixedDocumentSequencePaginator.cs // // Description: This is the abstract base class for all paginating layouts. // It provides default implementations for the asynchronous // versions of GetPage and ComputePageCount. // // History: // 08/29/2005 : grzegorz - created. // //--------------------------------------------------------------------------- using System; // IServiceProvider using System.ComponentModel; // AsyncCompletedEventArgs using System.Windows; // Size using System.Windows.Documents; // DocumentPaginator using System.Windows.Media; // Visual namespace MS.Internal.Documents { ////// This is the abstract base class for all paginating layouts. It /// provides default implementations for the asynchronous versions of /// GetPage and ComputePageCount. /// internal class FixedDocumentSequencePaginator : DynamicDocumentPaginator, IServiceProvider { //------------------------------------------------------------------- // // Constructors // //------------------------------------------------------------------- #region Constructors ////// Constructor /// internal FixedDocumentSequencePaginator(FixedDocumentSequence document) { _document = document; } #endregion Constructors //-------------------------------------------------------------------- // // Public Methods // //------------------------------------------------------------------- #region Public Methods ////// public override DocumentPage GetPage(int pageNumber) { return _document.GetPage(pageNumber); } ////// /// public override void GetPageAsync(int pageNumber, object userState) { _document.GetPageAsync(pageNumber, userState); } ////// /// public override void CancelAsync(object userState) { _document.CancelAsync(userState); } ////// /// public override int GetPageNumber(ContentPosition contentPosition) { return _document.GetPageNumber(contentPosition); } ////// /// public override ContentPosition GetPagePosition(DocumentPage page) { return _document.GetPagePosition(page); } ////// /// public override ContentPosition GetObjectPosition(Object o) { return _document.GetObjectPosition(o); } #endregion Public Methods //-------------------------------------------------------------------- // // Public Properties // //-------------------------------------------------------------------- #region Public Properties ////// /// public override bool IsPageCountValid { get { return _document.IsPageCountValid; } } ////// /// public override int PageCount { get { return _document.PageCount; } } ////// /// public override Size PageSize { get { return _document.PageSize; } set { _document.PageSize = value; } } ////// /// public override IDocumentPaginatorSource Source { get { return _document; } } #endregion Public Properties //------------------------------------------------------------------- // // Internal Methods // //-------------------------------------------------------------------- #region Internal Methods internal void NotifyGetPageCompleted(GetPageCompletedEventArgs e) { OnGetPageCompleted(e); } internal void NotifyPaginationCompleted(EventArgs e) { OnPaginationCompleted(e); } internal void NotifyPaginationProgress(PaginationProgressEventArgs e) { OnPaginationProgress(e); } internal void NotifyPagesChanged(PagesChangedEventArgs e) { OnPagesChanged(e); } #endregion Internal Methods //------------------------------------------------------------------- // // Private Fields // //------------------------------------------------------------------- #region Private Fields private readonly FixedDocumentSequence _document; #endregion Private Fields //------------------------------------------------------------------- // // IServiceProvider Members // //-------------------------------------------------------------------- #region IServiceProvider Members ////// /// Returns service objects associated with this control. /// /// Specifies the type of service object to get. object IServiceProvider.GetService(Type serviceType) { return ((IServiceProvider)_document).GetService(serviceType); } #endregion IServiceProvider Members } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // // File: FixedDocumentSequencePaginator.cs // // Description: This is the abstract base class for all paginating layouts. // It provides default implementations for the asynchronous // versions of GetPage and ComputePageCount. // // History: // 08/29/2005 : grzegorz - created. // //--------------------------------------------------------------------------- using System; // IServiceProvider using System.ComponentModel; // AsyncCompletedEventArgs using System.Windows; // Size using System.Windows.Documents; // DocumentPaginator using System.Windows.Media; // Visual namespace MS.Internal.Documents { ////// This is the abstract base class for all paginating layouts. It /// provides default implementations for the asynchronous versions of /// GetPage and ComputePageCount. /// internal class FixedDocumentSequencePaginator : DynamicDocumentPaginator, IServiceProvider { //------------------------------------------------------------------- // // Constructors // //------------------------------------------------------------------- #region Constructors ////// Constructor /// internal FixedDocumentSequencePaginator(FixedDocumentSequence document) { _document = document; } #endregion Constructors //-------------------------------------------------------------------- // // Public Methods // //------------------------------------------------------------------- #region Public Methods ////// public override DocumentPage GetPage(int pageNumber) { return _document.GetPage(pageNumber); } ////// /// public override void GetPageAsync(int pageNumber, object userState) { _document.GetPageAsync(pageNumber, userState); } ////// /// public override void CancelAsync(object userState) { _document.CancelAsync(userState); } ////// /// public override int GetPageNumber(ContentPosition contentPosition) { return _document.GetPageNumber(contentPosition); } ////// /// public override ContentPosition GetPagePosition(DocumentPage page) { return _document.GetPagePosition(page); } ////// /// public override ContentPosition GetObjectPosition(Object o) { return _document.GetObjectPosition(o); } #endregion Public Methods //-------------------------------------------------------------------- // // Public Properties // //-------------------------------------------------------------------- #region Public Properties ////// /// public override bool IsPageCountValid { get { return _document.IsPageCountValid; } } ////// /// public override int PageCount { get { return _document.PageCount; } } ////// /// public override Size PageSize { get { return _document.PageSize; } set { _document.PageSize = value; } } ////// /// public override IDocumentPaginatorSource Source { get { return _document; } } #endregion Public Properties //------------------------------------------------------------------- // // Internal Methods // //-------------------------------------------------------------------- #region Internal Methods internal void NotifyGetPageCompleted(GetPageCompletedEventArgs e) { OnGetPageCompleted(e); } internal void NotifyPaginationCompleted(EventArgs e) { OnPaginationCompleted(e); } internal void NotifyPaginationProgress(PaginationProgressEventArgs e) { OnPaginationProgress(e); } internal void NotifyPagesChanged(PagesChangedEventArgs e) { OnPagesChanged(e); } #endregion Internal Methods //------------------------------------------------------------------- // // Private Fields // //------------------------------------------------------------------- #region Private Fields private readonly FixedDocumentSequence _document; #endregion Private Fields //------------------------------------------------------------------- // // IServiceProvider Members // //-------------------------------------------------------------------- #region IServiceProvider Members ////// /// Returns service objects associated with this control. /// /// Specifies the type of service object to get. object IServiceProvider.GetService(Type serviceType) { return ((IServiceProvider)_document).GetService(serviceType); } #endregion IServiceProvider Members } } // 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
- DoubleUtil.cs
- RangeContentEnumerator.cs
- StyleSheetDesigner.cs
- FontWeightConverter.cs
- PnrpPermission.cs
- DataSourceCacheDurationConverter.cs
- DataGridTable.cs
- HtmlInputCheckBox.cs
- LayoutEngine.cs
- EventBuilder.cs
- RestHandlerFactory.cs
- EventMemberCodeDomSerializer.cs
- GeneralTransform3DGroup.cs
- StylusPlugin.cs
- ArraySegment.cs
- IPAddressCollection.cs
- InfoCardHelper.cs
- TextTreeTextBlock.cs
- View.cs
- XamlPointCollectionSerializer.cs
- ObjectTypeMapping.cs
- XmlSchema.cs
- ResponseStream.cs
- HostedBindingBehavior.cs
- Color.cs
- EventItfInfo.cs
- processwaithandle.cs
- SecurityBindingElement.cs
- XsltFunctions.cs
- DataBindingList.cs
- Marshal.cs
- ProfileSettingsCollection.cs
- TextRenderer.cs
- InternalTypeHelper.cs
- MenuItem.cs
- InternalReceiveMessage.cs
- X509RecipientCertificateClientElement.cs
- Drawing.cs
- SingleConverter.cs
- UrlMapping.cs
- IIS7WorkerRequest.cs
- XmlDataDocument.cs
- CurrentChangingEventArgs.cs
- DesignerProperties.cs
- TypePresenter.xaml.cs
- FilterableAttribute.cs
- PropertyConverter.cs
- BaseDataBoundControl.cs
- RemoteHelper.cs
- PublisherIdentityPermission.cs
- ContainerParagraph.cs
- InheritanceRules.cs
- Int16KeyFrameCollection.cs
- UInt32.cs
- FileNotFoundException.cs
- InstallerTypeAttribute.cs
- EncryptedType.cs
- NestPullup.cs
- ErrorStyle.cs
- ValidationErrorCollection.cs
- TransformValueSerializer.cs
- MobileTemplatedControlDesigner.cs
- OperandQuery.cs
- SqlOuterApplyReducer.cs
- InArgumentConverter.cs
- SizeAnimationUsingKeyFrames.cs
- XmlEnumAttribute.cs
- SocketConnection.cs
- DataGridViewColumnConverter.cs
- RowParagraph.cs
- Int16Converter.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- TransformerInfo.cs
- FileUtil.cs
- ParameterElement.cs
- AttributeSetAction.cs
- PreApplicationStartMethodAttribute.cs
- TabControl.cs
- RTLAwareMessageBox.cs
- WebPartMenuStyle.cs
- TreeViewBindingsEditor.cs
- SoapReflectionImporter.cs
- FormatControl.cs
- DocumentPageHost.cs
- FatalException.cs
- Control.cs
- DbConnectionInternal.cs
- VisualBasicSettings.cs
- DesignerActionList.cs
- Int32CAMarshaler.cs
- LineVisual.cs
- httpstaticobjectscollection.cs
- RayMeshGeometry3DHitTestResult.cs
- SamlAuthenticationStatement.cs
- DataRelationCollection.cs
- RsaKeyIdentifierClause.cs
- ClonableStack.cs
- Size3D.cs
- ToolboxDataAttribute.cs
- XmlSchemaElement.cs