Checking availability of QWERTY keyboard in WRT
hamishwillee
(Talk | contribs) m (Automated change of category from Web Runtime (WRT) to Symbian Web Runtime) |
hamishwillee
(Talk | contribs) m (Hamishwillee - Fix categories. Add Abstract) |
||
| (One intermediate revision by one user not shown) | |||
| Line 1: | Line 1: | ||
| − | + | [[Category:Symbian Web Runtime]][[Category:Code Examples]][[Category:S60 5th Edition]][[Category:Base/System]] | |
| − | + | {{Abstract|This code snippet checks whether QWERTY Keyboard is available in a device by using the SystemInfo Service API of the Web Runtime (WRT) 1.1. }} | |
| − | {{ | + | {{ArticleMetaData |
| − | | | + | |
|platform=S60 5th Edition | |platform=S60 5th Edition | ||
|devices=Nokia 5800 XpressMusic | |devices=Nokia 5800 XpressMusic | ||
| Line 9: | Line 8: | ||
|creationdate=December 25, 2008 | |creationdate=December 25, 2008 | ||
|keywords=device.getServiceObject(), Service.SysInfo, Service.SysInfo.GetInfo() | |keywords=device.getServiceObject(), Service.SysInfo, Service.SysInfo.GetInfo() | ||
| + | |sourcecode= <!-- Link to example source code (e.g. [[Media:The Code Example ZIP.zip]]) --> | ||
| + | |installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.sis]]) --> | ||
| + | |sdk=<!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Nokia Qt SDK 1.1]) --> | ||
| + | |devicecompatability=<!-- Compatible devices (e.g.: All* (must have GPS) ) --> | ||
| + | |signing=<!-- Empty or one of Self-Signed, DevCert, Manufacturer --> | ||
| + | |capabilities=<!-- Capabilities required (e.g. Location, NetworkServices. -->) | ||
| + | |author=[[User:Kiran10182]] | ||
}} | }} | ||
| − | + | {{Note|The SystemInfo Service API for WRT 1.1 is only available from S60 5th Edition onwards. }} | |
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
==Source file: index.html == | ==Source file: index.html == | ||
| Line 84: | Line 86: | ||
==Supplementary material== | ==Supplementary material== | ||
| − | |||
| − | |||
| − | |||
Revision as of 08:20, 10 October 2012
This code snippet checks whether QWERTY Keyboard is available in a device by using the SystemInfo Service API of the Web Runtime (WRT) 1.1.
Article Metadata
Tested with
Devices(s): Nokia 5800 XpressMusic
Compatibility
Platform(s): S60 5th Edition
Platform Security
Capabilities: )
Article
Keywords: device.getServiceObject(), Service.SysInfo, Service.SysInfo.GetInfo()
Created: kiran10182
(25 Dec 2008)
Last edited: hamishwillee
(10 Oct 2012)
Contents |
Source file: index.html
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script type="text/javascript" src="basic.js"></script>
<script type="text/javascript" src="WRTKit/WRTKit.js"></script>
<style type="text/css">
@import url("basic.css");
</style>
</head>
<body onload="init()">
</body>
</html>
Source file: basic.js
var systemServiceObj = null;
// Called from the onload event handler to initialize the widget.
function init()
{
try
{
systemServiceObj = device.getServiceObject("Service.SysInfo", "ISysInfo");
}
catch (ex)
{
alert("System Service object cannot be found.");
return;
}
isQWERTYKeyboardAvailable();
}
// Feature Information
function isQWERTYKeyboardAvailable()
{
// Initialize the criteria for the service object and obtain the
// information
var criteria = new Object();
criteria.Entity = "Features";
criteria.Key = "QWERTY";
try {
var result = systemServiceObj.ISysInfo.GetInfo(criteria);
}
catch (ex)
{
alert(ex);
return;
}
if(result.ReturnValue.Status)
alert("QWERTY Keyboard is available");
else
alert("QWERTY Keyboard is not available");
}
Postconditions
- Displays whether QWERTY Keyboard is available or not in the device.

