ITheme.cs
1 /*=============================================================================
2 *
3 * (C) Copyright 2011, Michael Carlisle (mike.carlisle@thecodeking.co.uk)
4 *
5 * http://www.TheCodeKing.co.uk
6 *
7 * All rights reserved.
8 * The code and information is provided "as-is" without waranty of any kind,
9 * either expresed or implied.
10 *
11 *-----------------------------------------------------------------------------
12 * History:
13 * 01/09/2007 Michael Carlisle Version 1.0
14 *=============================================================================
15 */
16 using System.Drawing;
17 
18 namespace sage.ew.formul.ButtonTittle.Themes
19 {
20  internal interface ITheme
21  {
22  bool IsDisplayed { get; }
23 
24  Color BackColor { get; }
25 
26  Size ControlBoxSize { get; }
27 
28  Point ButtonOffset { get; }
29 
30  Size FrameBorder { get; }
31 
32  Size SystemButtonSize { get; }
33  }
34 }