Upgrade to ExtJS 4.0.7 - Released 10/19/2011
[extjs.git] / docs / source / OS.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5   <title>The source code</title>
6   <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
7   <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
8   <style type="text/css">
9     .highlight { display: block; background-color: #ddd; }
10   </style>
11   <script type="text/javascript">
12     function highlight() {
13       document.getElementById(location.hash.replace(/#/, "")).className = "highlight";
14     }
15   </script>
16 </head>
17 <body onload="prettyPrint(); highlight();">
18   <pre class="prettyprint lang-js"><span id='Ext-env-OS'>/**
19 </span> * @class Ext.env.OS
20  * Provides useful information about the current operating system environment.
21  * Access the global instance stored in {@link Ext#os}. Example:
22  *
23  *     if (Ext.os.is.Windows) {
24  *          // Windows specific code here
25  *     }
26  *
27  *     if (Ext.os.is.iOS) {
28  *          // iPad, iPod, iPhone, etc.
29  *     }
30  *
31  *     console.log(&quot;Version &quot; + Ext.os.version);
32  *
33  * For a full list of supported values, refer to: {@link Ext.env.OS#is}
34  */
35 Ext.define('Ext.env.OS', {
36
37     statics: {
38         osNames: {
39             ios: 'iOS',
40             android: 'Android',
41             webos: 'WebOS',
42             blackberry: 'BlackBerry',
43             mac: 'MacOSX',
44             win: 'Windows',
45             linux: 'Linux',
46             other: 'Other'
47         },
48         osPrefixes: {
49             ios: 'iPhone OS ',
50             android: 'Android ',
51             blackberry: 'BlackBerry ',
52             webos: 'webOS/'
53         }
54     },
55
56 <span id='Ext-env-OS-method-is'>    /**
57 </span>     * A &quot;hybrid&quot; property, can be either accessed as a method call, i.e:
58      *
59      *     if (Ext.os.is('Android')) { ... }
60      *
61      * or as an object with boolean properties, i.e:
62      *
63      *     if (Ext.os.is.Android) { ... }
64      *
65      * Versions can be conveniently checked as well. For example:
66      *
67      *     if (Ext.os.is.Android2) { ... } // Equivalent to (Ext.os.is.Android &amp;&amp; Ext.os.version.equals(2))
68      * 
69      *     if (Ext.os.is.iOS32) { ... } // Equivalent to (Ext.os.is.iOS &amp;&amp; Ext.os.version.equals(3.2))
70      *
71      * Note that only {@link Ext.Version#getMajor major component}  and {@link Ext.Version#getShortVersion shortVersion}
72      * value of the version are available via direct property checking.
73      *
74      * Supported values are: iOS, iPad, iPhone, iPod, Android, WebOS, BlackBerry, MacOSX, Windows, Linux and Other
75      *
76      * @param {String} value The OS name to check
77      * @return {Boolean}
78      * @method
79      */
80     is: Ext.emptyFn,
81
82 <span id='Ext-env-OS-property-name'>    /**
83 </span>     * @property {String} name
84      * Read-only - the full name of the current operating system
85      * Possible values are: iOS, Android, WebOS, BlackBerry, MacOSX, Windows, Linux and Other
86      */
87     name: null,
88
89 <span id='Ext-env-OS-property-version'>    /**
90 </span>     * @property {Ext.Version} version
91      * Read-only, refer to {@link Ext.Version}
92      */
93     version: null,
94
95     constructor: function() {
96         var userAgent = Ext.global.navigator.userAgent,
97             platform = Ext.global.navigator.platform,
98             selfClass = this.statics(),
99             osMatch = userAgent.match(new RegExp('((?:' + Ext.Object.getValues(selfClass.osPrefixes).join(')|(?:') + '))([^\\s;]+)')),
100             name = 'other',
101             version = '',
102             actualVersionMatch;
103
104         if (osMatch) {
105             name = selfClass.osNames[Ext.Object.getKey(selfClass.osPrefixes, osMatch[1])];
106             version = osMatch[2];
107
108             if (name === 'BlackBerry') {
109                 actualVersionMatch = userAgent.match(/Version\/([\d\._]+)/);
110
111                 if (actualVersionMatch) {
112                     version = actualVersionMatch[1];
113                 }
114             }
115         }
116         else {
117             name = selfClass.osNames[(userAgent.toLowerCase().match(/mac|win|linux/i) || ['other'])[0]];
118         }
119
120         Ext.apply(this, {
121             name: name,
122             version: new Ext.Version(version)
123         });
124
125         this.is = function(name) {
126             return this.is[name] === true;
127         };
128
129         if (name === 'iOS') {
130             this.is[platform] = true;
131         }
132
133         this.is[this.name] = true;
134         this.is[this.name + (this.version.getMajor() || '')] = true;
135         this.is[this.name + this.version.getShortVersion()] = true;
136
137         Ext.Object.each(selfClass.osNames, function(key, name) {
138             this.is[name] = (this.name === name);
139         }, this);
140
141         return this;
142     }
143 }, function() {
144
145 <span id='Ext-property-os'>    /**
146 </span>     * @property {Ext.env.OS} os
147      * @member Ext
148      * Global convenient instance of {@link Ext.env.OS}.
149      */
150     Ext.os = new Ext.env.OS();
151
152 });
153 </pre>
154 </body>
155 </html>