Merge pull request #1606 from alexanderkyte/debug-finalizers
[mono.git] / mcs / class / System.Windows.Forms / System.Windows.Forms.VisualStyles / IVisualStyles.cs
1 //
2 // IVisualStyles.cs: An implementation of VisualStyleRenderer and
3 // VisualStyleInformation.
4 //
5 // Permission is hereby granted, free of charge, to any person obtaining
6 // a copy of this software and associated documentation files (the
7 // "Software"), to deal in the Software without restriction, including
8 // without limitation the rights to use, copy, modify, merge, publish,
9 // distribute, sublicense, and/or sell copies of the Software, and to
10 // permit persons to whom the Software is furnished to do so, subject to
11 // the following conditions:
12 // 
13 // The above copyright notice and this permission notice shall be
14 // included in all copies or substantial portions of the Software.
15 // 
16 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 //
24 // Copyright (c) 2008 George Giolfan
25 //
26 // Authors:
27 //      George Giolfan (georgegiolfan@yahoo.com)
28 //
29
30 using HRESULT = System.Int32;
31 using System.Drawing;
32 namespace System.Windows.Forms.VisualStyles
33 {
34         interface IVisualStyles
35         {
36                 #region UxTheme
37                 HRESULT UxThemeCloseThemeData (IntPtr hTheme);
38                 HRESULT UxThemeDrawThemeBackground (IntPtr hTheme, IDeviceContext dc, int iPartId, int iStateId, Rectangle bounds);
39                 HRESULT UxThemeDrawThemeBackground (IntPtr hTheme, IDeviceContext dc, int iPartId, int iStateId, Rectangle bounds, Rectangle clipRectangle);
40                 HRESULT UxThemeDrawThemeEdge (IntPtr hTheme, IDeviceContext dc, int iPartId, int iStateId, Rectangle bounds,Edges edges, EdgeStyle style, EdgeEffects effects, out Rectangle result);
41                 HRESULT UxThemeDrawThemeParentBackground (IDeviceContext dc, Rectangle bounds, Control childControl);
42                 HRESULT UxThemeDrawThemeText (IntPtr hTheme, IDeviceContext dc, int iPartId, int iStateId, String text, TextFormatFlags textFlags, Rectangle bounds);
43                 HRESULT UxThemeGetThemeBackgroundContentRect (IntPtr hTheme, IDeviceContext dc, int iPartId, int iStateId, Rectangle bounds, out Rectangle result);
44                 HRESULT UxThemeGetThemeBackgroundExtent (IntPtr hTheme, IDeviceContext dc, int iPartId, int iStateId, Rectangle contentBounds, out Rectangle result);
45                 HRESULT UxThemeGetThemeBackgroundRegion (IntPtr hTheme, IDeviceContext dc, int iPartId, int iStateId, Rectangle bounds, out Region result);
46                 HRESULT UxThemeGetThemeBool (IntPtr hTheme, int iPartId, int iStateId, BooleanProperty prop, out bool result);
47                 HRESULT UxThemeGetThemeColor (IntPtr hTheme, int iPartId, int iStateId, ColorProperty prop, out Color result);
48                 HRESULT UxThemeGetThemeEnumValue (IntPtr hTheme, int iPartId, int iStateId, EnumProperty prop, out int result);
49                 HRESULT UxThemeGetThemeFilename (IntPtr hTheme, int iPartId, int iStateId, FilenameProperty prop, out string result);
50                 HRESULT UxThemeGetThemeInt (IntPtr hTheme, int iPartId, int iStateId, IntegerProperty prop, out int result);
51                 HRESULT UxThemeGetThemeMargins (IntPtr hTheme, IDeviceContext dc, int iPartId, int iStateId, MarginProperty prop, out Padding result);
52                 HRESULT UxThemeGetThemePartSize (IntPtr hTheme, IDeviceContext dc, int iPartId, int iStateId, Rectangle bounds, ThemeSizeType type, out Size result);
53                 HRESULT UxThemeGetThemePartSize (IntPtr hTheme, IDeviceContext dc, int iPartId, int iStateId, ThemeSizeType type, out Size result);
54                 HRESULT UxThemeGetThemePosition (IntPtr hTheme, int iPartId, int iStateId, PointProperty prop, out Point result);
55                 HRESULT UxThemeGetThemeString (IntPtr hTheme, int iPartId, int iStateId, StringProperty prop, out string result);
56                 HRESULT UxThemeGetThemeTextExtent (IntPtr hTheme, IDeviceContext dc, int iPartId, int iStateId, string textToDraw, TextFormatFlags flags, Rectangle bounds, out Rectangle result);
57                 HRESULT UxThemeGetThemeTextExtent (IntPtr hTheme, IDeviceContext dc, int iPartId, int iStateId, string textToDraw, TextFormatFlags flags, out Rectangle result);
58                 HRESULT UxThemeGetThemeTextMetrics (IntPtr hTheme, IDeviceContext dc, int iPartId, int iStateId, out TextMetrics result);
59                 HRESULT UxThemeHitTestThemeBackground (IntPtr hTheme, IDeviceContext dc, int iPartId, int iStateId, HitTestOptions options, Rectangle backgroundRectangle, IntPtr hrgn, Point pt, out HitTestCode result);
60                 bool UxThemeIsAppThemed ();
61                 bool UxThemeIsThemeActive ();
62                 bool UxThemeIsThemeBackgroundPartiallyTransparent (IntPtr hTheme, int iPartId, int iStateId);
63                 bool UxThemeIsThemePartDefined (IntPtr hTheme, int iPartId);
64                 IntPtr UxThemeOpenThemeData (IntPtr hWnd, String classList);
65                 #endregion
66                 #region VisualStyleInformation
67                 string VisualStyleInformationAuthor { get; }
68                 string VisualStyleInformationColorScheme { get; }
69                 string VisualStyleInformationCompany { get; }
70                 Color VisualStyleInformationControlHighlightHot { get; }
71                 string VisualStyleInformationCopyright { get; }
72                 string VisualStyleInformationDescription { get; }
73                 string VisualStyleInformationDisplayName { get; }
74                 string VisualStyleInformationFileName { get; }
75                 bool VisualStyleInformationIsSupportedByOS { get; }
76                 int VisualStyleInformationMinimumColorDepth { get; }
77                 string VisualStyleInformationSize { get; }
78                 bool VisualStyleInformationSupportsFlatMenus { get; }
79                 Color VisualStyleInformationTextControlBorder { get; }
80                 string VisualStyleInformationUrl { get; }
81                 string VisualStyleInformationVersion { get; }
82                 #endregion
83                 #region VisualStyleRenderer
84                 void VisualStyleRendererDrawBackgroundExcludingArea (IntPtr theme, IDeviceContext dc, int part, int state, Rectangle bounds, Rectangle excludedArea);
85                 #endregion
86         }
87 }