2013-02-03 05:06:11 +06:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Web.UI
|
|
|
|
|
|
{
|
|
|
|
|
|
public enum SpeechBubbleIcon
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Save icon
|
|
|
|
|
|
/// </summary>
|
2013-07-22 18:16:50 +10:00
|
|
|
|
Save = 0,
|
2013-02-03 05:06:11 +06:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Info icon
|
|
|
|
|
|
/// </summary>
|
2013-07-22 18:16:50 +10:00
|
|
|
|
Info = 1,
|
2013-02-03 05:06:11 +06:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Error icon
|
|
|
|
|
|
/// </summary>
|
2013-07-22 18:16:50 +10:00
|
|
|
|
Error = 2,
|
2013-02-03 05:06:11 +06:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Success icon
|
|
|
|
|
|
/// </summary>
|
2013-07-22 18:16:50 +10:00
|
|
|
|
Success = 3,
|
2013-02-03 05:06:11 +06:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Warning icon
|
|
|
|
|
|
/// </summary>
|
2013-07-22 18:16:50 +10:00
|
|
|
|
Warning = 4
|
2013-02-03 05:06:11 +06:00
|
|
|
|
}
|
|
|
|
|
|
}
|