[jit] Enable partial generic sharing when not using AOT as an experiment.
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / DrawToolTipEventArgs.cs
1 // Permission is hereby granted, free of charge, to any person obtaining
2 // a copy of this software and associated documentation files (the
3 // "Software"), to deal in the Software without restriction, including
4 // without limitation the rights to use, copy, modify, merge, publish,
5 // distribute, sublicense, and/or sell copies of the Software, and to
6 // permit persons to whom the Software is furnished to do so, subject to
7 // the following conditions:
8 //
9 // The above copyright notice and this permission notice shall be
10 // included in all copies or substantial portions of the Software.
11 //
12 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
13 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
14 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
15 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
16 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
17 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
18 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
19 //
20 // Copyright (c) 2007 Novell, Inc.
21 //
22 // Authors:
23 //      Rolf Bjarne Kvinge  <RKvinge@novell.com>
24 //
25 //
26 // COMPLETE
27
28
29 using System.Drawing;
30
31 namespace System.Windows.Forms
32 {
33         public class DrawToolTipEventArgs : EventArgs
34         {
35                 private Control associated_control;
36                 private IWin32Window associated_window;
37                 private Color back_color;
38                 private Font font;
39                 private Rectangle bounds;
40                 private Color fore_color;
41                 private Graphics graphics;
42                 private string tooltip_text;
43
44                 public DrawToolTipEventArgs (Graphics graphics, IWin32Window associatedWindow, Control associatedControl, Rectangle bounds, string toolTipText, Color backColor, Color foreColor, Font font)
45                 {
46                         this.graphics = graphics;
47                         this.associated_window = associatedWindow;
48                         this.associated_control = associatedControl;
49                         this.bounds = bounds;
50                         this.tooltip_text = toolTipText;
51                         this.back_color = backColor;
52                         this.fore_color = foreColor;
53                         this.font = font;
54                 }
55
56                 public void DrawBackground ()
57                 {
58                         graphics.FillRectangle (ThemeEngine.Current.ResPool.GetSolidBrush (back_color), bounds);
59                 }
60
61                 public void DrawBorder ()
62                 {
63                         ControlPaint.DrawBorder (graphics, bounds, SystemColors.WindowFrame, ButtonBorderStyle.Solid);
64                 }
65
66                 public void DrawText ()
67                 {
68                         DrawText (TextFormatFlags.HidePrefix | TextFormatFlags.SingleLine | TextFormatFlags.VerticalCenter | TextFormatFlags.HorizontalCenter);
69                 }
70
71                 public void DrawText (TextFormatFlags flags)
72                 {
73                         TextRenderer.DrawTextInternal (graphics, tooltip_text, font, bounds, fore_color, flags, false);
74                 }
75
76                 public Control AssociatedControl {
77                         get {
78                                 return associated_control;
79                         }
80                 }
81
82                 public IWin32Window AssociatedWindow {
83                         get {
84                                 return associated_window;
85                         }
86                 }
87
88                 public Rectangle Bounds {
89                         get {
90                                 return bounds;
91                         }
92                 }
93
94                 public Font Font {
95                         get {
96                                 return font;
97                         }
98                 }
99
100                 public Graphics Graphics {
101                         get {
102                                 return graphics;
103                         }
104                 }
105
106                 public string ToolTipText {
107                         get {
108                                 return tooltip_text;
109                         }
110                 }
111         }
112 }