/*
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;
namespace WindowsFormsCalendar
{
///
/// Represents the top area of a day, where multiday and all day items are stored
///
public class CalendarDayTop
: CalendarSelectableElement
{
#region Events
#endregion
#region Fields
private CalendarDay _day;
private List _passingItems;
#endregion
#region Properties
///
/// Gets the date.
///
public override DateTime Date
{
get
{
return new DateTime(Day.Date.Year, Day.Date.Month, Day.Date.Day);
}
}
///
/// Gets the Day of this DayTop
///
public CalendarDay Day
{
get { return _day; }
}
///
/// Gets the list of items passing on this daytop
///
public List PassingItems
{
get { return _passingItems; }
}
#endregion
///
/// Creates a new DayTop for the specified day
///
///
public CalendarDayTop(CalendarDay day)
: base(day.Calendar)
{
_day = day;
_passingItems = new List();
}
#region Public Methods
#endregion
#region Private Methods
///
/// Adds the passing item.
///
/// The item.
internal void AddPassingItem(CalendarItem item)
{
if (!PassingItems.Contains(item))
{
PassingItems.Add(item);
}
}
#endregion
}
}