**** Merged from MCS ****
[mono-project.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / Timer.cs
blob3ec5728e6ec097e2587c5b3e6284be60d14700ce
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) 2004 Novell, Inc.
22 // Authors:
23 // Jackson Harper (jackson@ximian.com)
26 using System;
27 using System.Threading;
28 using System.ComponentModel;
30 namespace System.Windows.Forms {
32 public class Timer : Component {
34 private bool enabled;
35 private IContainer container;
36 private int interval = 100;
37 private DateTime expires;
39 internal static readonly int Minimum = 15;
41 public Timer ()
43 enabled = false;
46 public Timer (IContainer container) : this ()
48 container.Add (this);
51 public bool Enabled {
52 get {
53 return enabled;
55 set {
56 if (value != enabled) {
57 enabled = value;
58 if (value) {
59 XplatUI.SetTimer (this);
60 } else {
61 XplatUI.KillTimer (this);
67 public int Interval {
68 get {
69 return interval;
71 set {
72 interval = value;
73 // Use AddTicks so we get some rounding
74 expires = DateTime.Now.AddMilliseconds (interval > Minimum ? interval : Minimum);
78 public void Start ()
80 Enabled = true;
83 public void Stop ()
85 Enabled = false;
88 internal DateTime Expires {
89 get {
90 return expires;
94 public event EventHandler Tick;
96 public override string ToString ()
98 return base.ToString () + ", Interval: " + Interval;
101 internal void Update (DateTime update)
103 expires = update.AddMilliseconds (interval > Minimum ? interval : Minimum);
106 internal void FireTick ()
108 OnTick (EventArgs.Empty);
112 protected virtual void OnTick (EventArgs e)
114 if (Tick != null)
115 Tick (this, e);
118 protected override void Dispose (bool disposing)
120 Enabled = false;
123 private bool has_last_fire = false;
124 private DateTime last_fire;
126 internal void TickHandler (object sender, EventArgs e)
128 OnTick (e);