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