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 / 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
- DataGridViewColumnCollection.cs
- CompensatableTransactionScopeActivityDesigner.cs
- QuaternionAnimationBase.cs
- SineEase.cs
- SessionStateModule.cs
- BufferedStream2.cs
- CollectionsUtil.cs
- DataList.cs
- OutputCache.cs
- odbcmetadatafactory.cs
- Screen.cs
- IIS7UserPrincipal.cs
- KeyValueSerializer.cs
- ExpressionBuilderCollection.cs
- PageOutputColor.cs
- _HelperAsyncResults.cs
- ScrollEventArgs.cs
- dataobject.cs
- SoapFormatter.cs
- ListBoxChrome.cs
- RoutedPropertyChangedEventArgs.cs
- ContentFileHelper.cs
- CodeCompileUnit.cs
- InfiniteTimeSpanConverter.cs
- DesignTimeDataBinding.cs
- ColumnWidthChangingEvent.cs
- PeerToPeerException.cs
- RelOps.cs
- EditorPartChrome.cs
- StylusSystemGestureEventArgs.cs
- WriterOutput.cs
- TokenCreationParameter.cs
- SafeFileMappingHandle.cs
- BamlLocalizableResourceKey.cs
- SpellerStatusTable.cs
- DataGridViewHitTestInfo.cs
- MultiDataTrigger.cs
- HWStack.cs
- TaiwanCalendar.cs
- SQLDecimal.cs
- Thread.cs
- OdbcException.cs
- _NestedSingleAsyncResult.cs
- FormClosedEvent.cs
- ClientTargetSection.cs
- ConnectionStringsExpressionBuilder.cs
- WinInetCache.cs
- NavigationFailedEventArgs.cs
- securestring.cs
- SpellerStatusTable.cs
- AVElementHelper.cs
- NoClickablePointException.cs
- ParameterToken.cs
- ListViewInsertEventArgs.cs
- ColorConverter.cs
- DataSetMappper.cs
- DataServiceOperationContext.cs
- ConfigDefinitionUpdates.cs
- ModuleBuilderData.cs
- WebControlsSection.cs
- AdPostCacheSubstitution.cs
- Timer.cs
- SubMenuStyleCollection.cs
- ProgressBar.cs
- CheckedPointers.cs
- EventData.cs
- MemberMemberBinding.cs
- DateRangeEvent.cs
- ToolStripHighContrastRenderer.cs
- MultipartIdentifier.cs
- DataGridViewCellConverter.cs
- PersistenceTypeAttribute.cs
- ScriptReferenceBase.cs
- IResourceProvider.cs
- XmlEncoding.cs
- QuotedPairReader.cs
- CalendarTable.cs
- PartialTrustVisibleAssembly.cs
- CmsInterop.cs
- UnsafeNativeMethods.cs
- FacetValues.cs
- SqlCacheDependencySection.cs
- EnvironmentPermission.cs
- WebColorConverter.cs
- InputBindingCollection.cs
- ControlPropertyNameConverter.cs
- DocumentOrderComparer.cs
- SelectionPatternIdentifiers.cs
- LexicalChunk.cs
- ErasingStroke.cs
- SerializationSectionGroup.cs
- PersistChildrenAttribute.cs
- RuleConditionDialog.Designer.cs
- TypeInitializationException.cs
- CellLabel.cs
- Soap11ServerProtocol.cs
- DefaultExpressionVisitor.cs
- ImageSource.cs
- Parameter.cs
- EventHandlersStore.cs