* System.Windows.Forms/GroupBox.cs,
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / SizeGrip.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) 2005 Novell, Inc.
21 //
22 // Authors:
23 //      Jackson Harper (jackson@ximian.com)
24
25 using System;
26 using System.Drawing;
27
28 namespace System.Windows.Forms {
29
30         internal class SizeGrip : Control {
31                 #region Local Variables
32                 private bool    redraw;
33                 private Point   capture_point;
34                 private int     window_w;
35                 private int     window_h;
36                 private bool    show_grip;
37                 private bool    hide_pending;
38                 #endregion      // Local Variables
39
40                 #region Constructors
41                 public SizeGrip ()
42                 {
43                         this.Cursor = Cursors.SizeNWSE;
44                         show_grip = true;
45                         redraw = true;
46                         hide_pending = false;
47                 }
48                 #endregion      // Constructors
49
50                 #region Properties
51                 public bool ShowGrip {
52                         get {
53                                 return show_grip;
54                         }
55
56                         set {
57                                 show_grip = value;
58                                 redraw = true;
59                         }
60                 }
61                 #endregion      // Properties
62
63                 #region Methods
64                 protected override void OnPaint (PaintEventArgs pe) {
65                         if (redraw && show_grip) {
66                                 pe.Graphics.FillRectangle (new SolidBrush (ThemeEngine.Current.ColorControl), ClientRectangle);
67                                 ControlPaint.DrawSizeGrip (pe.Graphics, BackColor, ClientRectangle);
68                         }
69                         base.OnPaint (pe);
70                 }
71
72                 protected override void OnSizeChanged (EventArgs e) {
73                         base.OnSizeChanged (e);
74                         redraw = true;
75                 }
76
77                 protected override void OnVisibleChanged (EventArgs e) {
78                         base.OnVisibleChanged (e);
79                         redraw = true;
80                 }
81
82                 protected override void OnMouseDown(MouseEventArgs e) {
83                         Capture = true;
84                         
85                         capture_point = Control.MousePosition;
86
87                         window_w = Parent.Width;
88                         window_h = Parent.Height;
89                 }
90
91                 protected override void OnMouseMove(MouseEventArgs e) {
92                         if (Capture) {
93                                 int     delta_x;
94                                 int     delta_y;
95                                 Point   current_point;
96
97                                 current_point = Control.MousePosition;
98
99                                 delta_x = current_point.X - capture_point.X;
100                                 delta_y = current_point.Y - capture_point.Y;
101
102                                 this.Parent.Size = new Size(window_w + delta_x, window_h + delta_y);
103                                 XplatUI.DoEvents();
104                         }
105                 }
106
107                 protected override void OnMouseUp(MouseEventArgs e) {
108                         if (Capture) {
109                                 Capture = false;
110                                 if (hide_pending) {
111                                         Hide();
112                                         hide_pending = false;
113                                 }
114                         }
115                 }
116
117
118                 protected override void SetVisibleCore(bool value) {
119                         if (Capture) {
120                                 if (value == false) {
121                                         hide_pending = true;
122                                 } else {
123                                         hide_pending = false;
124                                 }
125                                 return;
126                         }
127                         base.SetVisibleCore (value);
128                 }
129
130                 #endregion      // Methods
131         }
132 }
133
134