Click here to Skip to main content
15,886,873 members
Articles / Web Development / ASP.NET

An Open Source RDL Engine

Rate me:
Please Sign up or sign in to vote.
4.77/5 (12 votes)
20 Dec 2010CPOL3 min read 83.6K   3.5K   55  
An Open Source RDL engine for rendering reports to WinForms or ASP.NET
/*-----------------------------------------------------------------------------------
This file is part of the SawikiSoft RDL Engine.
The SawikiSoft RDL Engine is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

The SawikiSoft RDL Engine is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with Foobar.  If not, see <http://www.gnu.org/licenses/>.
-----------------------------------------------------------------------------------*/
using System;
using System.Collections.Generic;
using System.Text;

namespace Rdl.Render
{
    public class BoxStyle
    {
        public BorderColor BorderColor;
        public BorderStyle BorderStyle;
        public BorderWidth BorderWidth;
        public string BackgroundColor;
        public Rdl.Engine.Style.GradientTypeEnum BackgroundGradientType;
        public string BackgroundGradientEndColor;
        public ImageData BackgroundImage = null;
        //public Rdl.Engine.BackgroundImage BackgroundImage;
        public string Color;
        public Rdl.Engine.Size PaddingLeft;
        public Rdl.Engine.Size PaddingRight;
        public Rdl.Engine.Size PaddingTop;
        public Rdl.Engine.Size PaddingBottom;

        public BoxStyle(Rdl.Engine.Style style, Rdl.Runtime.Context context)
        {
            if (style == null)
                style = Rdl.Engine.Style.DefaultStyle;
            BorderColor = new BorderColor(style.BorderColor, context);
            BorderStyle = new BorderStyle(style.BorderStyle, context);
            BorderWidth = new BorderWidth(style.BorderWidth, context);
            BackgroundColor = style.BackgroundColor(context);
            BackgroundGradientType = style.BackgroundGradientType(context);
            BackgroundGradientEndColor = style.BackgroundGradientEndColor(context);
            Color = style.Color(context);
            PaddingLeft = style.PaddingLeft(context);
            PaddingRight = style.PaddingRight(context);
            PaddingTop = style.PaddingTop(context);
            PaddingBottom = style.PaddingBottom(context);

            Rdl.Engine.BackgroundImage bi = style.BackgroundImage;
            if (bi != null)
            {
                BackgroundImage = new ImageData();
                BackgroundImage.imageData = bi.GetImage(context);
                BackgroundImage.Sizing = bi.Sizing;
                BackgroundImage.ImageRepeat = bi.ImageRepeat(context);
            }
        }

        public override bool Equals(object obj)
        {
            BoxStyle bs = obj as BoxStyle;

            return (
                BorderColor.Equals(bs.BorderColor) &&
                BorderStyle.Equals(bs.BorderStyle) &&
                BorderWidth.Equals(bs.BorderWidth) &&
                BackgroundColor.Equals(bs.BackgroundColor) &&
                BackgroundGradientType.Equals(bs.BackgroundGradientType) &&
                BackgroundGradientEndColor.Equals(bs.BackgroundGradientEndColor) &&
                BackgroundImage == bs.BackgroundImage &&
                Color.Equals(bs.Color) &&
                PaddingLeft.Equals(bs.PaddingLeft) &&
                PaddingRight.Equals(bs.PaddingRight) &&
                PaddingTop.Equals(bs.PaddingTop) &&
                PaddingBottom.Equals(bs.PaddingBottom) );
        }

        public override int GetHashCode()
        {
            return base.GetHashCode();
        }

        //public string BackgroundImageType
        //{
        //    get
        //    {
        //        if (BackgroundImage != null)
        //            return BackgroundImage.MIMEType;
        //        else
        //            return null;
        //    }
        //}
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Sawiki Software
United States United States
I have been a professional software developer for 25+ years, most of it supporting the business community of Maine. I have been working with MS dotnet since 1.0 beta. I organized Sawiki Software LLC as an outlet for some open source software that I have been working on.

Comments and Discussions