using System;
using System.Text;
using System.Drawing;
namespace DevComponents.DotNetBar
{
///
/// Represents base class for Ribbon Control painting.
///
internal class RibbonControlPainter
{
///
/// Paints controls background
///
public virtual void PaintBackground(RibbonControlRendererEventArgs e)
{
}
///
/// Paints form caption background
///
public virtual void PaintCaptionBackground(RibbonControlRendererEventArgs e, Rectangle displayRect)
{
}
///
/// Paints form caption text when ribbon control is displaying form caption
///
public virtual void PaintCaptionText(RibbonControlRendererEventArgs e) { }
///
/// Paints the background of quick access toolbar.
///
public virtual void PaintQuickAccessToolbarBackground(RibbonControlRendererEventArgs e) { }
}
}