OnTopReplica/OnTopReplica/FullscreenMode.cs
Lorenz Cuno Klopfenstein a097979ce3 Added click-through to standard and fullscreen mode.
Changed context menu (new advanced dropdown).
Refactored MainForm class to reduce file sizes and facilitate navigation.
2010-07-01 03:11:36 +02:00

26 lines
576 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace OnTopReplica {
/// <summary>
/// Describes a fullscreen mode used by OnTopReplica.
/// </summary>
public enum FullscreenMode {
/// <summary>
/// Normal non-topmost fullscreen mode.
/// </summary>
Normal,
/// <summary>
/// Topmost fullscreen mode.
/// </summary>
AlwaysOnTop,
/// <summary>
/// Clickthrough overlay mode.
/// </summary>
ClickThrough
}
}