2009-01-02 Ivan N. Zlatev <contact@i-nz.net>
[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 #if NET_2_0
34         public
35 #endif
36         class DrawToolTipEventArgs : EventArgs
37         {
38                 private Control associated_control;
39                 private IWin32Window associated_window;
40                 private Color back_color;
41                 private Font font;
42                 private Rectangle bounds;
43                 private Color fore_color;
44                 private Graphics graphics;
45                 private string tooltip_text;
46
47                 public DrawToolTipEventArgs (Graphics graphics, IWin32Window associatedWindow, Control associatedControl, Rectangle bounds, string toolTipText, Color backColor, Color foreColor, Font font)
48                 {
49                         this.graphics = graphics;
50                         this.associated_window = associatedWindow;
51                         this.associated_control = associatedControl;
52                         this.bounds = bounds;
53                         this.tooltip_text = toolTipText;
54                         this.back_color = backColor;
55                         this.fore_color = foreColor;
56                         this.font = font;
57                 }
58
59                 public void DrawBackground ()
60                 {
61                         graphics.FillRectangle (ThemeEngine.Current.ResPool.GetSolidBrush (back_color), bounds);
62                 }
63
64                 public void DrawBorder ()
65                 {
66                         ControlPaint.DrawBorder (graphics, bounds, SystemColors.WindowFrame, ButtonBorderStyle.Solid);
67                 }
68
69                 public void DrawText ()
70                 {
71                         DrawText (TextFormatFlags.HidePrefix | TextFormatFlags.SingleLine | TextFormatFlags.VerticalCenter | TextFormatFlags.HorizontalCenter);
72                 }
73
74                 public void DrawText (TextFormatFlags flags)
75                 {
76                         TextRenderer.DrawTextInternal (graphics, tooltip_text, font, bounds, fore_color, flags, false);
77                 }
78
79                 public Control AssociatedControl {
80                         get {
81                                 return associated_control;
82                         }
83                 }
84
85                 public IWin32Window AssociatedWindow {
86                         get {
87                                 return associated_window;
88                         }
89                 }
90
91                 public Rectangle Bounds {
92                         get {
93                                 return bounds;
94                         }
95                 }
96
97                 public Font Font {
98                         get {
99                                 return font;
100                         }
101                 }
102
103                 public Graphics Graphics {
104                         get {
105                                 return graphics;
106                         }
107                 }
108
109                 public string ToolTipText {
110                         get {
111                                 return tooltip_text;
112                         }
113                 }
114         }
115 }