#region PDFsharp - A .NET library for processing PDF
//
// Authors:
// Stefan Lange
//
// Copyright (c) 2005-2017 empira Software GmbH, Cologne Area (Germany)
//
// http://www.pdfsharp.com
// http://sourceforge.net/projects/pdfsharp
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included
// in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
#endregion
using System;
#if CORE
#endif
#if GDI
using System.Drawing;
using System.Drawing.Drawing2D;
#endif
#if WPF
using System.Windows.Media;
#endif
namespace PdfSharp.Drawing
{
#if true_
///
/// Not used in this implementation.
///
[Flags]
public enum XStringFormatFlags
{
//DirectionRightToLeft = 0x0001,
//DirectionVertical = 0x0002,
//FitBlackBox = 0x0004,
//DisplayFormatControl = 0x0020,
//NoFontFallback = 0x0400,
///
/// The default value.
///
MeasureTrailingSpaces = 0x0800,
//NoWrap = 0x1000,
//LineLimit = 0x2000,
//NoClip = 0x4000,
}
#endif
///
/// Represents the text layout information.
///
public class XStringFormat
{
///
/// Initializes a new instance of the class.
///
public XStringFormat()
{
#if WPF
GetType(); // Make ReSharper happy.
#endif
}
//TODO public StringFormat(StringFormat format);
//public StringFormat(StringFormatFlags options);
//public StringFormat(StringFormatFlags options, int language);
//public object Clone();
//public void Dispose();
//private void Dispose(bool disposing);
//protected override void Finalize();
//public float[] GetTabStops(out float firstTabOffset);
//public void SetDigitSubstitution(int language, StringDigitSubstitute substitute);
//public void SetMeasurableCharacterRanges(CharacterRange[] ranges);
//public void SetTabStops(float firstTabOffset, float[] tabStops);
//public override string ToString();
///
/// Gets or sets horizontal text alignment information.
///
public XStringAlignment Alignment
{
get { return _alignment; }
set
{
_alignment = value;
#if CORE || GDI
#if UseGdiObjects
// Update StringFormat only if it exists.
if (_stringFormat != null)
{
_stringFormat.Alignment = (StringAlignment)value;
}
#endif
#endif
}
}
XStringAlignment _alignment;
//public int DigitSubstitutionLanguage { get; }
//public StringDigitSubstitute DigitSubstitutionMethod { get; }
//public StringFormatFlags FormatFlags { get; set; }
//public static StringFormat GenericDefault { get; }
//public static StringFormat GenericTypographic { get; }
//public HotkeyPrefix HotkeyPrefix { get; set; }
///
/// Gets or sets the line alignment.
///
public XLineAlignment LineAlignment
{
get { return _lineAlignment; }
set
{
_lineAlignment = value;
#if CORE || GDI
#if UseGdiObjects
// Update StringFormat only if it exists.
if (_stringFormat != null)
{
// BaseLine is specific to PDFsharp.
if (value == XLineAlignment.BaseLine)
_stringFormat.LineAlignment = StringAlignment.Near;
else
_stringFormat.LineAlignment = (StringAlignment)value;
}
#endif
#endif
}
}
XLineAlignment _lineAlignment;
//public StringTrimming Trimming { get; set; }
///
/// Gets a new XStringFormat object that aligns the text left on the base line.
///
[Obsolete("Use XStringFormats.Default. (Note plural in class name.)")]
public static XStringFormat Default
{
get { return XStringFormats.Default; }
}
///
/// Gets a new XStringFormat object that aligns the text top left of the layout rectangle.
///
[Obsolete("Use XStringFormats.Default. (Note plural in class name.)")]
public static XStringFormat TopLeft
{
get { return XStringFormats.TopLeft; }
}
///
/// Gets a new XStringFormat object that centers the text in the middle of the layout rectangle.
///
[Obsolete("Use XStringFormats.Center. (Note plural in class name.)")]
public static XStringFormat Center
{
get { return XStringFormats.Center; }
}
///
/// Gets a new XStringFormat object that centers the text at the top of the layout rectangle.
///
[Obsolete("Use XStringFormats.TopCenter. (Note plural in class name.)")]
public static XStringFormat TopCenter
{
get { return XStringFormats.TopCenter; }
}
///
/// Gets a new XStringFormat object that centers the text at the bottom of the layout rectangle.
///
[Obsolete("Use XStringFormats.BottomCenter. (Note plural in class name.)")]
public static XStringFormat BottomCenter
{
get { return XStringFormats.BottomCenter; }
}
#if GDI
//#if UseGdiObjects
internal StringFormat RealizeGdiStringFormat()
{
if (_stringFormat == null)
{
// It seems that StringFormat.GenericTypographic is a global object and we need "Clone()" to avoid side effects.
_stringFormat = (StringFormat)StringFormat.GenericTypographic.Clone();
_stringFormat.Alignment = (StringAlignment)_alignment;
// BaseLine is specific to PDFsharp.
if (_lineAlignment == XLineAlignment.BaseLine)
_stringFormat.LineAlignment = StringAlignment.Near;
else
_stringFormat.LineAlignment = (StringAlignment)_lineAlignment;
//_stringFormat.FormatFlags = (StringFormatFlags)_formatFlags;
// Bugfix: Set MeasureTrailingSpaces to get the correct width with Graphics.MeasureString().
// Before, MeasureString() didn't include blanks in width calculation, which could result in text overflowing table or page border before wrapping. $MaOs
_stringFormat.FormatFlags = _stringFormat.FormatFlags | StringFormatFlags.MeasureTrailingSpaces;
}
return _stringFormat;
}
StringFormat _stringFormat;
//#endif
#endif
}
}