FloaterBaseParaClient.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Framework / MS / Internal / PtsHost / FloaterBaseParaClient.cs / 1 / FloaterBaseParaClient.cs

                            //---------------------------------------------------------------------------- 
//
// Copyright (C) Microsoft Corporation.  All rights reserved.
//
// Description: FloaterBaseParaClient class: Base para client class 
//              for floaters and UIElements
// 
//--------------------------------------------------------------------------- 

using System; 
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Diagnostics; 
using System.Security;
using System.Windows; 
using System.Windows.Media; 
using System.Windows.Documents;
using MS.Internal.Documents; 
using MS.Internal.Text;

using MS.Internal.PtsHost.UnsafeNativeMethods;
 
namespace MS.Internal.PtsHost
{ 
    // --------------------------------------------------------------------- 
    // FloaterBaseParaClient class: base class for floater and UIElement
    // para clients 
    // ---------------------------------------------------------------------
    internal abstract class FloaterBaseParaClient : BaseParaClient
    {
        //-------------------------------------------------------------------- 
        //
        //  Constructors 
        // 
        //-------------------------------------------------------------------
 
        #region Constructors

        // ------------------------------------------------------------------
        // Constructor. 
        //
        //      paragraph - Paragraph associated with this object. 
        // ------------------------------------------------------------------ 
        protected FloaterBaseParaClient(FloaterBaseParagraph paragraph)
            : base(paragraph) 
        {
        }

        #endregion Constructors 

        // ----------------------------------------------------------------- 
        // Arrange floater 
        //
        //      rcFloater - rectangle of the floater 
        //      rcHostPara - rectangle of the host text paragraph.
        //      fswdirParent- flow direction of parent
        //      pageContext - page context
        // ------------------------------------------------------------------ 
        internal virtual void ArrangeFloater(PTS.FSRECT rcFloater, PTS.FSRECT rcHostPara, uint fswdirParent, PageContext pageContext)
        { 
        } 

        // ----------------------------------------------------------------- 
        // Return TextContentRange for the content of the paragraph.
        // -----------------------------------------------------------------
        internal override abstract TextContentRange GetTextContentRange();
    } 
}

// 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.
//
// Description: FloaterBaseParaClient class: Base para client class 
//              for floaters and UIElements
// 
//--------------------------------------------------------------------------- 

using System; 
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Diagnostics; 
using System.Security;
using System.Windows; 
using System.Windows.Media; 
using System.Windows.Documents;
using MS.Internal.Documents; 
using MS.Internal.Text;

using MS.Internal.PtsHost.UnsafeNativeMethods;
 
namespace MS.Internal.PtsHost
{ 
    // --------------------------------------------------------------------- 
    // FloaterBaseParaClient class: base class for floater and UIElement
    // para clients 
    // ---------------------------------------------------------------------
    internal abstract class FloaterBaseParaClient : BaseParaClient
    {
        //-------------------------------------------------------------------- 
        //
        //  Constructors 
        // 
        //-------------------------------------------------------------------
 
        #region Constructors

        // ------------------------------------------------------------------
        // Constructor. 
        //
        //      paragraph - Paragraph associated with this object. 
        // ------------------------------------------------------------------ 
        protected FloaterBaseParaClient(FloaterBaseParagraph paragraph)
            : base(paragraph) 
        {
        }

        #endregion Constructors 

        // ----------------------------------------------------------------- 
        // Arrange floater 
        //
        //      rcFloater - rectangle of the floater 
        //      rcHostPara - rectangle of the host text paragraph.
        //      fswdirParent- flow direction of parent
        //      pageContext - page context
        // ------------------------------------------------------------------ 
        internal virtual void ArrangeFloater(PTS.FSRECT rcFloater, PTS.FSRECT rcHostPara, uint fswdirParent, PageContext pageContext)
        { 
        } 

        // ----------------------------------------------------------------- 
        // Return TextContentRange for the content of the paragraph.
        // -----------------------------------------------------------------
        internal override abstract TextContentRange GetTextContentRange();
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.

                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK