Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / MS / Internal / documents / FixedDocumentPaginator.cs / 1305600 / 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 : [....] - 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
- TraceEventCache.cs
- BidPrivateBase.cs
- PointF.cs
- OracleColumn.cs
- Int32CollectionValueSerializer.cs
- MatrixUtil.cs
- RemotingService.cs
- complextypematerializer.cs
- ColumnPropertiesGroup.cs
- ListView.cs
- CFStream.cs
- FormParameter.cs
- ScriptResourceAttribute.cs
- COM2PropertyDescriptor.cs
- SmtpNtlmAuthenticationModule.cs
- TableStyle.cs
- IntermediatePolicyValidator.cs
- SerializableTypeCodeDomSerializer.cs
- BaseTemplateBuildProvider.cs
- ExpressionsCollectionConverter.cs
- InstalledFontCollection.cs
- WinFormsComponentEditor.cs
- XmlSchemaAnnotated.cs
- InstalledFontCollection.cs
- TextEditorSelection.cs
- TileBrush.cs
- EntitySetBase.cs
- PointConverter.cs
- CompiledQueryCacheKey.cs
- ScriptResourceAttribute.cs
- BitStream.cs
- CmsInterop.cs
- SmiContextFactory.cs
- EncoderParameters.cs
- WebBrowserNavigatedEventHandler.cs
- XPathDocumentBuilder.cs
- PeerNameRecord.cs
- EndEvent.cs
- CmsInterop.cs
- SoundPlayerAction.cs
- RuntimeUtils.cs
- CodeTypeReferenceCollection.cs
- Point3DCollection.cs
- MemberInfoSerializationHolder.cs
- ProgramPublisher.cs
- ApplicationInterop.cs
- ReachFixedPageSerializerAsync.cs
- SemanticResolver.cs
- SequentialUshortCollection.cs
- Task.cs
- DocumentApplicationJournalEntry.cs
- RawStylusInputReport.cs
- ToolStripDropDown.cs
- TextHidden.cs
- QilInvoke.cs
- SQLBinary.cs
- WorkflowWebHostingModule.cs
- HttpDebugHandler.cs
- SqlNotificationRequest.cs
- XPathDescendantIterator.cs
- ChtmlTextWriter.cs
- OletxTransactionManager.cs
- HwndHostAutomationPeer.cs
- SqlError.cs
- SystemIcmpV6Statistics.cs
- DataGridCell.cs
- SpeakInfo.cs
- SqlRewriteScalarSubqueries.cs
- TypeContext.cs
- VirtualDirectoryMapping.cs
- ServiceObjectContainer.cs
- CreateUserWizardStep.cs
- FixedDocumentSequencePaginator.cs
- ManagementEventWatcher.cs
- Point4DConverter.cs
- PersonalizablePropertyEntry.cs
- XmlSchemaCompilationSettings.cs
- DispatcherObject.cs
- ChildTable.cs
- ThemeableAttribute.cs
- ErasingStroke.cs
- WMIInterop.cs
- PrePrepareMethodAttribute.cs
- CultureInfo.cs
- SimpleFileLog.cs
- AssemblyName.cs
- AnnotationStore.cs
- LinearQuaternionKeyFrame.cs
- ContainsRowNumberChecker.cs
- XmlDataSource.cs
- DataGridSortCommandEventArgs.cs
- AuthenticationModulesSection.cs
- XmlValidatingReaderImpl.cs
- EntityContainerAssociationSetEnd.cs
- HwndProxyElementProvider.cs
- PassportPrincipal.cs
- DesignerSerializerAttribute.cs
- BinaryNode.cs
- LocalFileSettingsProvider.cs
- ManagedWndProcTracker.cs