5 // Moonlight List (moonlight-list@lists.ximian.com)
7 // Copyright 2008 Novell, Inc.
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32 namespace System
.Windows
.Interop
{
34 public sealed class Content
{
40 public double ActualHeight
{
42 if (PluginHost
.Handle
!= IntPtr
.Zero
) {
43 int n
= NativeMethods
.plugin_instance_get_actual_height (PluginHost
.Handle
);
44 return n
>= 0 ? n
: 0;
50 public double ActualWidth
{
52 if (PluginHost
.Handle
!= IntPtr
.Zero
) {
53 int n
= NativeMethods
.plugin_instance_get_actual_width (PluginHost
.Handle
);
54 return n
>= 0 ? n
: 0;
60 public bool IsFullScreen
{
62 return NativeMethods
.surface_get_full_screen (Deployment
.Current
.Surface
.Native
);
65 NativeMethods
.surface_set_full_screen (Deployment
.Current
.Surface
.Native
, value);
69 public double ZoomFactor
{
71 return NativeMethods
.surface_get_zoom_factor (Deployment
.Current
.Surface
.Native
);
75 static EventHandlerList EventList
= new EventHandlerList ();
77 public event EventHandler FullScreenChanged
{
79 RegisterEvent (EventIds
.Surface_FullScreenChangeEvent
, value, Events
.CreateNullSenderEventHandlerDispatcher (value));
82 UnregisterEvent (EventIds
.Surface_FullScreenChangeEvent
, value);
86 public event EventHandler Resized
{
88 RegisterEvent (EventIds
.Surface_ResizeEvent
, value, Events
.CreateNullSenderEventHandlerDispatcher (value));
91 UnregisterEvent (EventIds
.Surface_ResizeEvent
, value);
95 public event EventHandler Zoomed
{
97 RegisterEvent (EventIds
.Surface_ZoomedEvent
, value, Events
.CreateNullSenderEventHandlerDispatcher (value));
100 UnregisterEvent (EventIds
.Surface_ZoomedEvent
, value);
104 private void RegisterEvent (int eventId
, Delegate managedHandler
, UnmanagedEventHandler nativeHandler
)
106 if (managedHandler
== null)
109 int token
= Events
.AddHandler (Deployment
.Current
.Surface
.Native
, eventId
, nativeHandler
);
110 EventList
.AddHandler (eventId
, token
, managedHandler
, nativeHandler
);
113 private void UnregisterEvent (int eventId
, Delegate managedHandler
)
115 UnmanagedEventHandler nativeHandler
= EventList
.RemoveHandler (eventId
, managedHandler
);
117 if (nativeHandler
== null)
120 Events
.RemoveHandler (Deployment
.Current
.Surface
.Native
, eventId
, nativeHandler
);