* TextBoxBase.cs: Take HideSelection into account when
[mono-project.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / SizeGrip.cs
blob2511cce2d1a179465378ba36ceef6d021842a2bd
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.
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.
20 // Copyright (c) 2005 Novell, Inc.
22 // Authors:
23 // Jackson Harper (jackson@ximian.com)
25 using System;
26 using System.Drawing;
28 namespace System.Windows.Forms {
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
40 #region Constructors
41 public SizeGrip ()
43 this.Cursor = Cursors.SizeNWSE;
44 show_grip = true;
45 redraw = true;
46 hide_pending = false;
48 #endregion // Constructors
50 #region Properties
51 public bool ShowGrip {
52 get {
53 return show_grip;
56 set {
57 show_grip = value;
58 redraw = true;
61 #endregion // Properties
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);
69 base.OnPaint (pe);
72 protected override void OnSizeChanged (EventArgs e) {
73 base.OnSizeChanged (e);
74 redraw = true;
77 protected override void OnVisibleChanged (EventArgs e) {
78 base.OnVisibleChanged (e);
79 redraw = true;
82 protected override void OnMouseDown(MouseEventArgs e) {
83 Capture = true;
85 capture_point = Control.MousePosition;
87 window_w = Parent.Width;
88 window_h = Parent.Height;
91 protected override void OnMouseMove(MouseEventArgs e) {
92 if (Capture) {
93 int delta_x;
94 int delta_y;
95 Point current_point;
97 current_point = Control.MousePosition;
99 delta_x = current_point.X - capture_point.X;
100 delta_y = current_point.Y - capture_point.Y;
102 this.Parent.Size = new Size(window_w + delta_x, window_h + delta_y);
103 XplatUI.DoEvents();
107 protected override void OnMouseUp(MouseEventArgs e) {
108 if (Capture) {
109 Capture = false;
110 if (hide_pending) {
111 Hide();
112 hide_pending = false;
118 protected override void SetVisibleCore(bool value) {
119 if (Capture) {
120 if (value == false) {
121 hide_pending = true;
122 } else {
123 hide_pending = false;
125 return;
127 base.SetVisibleCore (value);
130 #endregion // Methods