Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Pigolkine <pigolkine@mono-cvs.ximian.com>2003-03-15 23:13:27 +0300
committerAlexandre Pigolkine <pigolkine@mono-cvs.ximian.com>2003-03-15 23:13:27 +0300
commitc3af0168a9d70f5b5c0aff7cd9f600be7c1906d7 (patch)
tree1f91c06e88c282811fa06d617a7916124fcbf01f /mcs/class/System.Drawing/System.Drawing.Drawing2D/LinearGradientBrush.cs
parentec7a156339f6dafd10063c4e60ae3e611dda9eac (diff)
checkin for Dennis Hayes <dennish@raytek.com>, see ChangeLog
svn path=/trunk/mcs/; revision=12550
Diffstat (limited to 'mcs/class/System.Drawing/System.Drawing.Drawing2D/LinearGradientBrush.cs')
-rw-r--r--mcs/class/System.Drawing/System.Drawing.Drawing2D/LinearGradientBrush.cs95
1 files changed, 91 insertions, 4 deletions
diff --git a/mcs/class/System.Drawing/System.Drawing.Drawing2D/LinearGradientBrush.cs b/mcs/class/System.Drawing/System.Drawing.Drawing2D/LinearGradientBrush.cs
index a737a07ef85..0342622d0c3 100644
--- a/mcs/class/System.Drawing/System.Drawing.Drawing2D/LinearGradientBrush.cs
+++ b/mcs/class/System.Drawing/System.Drawing.Drawing2D/LinearGradientBrush.cs
@@ -8,15 +8,102 @@
//
using System;
-namespace System.Drawing2D
+namespace System.Drawing.Drawing2D
{
/// <summary>
/// Summary description for LinearGradientBrush.
/// </summary>
- public class LinearGradientBrush
+ public sealed class LinearGradientBrush : Brush
{
- public LinearGradientBrush()
- {
+ //Constructors.
+ public LinearGradientBrush(Point point1, Point point2, Color color1, Color color2) {
}
+
+ public LinearGradientBrush(PointF point1, PointF point2, Color color1, Color color2) {
+ }
+
+ public LinearGradientBrush(Rectangle rect, Color color1, Color color2, LinearGradientMode linearGradientMode) {
+ }
+
+
+ //public Properties
+ public Blend Blend {
+ get {
+ throw new NotImplementedException ();
+ }
+ set {
+ }
+ }
+
+ public bool GammaCorrection {
+ get {
+ throw new NotImplementedException ();
+ }
+ set {
+ }
+ }
+
+ public ColorBlend InterpolationColors {
+ get {
+ throw new NotImplementedException ();
+ }
+ set {
+ }
+ }
+
+ public Color [] LinearColors {
+ get {
+ throw new NotImplementedException ();
+ }
+ set {
+ }
+ }
+ public RectangleF Rectange {
+ get {
+ throw new NotImplementedException ();
+ }
+ }
+ public Matrix Transform {
+ get {
+ throw new NotImplementedException ();
+ }
+ set {
+ }
+ }
+
+ public WrapMode WrapMode {
+ get {
+ throw new NotImplementedException ();
+ }
+ set {
+ }
+ }
+
+ // Public Methods
+
+ public override object Clone(){
+ throw new NotImplementedException ();
+ }
+
+ public void MultiplyTransform(Matrix matrix){
+ throw new NotImplementedException ();
+ }
+
+ public void MultiplyTransform(Matrix matrix, MatrixOrder order){
+ throw new NotImplementedException ();
+ }
+
+ public void ResetTransform(){
+ throw new NotImplementedException ();
+ }
+
+ public void RotateTransform(float angle, MatrixOrder order){
+ throw new NotImplementedException ();
+ }
+
+ public void RotateTransform(float angle){
+ throw new NotImplementedException ();
+ }
+
}
}