Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Framework / MS / Internal / documents / FixedDocumentPaginator.cs / 1 / FixedDocumentPaginator.cs
//---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // // File: FixedDocumentPaginator.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 FixedDocumentPaginator : DynamicDocumentPaginator, IServiceProvider { //------------------------------------------------------------------- // // Constructors // //------------------------------------------------------------------- #region Constructors ////// Constructor /// internal FixedDocumentPaginator(FixedDocument 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 FixedDocument _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: FixedDocumentPaginator.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 FixedDocumentPaginator : DynamicDocumentPaginator, IServiceProvider { //------------------------------------------------------------------- // // Constructors // //------------------------------------------------------------------- #region Constructors ////// Constructor /// internal FixedDocumentPaginator(FixedDocument 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 FixedDocument _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
- _ScatterGatherBuffers.cs
- SmiTypedGetterSetter.cs
- ResXResourceWriter.cs
- DataObject.cs
- StylusButtonEventArgs.cs
- IndexedDataBuffer.cs
- TemplateEditingService.cs
- PhysicalFontFamily.cs
- _Events.cs
- ListViewItemMouseHoverEvent.cs
- AspNetPartialTrustHelpers.cs
- Table.cs
- MimeObjectFactory.cs
- Calendar.cs
- SharedDp.cs
- TargetInvocationException.cs
- GlyphingCache.cs
- InfiniteIntConverter.cs
- X509IssuerSerialKeyIdentifierClause.cs
- ProxyOperationRuntime.cs
- Socket.cs
- DataGridDefaultColumnWidthTypeConverter.cs
- TableLayoutStyleCollection.cs
- HMACRIPEMD160.cs
- OneOfTypeConst.cs
- ButtonChrome.cs
- StorageConditionPropertyMapping.cs
- ImageInfo.cs
- ActivityBuilderHelper.cs
- MessagePropertyVariants.cs
- MenuItem.cs
- TTSEngineProxy.cs
- TextBlock.cs
- SafeIUnknown.cs
- WebPartUserCapability.cs
- ContentElement.cs
- SystemIPv4InterfaceProperties.cs
- PartialTrustVisibleAssemblyCollection.cs
- InternalPermissions.cs
- ValidatingReaderNodeData.cs
- DesignSurfaceCollection.cs
- BeginGetFileNameFromUserRequest.cs
- EntitySetDataBindingList.cs
- SiteMapNode.cs
- HttpHandlerActionCollection.cs
- Matrix3D.cs
- DispatcherOperation.cs
- WindowsAuthenticationEventArgs.cs
- XsltFunctions.cs
- CalendarAutoFormatDialog.cs
- AutomationPeer.cs
- ModuleBuilder.cs
- CustomCategoryAttribute.cs
- Wizard.cs
- DesignRelation.cs
- EnumerableCollectionView.cs
- EventMappingSettingsCollection.cs
- DesignSurface.cs
- HtmlLink.cs
- DbUpdateCommandTree.cs
- PenLineJoinValidation.cs
- ExternalFile.cs
- StyleXamlTreeBuilder.cs
- SystemInformation.cs
- StringUtil.cs
- Menu.cs
- ApplicationSettingsBase.cs
- GeneralTransform3DCollection.cs
- XmlNamedNodeMap.cs
- X509ClientCertificateAuthentication.cs
- TokenBasedSet.cs
- DataSourceExpression.cs
- DateTimeConverter.cs
- KnownTypes.cs
- RIPEMD160Managed.cs
- SqlStream.cs
- ToolStripContentPanelDesigner.cs
- PassportAuthentication.cs
- SafeMemoryMappedFileHandle.cs
- DataGridViewCellEventArgs.cs
- RtfToXamlReader.cs
- SafeHandle.cs
- GeometryModel3D.cs
- TableLayoutPanel.cs
- IndentTextWriter.cs
- TextTreeUndo.cs
- RegexWorker.cs
- XPathPatternParser.cs
- UnauthorizedWebPart.cs
- UnknownBitmapEncoder.cs
- WebHttpSecurityModeHelper.cs
- ErrorHandler.cs
- DbConnectionPoolOptions.cs
- DesignerCommandSet.cs
- MethodInfo.cs
- XMLUtil.cs
- ResourcesBuildProvider.cs
- MembershipAdapter.cs
- EventLogInternal.cs
- NullableIntAverageAggregationOperator.cs