using System;
using System.Text;
using System.Drawing;
namespace DevComponents.DotNetBar.Rendering
{
    /// 
    /// Represents the color table for Office 2007 Style Side Bar Control.
    /// 
    public class Office2007SideBarColorTable
    {
        /// 
        /// Gets or sets the background color of the control.
        /// 
        public LinearGradientColorTable Background = null;
        /// 
        /// Gets or sets the control border color.
        /// 
        public Color Border = Color.Empty;
        /// 
        /// Gets or sets the color of SideBarPanelItem text.
        /// 
        public Color SideBarPanelItemText = Color.Empty;
        /// 
        /// Gets or sets the color table for SideBarPanelItem in default state.
        /// 
        public GradientColorTable SideBarPanelItemDefault = null;
        /// 
        /// Gets or sets the color table for SideBarPanelItem in mouse over state.
        /// 
        public GradientColorTable SideBarPanelItemMouseOver = null;
        /// 
        /// Gets or sets the color table for SideBarPanelItem in expanded state.
        /// 
        public GradientColorTable SideBarPanelItemExpanded = null;
        /// 
        /// Gets or sets the color table for SideBarPanelItem when mouse button is pressed on the item.
        /// 
        public GradientColorTable SideBarPanelItemPressed = null;
    }
}