xenadmin/XenAdmin/Controls/MainWindowControls/NotificationsView.cs
Konstantina Chremmou 15f9d34181 CP-6093: Update the header bar with the name of the notifications view currently selected.
Signed-off-by: Konstantina Chremmou <konstantina.chremmou@citrix.com>
2013-11-07 10:00:53 +00:00

196 lines
7.3 KiB
C#

/* Copyright (c) Citrix Systems Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms,
* with or without modification, are permitted provided
* that the following conditions are met:
*
* * Redistributions of source code must retain the above
* copyright notice, this list of conditions and the
* following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the
* following disclaimer in the documentation and/or other
* materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using XenAdmin.Core;
namespace XenAdmin.Controls.MainWindowControls
{
class NotificationsView : FlickerFreeListBox
{
[Browsable(true)]
public event Action<NotificationsSubModeItem> NotificationsSubModeChanged;
public NotificationsView()
{
Items.Add(new NotificationsSubModeItem(NotificationsSubMode.Alerts));
if (!Helpers.CommonCriteriaCertificationRelease)
Items.Add(new NotificationsSubModeItem(NotificationsSubMode.Updates));
Items.Add(new NotificationsSubModeItem(NotificationsSubMode.Events));
}
public void UpdateEntries(NotificationsSubMode subMode, int entries)
{
foreach (var item in Items)
{
var subModeItem = item as NotificationsSubModeItem;
if (subModeItem != null && subModeItem.SubMode == subMode)
{
subModeItem.UnreadEntries = entries;
break;
}
}
Invalidate();
}
public void SelectNotificationsSubMode(NotificationsSubMode subMode)
{
foreach (var item in Items)
{
var subModeItem = item as NotificationsSubModeItem;
if (subModeItem != null && subModeItem.SubMode == subMode)
{
SelectedItem = item;
break;
}
}
}
protected override void OnDrawItem(DrawItemEventArgs e)
{
base.OnDrawItem(e);
var item = Items[e.Index] as NotificationsSubModeItem;
if (item == null)
return;
const int IMG_LEFT_MARGIN = 16;
const int IMG_RIGHT_MARGIN = 8;
int itemHeight = e.Bounds.Height;
int imgWidth = item.Image.Width;
int imgHeight = item.Image.Height;
e.DrawBackground();
e.Graphics.DrawImage(item.Image,
e.Bounds.Left + IMG_LEFT_MARGIN,
e.Bounds.Top + (itemHeight - imgHeight) / 2);
FontStyle style = item.SubMode == NotificationsSubMode.Events && item.UnreadEntries > 0
? FontStyle.Bold
: FontStyle.Regular;
using (Font font = new Font(Font, style))
{
int textLeft = e.Bounds.Left + IMG_LEFT_MARGIN + imgWidth + IMG_RIGHT_MARGIN;
var textRec = new Rectangle(textLeft, e.Bounds.Top,
e.Bounds.Right - textLeft, itemHeight);
Drawing.DrawText(e.Graphics, item.Text, font, textRec, ForeColor,
TextFormatFlags.VerticalCenter | TextFormatFlags.Left | TextFormatFlags.EndEllipsis);
}
}
protected override void OnSelectedIndexChanged(EventArgs e)
{
base.OnSelectedIndexChanged(e);
var item = Items[SelectedIndex] as NotificationsSubModeItem;
if (item != null && NotificationsSubModeChanged != null)
NotificationsSubModeChanged(item);
}
}
public enum NotificationsSubMode { Alerts, Updates, Events }
public class NotificationsSubModeItem
{
public readonly NotificationsSubMode SubMode;
public NotificationsSubModeItem(NotificationsSubMode submode)
{
SubMode = submode;
}
/// <summary>
/// For the Alerts and the Updates this is the total number of entries,
/// while for the Events it is the number of error entries.
/// </summary>
public int UnreadEntries { get; set; }
public Image Image
{
get
{
switch (SubMode)
{
case NotificationsSubMode.Alerts:
return Properties.Resources._000_Alert2_h32bit_16;
case NotificationsSubMode.Updates:
return Properties.Resources.tempUpdates;
case NotificationsSubMode.Events:
return UnreadEntries == 0
? Properties.Resources._000_date_h32bit_16
: Properties.Resources.tempErrorEvents;
default:
return null;
}
}
}
public string Text
{
get
{
switch (SubMode)
{
case NotificationsSubMode.Alerts:
return UnreadEntries == 0
? Messages.NOTIFICATIONS_SUBMODE_ALERTS_READ
: string.Format(Messages.NOTIFICATIONS_SUBMODE_ALERTS_UNREAD, UnreadEntries);
case NotificationsSubMode.Updates:
return UnreadEntries == 0
? Messages.NOTIFICATIONS_SUBMODE_UPDATES_READ
: string.Format(Messages.NOTIFICATIONS_SUBMODE_UPDATES_UNREAD, UnreadEntries);
case NotificationsSubMode.Events:
return UnreadEntries == 0
? Messages.NOTIFICATIONS_SUBMODE_EVENTS_READ
: string.Format(Messages.NOTIFICATIONS_SUBMODE_EVENTS_UNREAD, UnreadEntries);
default:
return "";
}
}
}
}
}