Merge pull request #2408 from tastywheattasteslikechicken/MoreInterfaceSupport
[mono.git] / mcs / class / System / Microsoft.Win32 / SystemEvents.cs
1 //
2 // Microsoft.Win32.SystemEvents.cs
3 //
4 // Authors:
5 //   Johannes Roith (johannes@jroith.de)
6 //   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
7 //
8 // (C) 2002 Johannes Roith
9 // (C) 2003 Andreas Nahr
10 // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
11 //
12 // Permission is hereby granted, free of charge, to any person obtaining
13 // a copy of this software and associated documentation files (the
14 // "Software"), to deal in the Software without restriction, including
15 // without limitation the rights to use, copy, modify, merge, publish,
16 // distribute, sublicense, and/or sell copies of the Software, and to
17 // permit persons to whom the Software is furnished to do so, subject to
18 // the following conditions:
19 // 
20 // The above copyright notice and this permission notice shall be
21 // included in all copies or substantial portions of the Software.
22 // 
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
27 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
28 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 //
31
32 using System;
33 using System.Collections;
34 using System.ComponentModel;
35 using System.Security.Permissions;
36 using System.Timers;
37
38 namespace Microsoft.Win32 {
39
40         [PermissionSet (SecurityAction.LinkDemand, Unrestricted = true)]
41         public sealed class SystemEvents 
42         {
43                 private static Hashtable TimerStore = new Hashtable ();
44
45                 private SystemEvents ()
46                 {
47                 }
48
49                 // You can use timers using the CreateTimer, KillTimer methods and the Timerelapsed event
50                 // This is only a partial solution, as it only works in managed code.
51                 // TODO implement this on OS level
52                 // Till done this solution should work if you are only using the mentioned members
53
54                 public static IntPtr CreateTimer (int interval)
55                 {
56                         Guid Ident = Guid.NewGuid ();
57                         int IdentValue = Ident.GetHashCode ();
58                         Timer t = new System.Timers.Timer (interval);
59                         t.Elapsed += new ElapsedEventHandler (InternalTimerElapsed);
60                         TimerStore.Add (IdentValue, t);
61                         return new IntPtr (IdentValue);
62                 }
63
64                 public static void KillTimer (IntPtr timerId)
65                 {
66                         Timer t = (Timer) TimerStore[timerId.GetHashCode()];
67                         t.Stop ();
68                         t.Elapsed -= new ElapsedEventHandler (InternalTimerElapsed);
69                         t.Dispose ();
70                         TimerStore.Remove (timerId.GetHashCode());
71                 }
72
73                 private static void InternalTimerElapsed (object e, ElapsedEventArgs args)
74                 {
75                         if (TimerElapsed != null)
76                                 TimerElapsed (null, new TimerElapsedEventArgs (IntPtr.Zero));
77                 }
78
79                 [MonoTODO]
80                 public static void InvokeOnEventsThread(Delegate method)
81                 {
82                         throw new System.NotImplementedException ();
83                 }
84
85                 [MonoTODO]
86                 public static event System.EventHandler DisplaySettingsChanged 
87                 {
88                         add     { }
89                         remove  { }
90                 }
91                 [MonoTODO("Currently does nothing on Mono")]
92                 public static event EventHandler DisplaySettingsChanging {
93                         add {  }
94                         remove { }
95                 }
96                 [MonoTODO("Currently does nothing on Mono")]
97                 public static event System.EventHandler EventsThreadShutdown 
98                 {
99                         add     { }
100                         remove  { }
101                 }
102
103                 [MonoTODO("Currently does nothing on Mono")]
104                 public static event System.EventHandler InstalledFontsChanged 
105                 {
106                         add     { }
107                         remove  { }
108                 }
109
110                 [MonoTODO("Currently does nothing on Mono")]
111                 [Browsable (false)]
112                 [EditorBrowsable (EditorBrowsableState.Never)]
113                 [Obsolete ("")]
114                 public static event System.EventHandler LowMemory 
115                 {
116                         add     { }
117                         remove  { }
118                 }
119
120                 [MonoTODO("Currently does nothing on Mono")]
121                 public static event System.EventHandler PaletteChanged 
122                 {
123                         add     { }
124                         remove  { }
125                 }
126
127                 [MonoTODO("Currently does nothing on Mono")]
128                 public static event PowerModeChangedEventHandler PowerModeChanged 
129                 {
130                         add     { }
131                         remove  { }
132                 }
133
134                 [MonoTODO("Currently does nothing on Mono")]
135                 public static event SessionEndedEventHandler SessionEnded 
136                 {
137                         add     { }
138                         remove  { }
139                 }
140
141                 [MonoTODO("Currently does nothing on Mono")]
142                 public static event SessionEndingEventHandler SessionEnding 
143                 {
144                         add     { }
145                         remove  { }
146                 }
147                 [MonoTODO("Currently does nothing on Mono")]
148                 public static event SessionSwitchEventHandler SessionSwitch {
149                         add    { }
150                         remove { }
151                 }
152
153                 [MonoTODO("Currently does nothing on Mono")]
154                 public static event System.EventHandler TimeChanged 
155                 {
156                         add     { }
157                         remove  { }
158                 }
159
160                 public static event TimerElapsedEventHandler TimerElapsed;
161
162                 [MonoTODO("Currently does nothing on Mono")]
163                 public static event UserPreferenceChangedEventHandler UserPreferenceChanged 
164                 {
165                         add     { }
166                         remove  { }
167                 }
168
169                 [MonoTODO("Currently does nothing on Mono")]
170                 public static event UserPreferenceChangingEventHandler UserPreferenceChanging 
171                 {
172                         add     { }
173                         remove  { }
174                 }
175         }
176 }