/*
Copyright 2012 Justin LeCheminant
This file is part of WindowsFormsCalendar.
indowsFormsCalendar 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.
indowsFormsCalendar 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 indowsFormsCalendar. If not, see .
*/
using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using System.Drawing.Drawing2D;
namespace WindowsFormsCalendar
{
///
/// Renders the professional calendar control
///
public class CalendarProfessionalRenderer
: CalendarSystemRenderer
{
#region Fields
///
/// HeaderA
///
public Color HeaderA = FromHex("#E4ECF6");
///
/// HeaderB
///
public Color HeaderB = FromHex("#D6E2F1");
///
/// HeaderC
///
public Color HeaderC = FromHex("#C2D4EB");
///
/// HeaderD
///
public Color HeaderD = FromHex("#D0DEEF");
///
/// TodayA
///
public Color TodayA = FromHex("#F8D478");
///
/// TodayB
///
public Color TodayB = FromHex("#F8D478");
///
/// TodayC
///
public Color TodayC = FromHex("#F2AA36");
///
/// TodayD
///
public Color TodayD = FromHex("#F7C966");
#endregion
///
/// Initializes a new instance of the class.
///
/// The c.
public CalendarProfessionalRenderer(Calendar c)
: base(c)
{
ColorTable.Background = FromHex("#E3EFFF");
ColorTable.DayBackgroundEven = FromHex("#A5BFE1");
ColorTable.DayBackgroundOdd = FromHex("#FFFFFF");
ColorTable.DayBackgroundSelected = FromHex("#E6EDF7");
ColorTable.DayBorder = FromHex("#5D8CC9");
ColorTable.DayHeaderBackground = FromHex("#DFE8F5");
ColorTable.DayHeaderText = Color.Black;
ColorTable.DayHeaderSecondaryText = Color.Black;
ColorTable.DayTopBorder = FromHex("#5D8CC9");
ColorTable.DayTopSelectedBorder = FromHex("#5D8CC9");
ColorTable.DayTopBackground = FromHex("#A5BFE1");
ColorTable.DayTopSelectedBackground = FromHex("#294C7A");
ColorTable.ItemBorder = FromHex("#5D8CC9");
ColorTable.ItemBackground = FromHex("#C0D3EA");
ColorTable.ItemText = Color.Black;
ColorTable.ItemSecondaryText = FromHex("#294C7A");
ColorTable.ItemSelectedBorder = Color.Black;
ColorTable.ItemSelectedBackground = FromHex("#C0D3EA");
ColorTable.ItemSelectedText = Color.Black;
ColorTable.WeekHeaderBackground = FromHex("#DFE8F5");
ColorTable.WeekHeaderBorder = FromHex("#5D8CC9");
ColorTable.WeekHeaderText = FromHex("#5D8CC9");
ColorTable.TodayBorder = FromHex("#EE9311");
ColorTable.TodayTopBackground = FromHex("#EE9311");
ColorTable.TimeScaleLine = FromHex("#6593CF");
ColorTable.TimeScaleHours = FromHex("#6593CF");
ColorTable.TimeScaleMinutes = FromHex("#6593CF");
ColorTable.TimeUnitBackground = FromHex("#E6EDF7");
ColorTable.TimeUnitHighlightedBackground = Color.White;
ColorTable.TimeUnitSelectedBackground = FromHex("#294C7A");
ColorTable.TimeUnitBorderLight = FromHex("#D5E1F1");
ColorTable.TimeUnitBorderDark = FromHex("#A5BFE1");
ColorTable.WeekDayName = FromHex("#6593CF");
SelectedItemBorder = 2f;
ItemRoundness = 5;
}
#region Private Method
///
/// Gradients the rect.
///
/// The g.
/// The bounds.
/// A.
/// The b.
public static void GradientRect(Graphics g, Rectangle bounds, Color a, Color b)
{
using (LinearGradientBrush br = new LinearGradientBrush(bounds, b, a, -90))
{
g.FillRectangle(br, bounds);
}
}
///
/// Glossies the rect.
///
/// The g.
/// The bounds.
/// A.
/// The b.
/// The c.
/// The d.
public static void GlossyRect(Graphics g, Rectangle bounds, Color a, Color b, Color c, Color d)
{
Rectangle top = new Rectangle(bounds.Left, bounds.Top, bounds.Width, bounds.Height / 2);
Rectangle bot = Rectangle.FromLTRB(bounds.Left, top.Bottom, bounds.Right, bounds.Bottom);
GradientRect(g, top, a, b);
GradientRect(g, bot, c, d);
}
///
/// Shortcut to one on CalendarColorTable
///
///
///
private static Color FromHex(string color)
{
return CalendarColorTable.FromHex(color);
}
#endregion
#region Overrides
///
/// Initializes the Calendar
///
///
public override void OnInitialize(CalendarRendererEventArgs e)
{
base.OnInitialize(e);
e.Calendar.Font = SystemFonts.CaptionFont;
}
///
/// Raises the event.
///
/// The instance containing the event data.
public override void OnDrawDayHeaderBackground(CalendarRendererDayEventArgs e)
{
Rectangle r = e.Day.HeaderBounds;
if (e.Day.Date == DateTime.Today)
{
GlossyRect(e.Graphics, e.Day.HeaderBounds, TodayA, TodayB, TodayC, TodayD);
}
else
{
GlossyRect(e.Graphics, e.Day.HeaderBounds, HeaderA, HeaderB, HeaderC, HeaderD);
}
if (e.Calendar.DaysMode == CalendarDaysMode.Short)
{
using (Pen p = new Pen(ColorTable.DayBorder))
{
e.Graphics.DrawLine(p, r.Left, r.Top, r.Right, r.Top);
e.Graphics.DrawLine(p, r.Left, r.Bottom, r.Right, r.Bottom);
}
}
}
///
/// Raises the event.
///
/// The instance containing the event data.
public override void OnDrawItemBorder(CalendarRendererItemBoundsEventArgs e)
{
base.OnDrawItemBorder(e);
using (Pen p = new Pen(Color.FromArgb(150, Color.White)))
{
e.Graphics.DrawLine(p, e.Bounds.Left + ItemRoundness, e.Bounds.Top + 1, e.Bounds.Right - ItemRoundness, e.Bounds.Top + 1);
}
if (e.Item.Selected && !e.Item.IsDragging)
{
bool horizontal = false;
bool vertical = false;
Rectangle r1 = new Rectangle(0, 0, 5, 5);
Rectangle r2 = new Rectangle(0, 0, 5, 5);
horizontal = e.Item.IsOnDayTop;
vertical = !e.Item.IsOnDayTop && e.Calendar.DaysMode == CalendarDaysMode.Expanded;
if (horizontal)
{
r1.X = e.Bounds.Left - 2;
r2.X = e.Bounds.Right - r1.Width + 2;
r1.Y = e.Bounds.Top + (e.Bounds.Height - r1.Height) / 2;
r2.Y = r1.Y;
}
if (vertical)
{
r1.Y = e.Bounds.Top - 2;
r2.Y = e.Bounds.Bottom - r1.Height + 2;
r1.X = e.Bounds.Left + (e.Bounds.Width - r1.Width) / 2;
r2.X = r1.X;
}
if ((horizontal || vertical) && Calendar.AllowItemResize)
{
if (!e.Item.IsOpenStart && e.IsFirst)
{
e.Graphics.FillRectangle(Brushes.White, r1);
e.Graphics.DrawRectangle(Pens.Black, r1);
}
if (!e.Item.IsOpenEnd && e.IsLast)
{
e.Graphics.FillRectangle(Brushes.White, r2);
e.Graphics.DrawRectangle(Pens.Black, r2);
}
}
}
}
#endregion
}
}