236 lines
7.1 KiB
C#
236 lines
7.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Runtime.InteropServices;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Outlook2013TodoAddIn
|
|
{
|
|
/// <summary>
|
|
/// New form to display new emai lnotifications
|
|
/// </summary>
|
|
public partial class NewMailAlert : Form
|
|
{
|
|
#region "Variables"
|
|
|
|
/// <summary>
|
|
/// To control how long the form displays
|
|
/// </summary>
|
|
private Timer timer;
|
|
|
|
/// <summary>
|
|
/// Don't close the for if the mouse is over it
|
|
/// </summary>
|
|
private bool mouseIsOver = false;
|
|
|
|
/// <summary>
|
|
/// Show form
|
|
/// </summary>
|
|
private const int SW_SHOW = 5;
|
|
|
|
/// <summary>
|
|
/// Fading effect
|
|
/// </summary>
|
|
private const uint AW_BLEND = 0x00080000;
|
|
|
|
#endregion "Variables"
|
|
|
|
#region "Properties"
|
|
|
|
/// <summary>
|
|
/// Attached email message to open or flag
|
|
/// </summary>
|
|
public Microsoft.Office.Interop.Outlook.MailItem Email { get; set; }
|
|
|
|
/// <summary>
|
|
/// Whether to show without the form activation
|
|
/// </summary>
|
|
protected override bool ShowWithoutActivation
|
|
{
|
|
get { return true; }
|
|
}
|
|
|
|
#endregion "Properties"
|
|
|
|
#region "Methods"
|
|
|
|
/// <summary>
|
|
/// Default constructor
|
|
/// </summary>
|
|
/// <param name="newMail">Mail item</param>
|
|
/// <param name="interval">Time in ms to keep the alert on</param>
|
|
public NewMailAlert(Microsoft.Office.Interop.Outlook.MailItem newMail, int interval)
|
|
{
|
|
InitializeComponent();
|
|
this.Email = newMail; // Assign it to open or flag later
|
|
this.lnkSender.Text = newMail.Sender.Name;
|
|
this.lnkSubject.Text = newMail.Subject;
|
|
this.txtBody.Text = newMail.Body;
|
|
this.Left = Screen.PrimaryScreen.WorkingArea.Width - this.Width - 10;
|
|
this.Top = Screen.PrimaryScreen.WorkingArea.Height - this.Height - 10;
|
|
this.timer = new Timer();
|
|
timer.Interval = interval;
|
|
timer.Tick += timer_Tick;
|
|
timer.Start();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Load and bring to fron
|
|
/// </summary>
|
|
/// <param name="e">EventArgs</param>
|
|
protected override void OnLoad(EventArgs e)
|
|
{
|
|
base.OnLoad(e);
|
|
if (this.WindowState == FormWindowState.Minimized)
|
|
{
|
|
this.WindowState = FormWindowState.Normal;
|
|
}
|
|
this.Focus();
|
|
this.BringToFront();
|
|
}
|
|
|
|
[DllImport("user32.dll")]
|
|
private static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);
|
|
|
|
[DllImport("user32.dll")]
|
|
private static extern bool AnimateWindow(IntPtr hWnd, uint dwTime, uint dwFlags);
|
|
|
|
/// <summary>
|
|
/// Method to display the form and make it topmost
|
|
/// </summary>
|
|
/// <returns>True or false</returns>
|
|
public bool ShowPopup()
|
|
{
|
|
bool result = ShowWindow(this.Handle, SW_SHOW);
|
|
//bool result = AnimateWindow(this.Handle, 200, AW_BLEND);
|
|
this.BringToFront();
|
|
return result;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Button delete clicked
|
|
/// </summary>
|
|
/// <param name="sender">Sender</param>
|
|
/// <param name="e">EventArgs</param>
|
|
private void btnDelete_Click(object sender, EventArgs e)
|
|
{
|
|
this.Email.Delete();
|
|
this.Close();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Button flag clicked
|
|
/// </summary>
|
|
/// <param name="sender">Sender</param>
|
|
/// <param name="e">EventArgs</param>
|
|
private void btnFlag_Click(object sender, EventArgs e)
|
|
{
|
|
//Microsoft.Office.Interop.Outlook.OlFlagIcon.olYellowFlagIcon
|
|
this.Email.FlagRequest = "Follow up";
|
|
this.Email.Save();
|
|
this.Close();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Button envelope clicked
|
|
/// </summary>
|
|
/// <param name="sender">Sender</param>
|
|
/// <param name="e">EventArgs</param>
|
|
private void btnEnvelope_Click(object sender, EventArgs e)
|
|
{
|
|
this.ShowEmail();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Button close clicked
|
|
/// </summary>
|
|
/// <param name="sender">Sender</param>
|
|
/// <param name="e">EventArgs</param>
|
|
private void btnClose_Click(object sender, EventArgs e)
|
|
{
|
|
this.Close();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sender hyperlink clicked
|
|
/// </summary>
|
|
/// <param name="sender">Sender</param>
|
|
/// <param name="e">LinkLabelLinkClickedEventArgs</param>
|
|
private void lnkSender_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
|
|
{
|
|
this.ShowEmail();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Subject hyperlink clicked
|
|
/// </summary>
|
|
/// <param name="sender">Sender</param>
|
|
/// <param name="e">LinkLabelLinkClickedEventArgs</param>
|
|
private void lnkSubject_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
|
|
{
|
|
this.ShowEmail();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Body textbox clicked
|
|
/// </summary>
|
|
/// <param name="sender">Sender</param>
|
|
/// <param name="e">EventArgs</param>
|
|
private void txtBody_Click(object sender, EventArgs e)
|
|
{
|
|
this.ShowEmail();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Show the email and close the form
|
|
/// </summary>
|
|
private void ShowEmail()
|
|
{
|
|
this.Email.Display();
|
|
this.Close();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Process timer ticks
|
|
/// </summary>
|
|
/// <param name="sender">Sender</param>
|
|
/// <param name="e">EventArgs</param>
|
|
private void timer_Tick(object sender, EventArgs e)
|
|
{
|
|
if (!mouseIsOver)
|
|
{
|
|
timer.Stop();
|
|
this.Close();
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Processed when the mouse enters the form
|
|
/// </summary>
|
|
/// <param name="ea">EventArgs</param>
|
|
protected override void OnMouseEnter(EventArgs ea)
|
|
{
|
|
base.OnMouseEnter(ea);
|
|
Point mousePos = PointToClient(Cursor.Position);
|
|
mouseIsOver = ClientRectangle.Contains(mousePos);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Processed when the mouse exits the form
|
|
/// </summary>
|
|
/// <param name="ea">EventArgs</param>
|
|
protected override void OnMouseLeave(EventArgs ea)
|
|
{
|
|
base.OnMouseLeave(ea);
|
|
Point mousePos = PointToClient(Cursor.Position);
|
|
mouseIsOver = ClientRectangle.Contains(mousePos);
|
|
}
|
|
|
|
#endregion "Methods"
|
|
}
|
|
} |