2002-11-17 Daniel Morgan <danmorg@sc.rr.com>
* pango/Scale.cs: added file containing constants for text widgets needing Pango Scale Attribute svn path=/trunk/gtk-sharp/; revision=9034
This commit is contained in:
parent
bff04dbdf3
commit
5dcbe5b0af
2 changed files with 27 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2002-11-17 Daniel Morgan <danmorg@sc.rr.com>
|
||||
|
||||
* pango/Scale.cs: added file containing constants
|
||||
for text widgets needing Pango Scale Attribute
|
||||
|
||||
2002-11-13 Vladimir Vukicevic <vladimir@pobox.com>
|
||||
|
||||
* gtk/CanvasItem.custom: use base() to set Raw in constructor, so
|
||||
|
|
22
pango/Scale.cs
Executable file
22
pango/Scale.cs
Executable file
|
@ -0,0 +1,22 @@
|
|||
//
|
||||
// Scale.cs
|
||||
//
|
||||
// Author: Daniel Morgan <danmorg@sc.rr.com>
|
||||
//
|
||||
// Copyright (C) 2002 Daniel Morgan
|
||||
//
|
||||
|
||||
namespace Pango {
|
||||
|
||||
public sealed class Scale {
|
||||
public static readonly double PangoScale = 1024.0;
|
||||
|
||||
public static readonly double XX_Small = 0.5787037037037;
|
||||
public static readonly double X_Small = 0.6444444444444;
|
||||
public static readonly double Small = 0.8333333333333;
|
||||
public static readonly double Medium = 1.0;
|
||||
public static readonly double Large = 1.2;
|
||||
public static readonly double X_Large = 1.4399999999999;
|
||||
public static readonly double XX_Large = 1.728;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue