using System;
using System.Text;
using System.Drawing;
namespace DevComponents.DotNetBar.Rendering
{
///
/// Defines the color table for the quick access toolbar in all states.
///
public class Office2007QuickAccessToolbarColorTable
{
///
/// Gets or sets the colors for the quick access toolbar background when hosted in ribbon control caption and form is active
/// or the background colors when toolbar is hosted below the ribbon control.
///
public Office2007QuickAccessToolbarStateColorTable Active = new Office2007QuickAccessToolbarStateColorTable();
///
/// Gets or sets the colors for the quick access toolbar background when hosted in ribbon control caption and form is inactive
///
public Office2007QuickAccessToolbarStateColorTable Inactive = new Office2007QuickAccessToolbarStateColorTable();
///
/// Gets or sets the colors for the quick access toolbar background when positioned below the ribbon bar.
///
public Office2007QuickAccessToolbarStateColorTable Standalone = new Office2007QuickAccessToolbarStateColorTable();
///
/// Gets or sets the background color of Customize Quick Access Toolbar menu label displayed on customize quick access toolbar menu.
///
public Color QatCustomizeMenuLabelBackground = Color.Empty;
///
/// Gets or sets the text color of Customize Quick Access Toolbar menu label displayed on customize quick access toolbar menu.
///
public Color QatCustomizeMenuLabelText = Color.Empty;
}
}