Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / 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
- ComplexPropertyEntry.cs
- ClientSettingsStore.cs
- Function.cs
- TextMetrics.cs
- DataRowView.cs
- XmlQueryStaticData.cs
- RenderingEventArgs.cs
- SR.Designer.cs
- SecurityKeyIdentifier.cs
- ComplexObject.cs
- FormatterServicesNoSerializableCheck.cs
- StylusPlugin.cs
- KeyTimeConverter.cs
- SimplePropertyEntry.cs
- TextComposition.cs
- BufferAllocator.cs
- XmlNotation.cs
- ResXBuildProvider.cs
- _emptywebproxy.cs
- CharAnimationBase.cs
- KeyboardEventArgs.cs
- ThemeDictionaryExtension.cs
- ConfigurationValues.cs
- HtmlInputButton.cs
- BulletDecorator.cs
- Utils.cs
- EventLogTraceListener.cs
- TabControlCancelEvent.cs
- IntSecurity.cs
- FormView.cs
- DataObjectFieldAttribute.cs
- SafeThreadHandle.cs
- IntersectQueryOperator.cs
- DecoderFallbackWithFailureFlag.cs
- UIElement3D.cs
- PrincipalPermission.cs
- DataGridRelationshipRow.cs
- SqlConnectionPoolProviderInfo.cs
- RotateTransform.cs
- BatchServiceHost.cs
- DropShadowBitmapEffect.cs
- WindowVisualStateTracker.cs
- ValidationRule.cs
- HwndTarget.cs
- BookmarkOptionsHelper.cs
- BinaryCommonClasses.cs
- FrameworkTemplate.cs
- ProgressBar.cs
- AutomationProperty.cs
- QueryAccessibilityHelpEvent.cs
- HtmlUtf8RawTextWriter.cs
- ToolboxComponentsCreatedEventArgs.cs
- IPGlobalProperties.cs
- RandomNumberGenerator.cs
- State.cs
- FormViewCommandEventArgs.cs
- LongTypeConverter.cs
- EventWaitHandleSecurity.cs
- ObjectDataSourceStatusEventArgs.cs
- XPathChildIterator.cs
- NonVisualControlAttribute.cs
- DetailsViewPageEventArgs.cs
- ControlAdapter.cs
- AspNetHostingPermission.cs
- OperationSelectorBehavior.cs
- Point.cs
- CachedBitmap.cs
- BlockUIContainer.cs
- RootBuilder.cs
- DataListCommandEventArgs.cs
- IERequestCache.cs
- TimeIntervalCollection.cs
- NavigationService.cs
- UIElement.cs
- EventItfInfo.cs
- StylusOverProperty.cs
- DataGridViewComboBoxCell.cs
- ErrorEventArgs.cs
- PrintController.cs
- User.cs
- GlyphRunDrawing.cs
- xamlnodes.cs
- SingleObjectCollection.cs
- Clause.cs
- ActivityFunc.cs
- PageContent.cs
- ClockController.cs
- AdPostCacheSubstitution.cs
- XmlLangPropertyAttribute.cs
- RolePrincipal.cs
- WorkflowInstanceQuery.cs
- DataBindingCollectionEditor.cs
- MergePropertyDescriptor.cs
- ToolStripStatusLabel.cs
- NetPeerTcpBindingCollectionElement.cs
- QuaternionRotation3D.cs
- WebBaseEventKeyComparer.cs
- DocumentsTrace.cs
- MemberMaps.cs
- TemplatedMailWebEventProvider.cs