~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to external/monomac/src/AppKit/EventArgs.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//
 
2
// Copyright 2013 Xamarin, Inc.
 
3
//
 
4
// Permission is hereby granted, free of charge, to any person obtaining
 
5
// a copy of this software and associated documentation files (the
 
6
// "Software"), to deal in the Software without restriction, including
 
7
// without limitation the rights to use, copy, modify, merge, publish,
 
8
// distribute, sublicense, and/or sell copies of the Software, and to
 
9
// permit persons to whom the Software is furnished to do so, subject to
 
10
// the following conditions:
 
11
// 
 
12
// The above copyright notice and this permission notice shall be
 
13
// included in all copies or substantial portions of the Software.
 
14
// 
 
15
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 
16
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 
17
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 
18
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 
19
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 
20
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 
21
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
22
//
 
23
// EventArgs.cs: augment generated Notification EventArgs classes with
 
24
//               better C#isms/strong typing.
 
25
//
 
26
// Enums defined here are not actual ObjC enum and exist only to map
 
27
// NSString keys to an enum value for better API. An 'Unknown' value
 
28
// exists on these enums for when a key cannot be mapped.
 
29
 
 
30
using MonoMac.Foundation;
 
31
 
 
32
namespace MonoMac.AppKit
 
33
{
 
34
        public enum NSFontCollectionAction
 
35
        {
 
36
                Unknown,
 
37
                Shown,
 
38
                Hidden,
 
39
                Renamed
 
40
        }
 
41
 
 
42
        public partial class NSFontCollectionChangedEventArgs
 
43
        {
 
44
                public NSFontCollectionAction Action {
 
45
                        get {
 
46
                                if (_Action == NSFontCollection.ActionWasShown) {
 
47
                                        return NSFontCollectionAction.Shown;
 
48
                                } else if (_Action == NSFontCollection.ActionWasHidden) {
 
49
                                        return NSFontCollectionAction.Hidden;
 
50
                                } else if (_Action == NSFontCollection.ActionWasRenamed) {
 
51
                                        return NSFontCollectionAction.Renamed;
 
52
                                } else {
 
53
                                        return NSFontCollectionAction.Unknown;
 
54
                                }
 
55
                        }
 
56
                }
 
57
 
 
58
                public NSFontCollectionVisibility Visibility {
 
59
                        get { return (NSFontCollectionVisibility)(int)_Visibility; }
 
60
                }
 
61
        }
 
62
 
 
63
        public enum NSPopoverCloseReason
 
64
        {
 
65
                Unknown,
 
66
                Standard,
 
67
                DetachToWindow
 
68
        }
 
69
 
 
70
        public partial class NSPopoverCloseEventArgs
 
71
        {
 
72
                public NSPopoverCloseReason Reason {
 
73
                        get {
 
74
                                if (_Reason == NSPopover.CloseReasonStandard) {
 
75
                                        return NSPopoverCloseReason.Standard;
 
76
                                } else if (_Reason == NSPopover.CloseReasonDetachToWindow) {
 
77
                                        return NSPopoverCloseReason.DetachToWindow;
 
78
                                } else {
 
79
                                        return NSPopoverCloseReason.Unknown;
 
80
                                }
 
81
                        }
 
82
                }
 
83
        }
 
84
}