using System;
using System.Drawing;
using System.Text;
using DevComponents.DotNetBar.Rendering;
namespace DevComponents.DotNetBar
{
    /// 
    /// Represents color table for Bar objects in various states.
    /// 
    public class Office2007BarColorTable
    {
        /// 
        /// Gets or sets the colors for top part of toolbar background.
        /// 
        public LinearGradientColorTable ToolbarTopBackground = new LinearGradientColorTable(ColorScheme.GetColor("D7E6F9"), ColorScheme.GetColor("C7DCF8"));
        /// 
        /// Gets or sets the colors for bottom part of toolbar background.
        /// 
        public LinearGradientColorTable ToolbarBottomBackground = new LinearGradientColorTable(ColorScheme.GetColor("B3D0F5"), ColorScheme.GetColor("D7E5F7"));
        /// 
        /// Gets or sets the color of the bottom border.
        /// 
        public Color ToolbarBottomBorder = ColorScheme.GetColor("BAD4F7");
        /// 
        /// Gets or sets the popup toolbar background color.
        /// 
        public LinearGradientColorTable PopupToolbarBackground = new LinearGradientColorTable(ColorScheme.GetColor("FAFAFA"), Color.Empty);
        /// 
        /// Gets or sets the color of popup toolbar border.
        /// 
        public Color PopupToolbarBorder = ColorScheme.GetColor("868686");
        /// 
        /// Gets or sets the status bar top border color.
        /// 
        public Color StatusBarTopBorder = Color.Empty;
        /// 
        /// Gets or sets the status bar top border light color.
        /// 
        public Color StatusBarTopBorderLight = Color.Empty;
        /// 
        /// Gets or sets the alternative background colors for the status bar.
        /// 
        public BackgroundColorBlendCollection StatusBarAltBackground = new BackgroundColorBlendCollection();
    }
}