Initial commit
Added all files from https://sourceforge.net/p/winformscalenda/code/HEAD/tarball
This commit is contained in:
271
WindowsFormsCalendar/Renderers/CalendarProfessionalRenderer.cs
Normal file
271
WindowsFormsCalendar/Renderers/CalendarProfessionalRenderer.cs
Normal file
@@ -0,0 +1,271 @@
|
||||
/*
|
||||
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 <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.Drawing;
|
||||
using System.Drawing.Drawing2D;
|
||||
|
||||
namespace WindowsFormsCalendar
|
||||
{
|
||||
/// <summary>
|
||||
/// Renders the professional calendar control
|
||||
/// </summary>
|
||||
public class CalendarProfessionalRenderer
|
||||
: CalendarSystemRenderer
|
||||
{
|
||||
#region Fields
|
||||
|
||||
/// <summary>
|
||||
/// HeaderA
|
||||
/// </summary>
|
||||
public Color HeaderA = FromHex("#E4ECF6");
|
||||
|
||||
/// <summary>
|
||||
/// HeaderB
|
||||
/// </summary>
|
||||
public Color HeaderB = FromHex("#D6E2F1");
|
||||
|
||||
/// <summary>
|
||||
/// HeaderC
|
||||
/// </summary>
|
||||
public Color HeaderC = FromHex("#C2D4EB");
|
||||
|
||||
/// <summary>
|
||||
/// HeaderD
|
||||
/// </summary>
|
||||
public Color HeaderD = FromHex("#D0DEEF");
|
||||
|
||||
/// <summary>
|
||||
/// TodayA
|
||||
/// </summary>
|
||||
public Color TodayA = FromHex("#F8D478");
|
||||
|
||||
/// <summary>
|
||||
/// TodayB
|
||||
/// </summary>
|
||||
public Color TodayB = FromHex("#F8D478");
|
||||
|
||||
/// <summary>
|
||||
/// TodayC
|
||||
/// </summary>
|
||||
public Color TodayC = FromHex("#F2AA36");
|
||||
|
||||
/// <summary>
|
||||
/// TodayD
|
||||
/// </summary>
|
||||
public Color TodayD = FromHex("#F7C966");
|
||||
|
||||
#endregion
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="CalendarProfessionalRenderer"/> class.
|
||||
/// </summary>
|
||||
/// <param name="c">The c.</param>
|
||||
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
|
||||
|
||||
/// <summary>
|
||||
/// Gradients the rect.
|
||||
/// </summary>
|
||||
/// <param name="g">The g.</param>
|
||||
/// <param name="bounds">The bounds.</param>
|
||||
/// <param name="a">A.</param>
|
||||
/// <param name="b">The b.</param>
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Glossies the rect.
|
||||
/// </summary>
|
||||
/// <param name="g">The g.</param>
|
||||
/// <param name="bounds">The bounds.</param>
|
||||
/// <param name="a">A.</param>
|
||||
/// <param name="b">The b.</param>
|
||||
/// <param name="c">The c.</param>
|
||||
/// <param name="d">The d.</param>
|
||||
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);
|
||||
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Shortcut to one on CalendarColorTable
|
||||
/// </summary>
|
||||
/// <param name="color"></param>
|
||||
/// <returns></returns>
|
||||
private static Color FromHex(string color)
|
||||
{
|
||||
return CalendarColorTable.FromHex(color);
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Overrides
|
||||
|
||||
/// <summary>
|
||||
/// Initializes the Calendar
|
||||
/// </summary>
|
||||
/// <param name="e"></param>
|
||||
public override void OnInitialize(CalendarRendererEventArgs e)
|
||||
{
|
||||
base.OnInitialize(e);
|
||||
|
||||
e.Calendar.Font = SystemFonts.CaptionFont;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Raises the <see cref="E:DrawDayHeaderBackground"/> event.
|
||||
/// </summary>
|
||||
/// <param name="e">The <see cref="WindowsFormsCalendar.CalendarRendererDayEventArgs"/> instance containing the event data.</param>
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Raises the <see cref="E:DrawItemBorder"/> event.
|
||||
/// </summary>
|
||||
/// <param name="e">The <see cref="WindowsFormsCalendar.CalendarRendererItemBoundsEventArgs"/> instance containing the event data.</param>
|
||||
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
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user