Touch event model for web pages

Information

  • Patent Grant
  • 9798459
  • Patent Number
    9,798,459
  • Date Filed
    Monday, February 24, 2014
    11 years ago
  • Date Issued
    Tuesday, October 24, 2017
    7 years ago
Abstract
One or more touch input signals can be obtained from a touch sensitive device. A touch event model can be used to determine touch and/or gesture events based on the touch input signals. The touch and gesture events can be associated with touch input signals generated from different regions of a web page displayed on the touch sensitive device. Access can be provided to at least one touch or gesture event through a programming interface.
Description
TECHNICAL FIELD

This subject matter is generally related to web browsing services.


BACKGROUND

Web pages are created using a markup language which provides a means to describe a structure of text-based information in a document and to supplement that text with interactive forms, embedded images, and other objects. One popular markup language is HyperText Markup Language (HTML) which is written in the form of tags surrounded by angle brackets. HTML can describe the appearance and semantics of a web page, and can include embedded scripting language code (e.g., JavaScript®) which can affect the behavior of web browsers and other HTML processors. JavaScript® provides developers with the ability to add mouse event handlers or event listeners in a web page. These mouse event handlers can be assigned to specific regions of the web page and configured to receive mouse events in those regions, such as mouse up or mouse down events.


By contrast, web pages that are navigated with a touch sensitive device often need to respond to touch events generated by a user touching a web page with one or more fingers and making gestures. Conventional mouse event handlers cannot correctly interpret these touch events. Thus touch events require a different touch event model to correctly interpret touch events and to allow developers to fully utilize the capabilities of a touch sensitive display or device.


SUMMARY

One or more touch input signals can be obtained from a touch sensitive device. A touch event model can be used to determine touch and/or gesture events based on the touch input signals. The touch and/or gesture events can be associated with touch input signals generated from different regions of a web page displayed on the touch sensitive device. Access can be provided to at least one touch or gesture event through a programming interface.


In some implementations, a method includes: obtaining one or more touch input signals from a touch sensitive device, determining two or more touch events based on the touch input signals, where the touch events are associated with touch input signals associated with two or more regions of a web page displayed on the touch sensitive device, and providing access to at least one touch event through a programming interface.


In other implementations, a method includes: obtaining one or more touch input signals from a touch sensitive device, determining two or more touch events based on the touch input signals, where the touch events are associated with touch input signals associated with two or more regions of a web page displayed on the touch sensitive device, and sending the two or more touch events to the web page for processing.


Other implementations are disclosed which are directed to systems, methods and computer-readable mediums.





DESCRIPTION OF DRAWINGS


FIGS. 1A-1B illustrate an example web page document.



FIG. 2 illustrates a processing stack of an example multi-touch capable device.



FIG. 3 is a flow diagram of an example process for processing touch events.



FIG. 4 illustrates an example multi-touch capable device.



FIG. 5 is a block diagram of an example network operating environment for the multi-touch capable device of FIG. 4.



FIG. 6 is a block diagram of an example implementation of the multi-touch capable device of FIG. 4.





DETAILED DESCRIPTION

Example Web Page Structure and DOM



FIG. 1A shows an example web page 100 that can be displayed on a browser. The browser may be hosted on a portable device, such as the multi-touch capable device 400 of FIG. 4. One or more elements, element 102 (“element 1”), element 104 (“element 2”), and element 106 (“element 3”) can be displayed on the web page 100. The elements 102, 104, 106 can correspond to regions of the web page 100 that a user can select and additional functionality can be provided as a result of the selection. The elements can, for example, correspond to buttons on the web page 100. The elements can also be nested so that one element contains another element. For example, element 104 contains element 108. In the example shown, the element 108 is a scrubber control nested within element 104 which can be a media player user interface, for example.


In some implementations, a user may perform various functions with the elements on the web page 100 using a finger instead of a mouse. The user can, for example, touch the elements of the web page 100 using the touch sensitive display 402 shown in FIG. 4. In one example, the user can select an element by touching the element with one or more fingers and/or making a gesture, such as a swiping, pinching or rotating motion. To recognize touch input signals, certain areas of the web page 100 may be associated with touch event handlers. This can be accomplished with a DOM and embedded scripting language, as will be described in reference to FIG. 1B.



FIG. 1B is an exemplary DOM 150 associated with the web page 100. The DOM 150 provides a structural representation of the web page 100 and describes the web page content as a set of objects that a scripting language (e.g., JavaScript®) can interpret. In some implementations, the DOM 150 provides access to the structure of a web page by mapping the elements 102, 104, 106, 108 in the web page 100 to individual nodes of a tree. For example, element 102 corresponds to node 154. Element 104 corresponds to node 156. Element 106 corresponds to node 158. Element 108 corresponds to node 160. The root node 152 corresponds to the overall web page 100.


In some implementations, one or more elements 102, 104, 106, 108 in web page 100 can be associated with one or more corresponding touch event handler by associating corresponding nodes in the DOM 150 with the touch event handlers. Touch event handlers can be inserted into HTML tags of the web page 100 and can execute a scripting language to perform an action when, for example, a user touches or gestures within one of the elements on the web page 100. For example, JavaScript® can work with the DOM 150 to attach actions to different touch events.


In some implementations, one or more elements 102, 104, 106, 108 can receive touch input which is detected by an event handler or listener. The touch input can be detected and processed into touch events by a touch event model which can be implemented in one or more layers of a software stack, as described in reference to FIG. 2. The touch events can be further processed by the web page 100. The touch events can be in a format (e.g., attributes) that are easier to use in an application than raw touch input signals generated by the touch sensitive device. For example, each touch event can include a set of coordinates at which a touch is currently occurring.


Each element in the web page 100, and its associated event handler, can receive, process and handle touch events. For example, if driver 202 (FIG. 2) senses a touch point 110 associated with element 102, or a touch point 112 associated with element 104, the event handlers associated with elements 102 or 104 can each receive a separate touch event indicating that the element has been touched and can optionally send the touch event to the web page 100 for further processing. In some implementations, if a region of the web page 100 is touched that does not correspond to an event handler, a browser in the applications layer 214 can process the input, instead of the web page 100.


In some implementations, a touch event can be detected per finger per node in the DOM 150. For example, a user can touch the touch sensitive display 402 at touch point 110 and touch point 112 at substantially the same time, and two separate touch events can be detected by the touch event model. A separate touch event can be detected for touch point 110 and touch point 112 because each node 102 and node 104 in the DOM 150 are associated with a separate touch event handler.


In some implementations, touch events can be delivered to the web page 100 as EventTargets. Some examples of touch events can include touchstart, touchmove, touchend, and touchcancel. Other touch events are possible. Touchstart is a touch event that is detected when a user first places a finger on the touch sensitive display 402 in a region on the web page 100 that is associated with an event handler. When the user moves his finger around on the web page 100, one or more touchmove events can be detected. When the user raises his finger off of the web page 100, a touchend event is detected. The touchcancel can be detected when the system interrupts regular event handling. For example, a touchcancel event can occur when the touch sensitive display 402 is locked out to prevent inadvertent touches.


In some implementations, gesture events can also be detected by combining two or more touch events. Like touch events, the gesture events (GestureEvents) can also be delivered to the web page 100 as EventTargets. Some examples of gesture events can be gesturestart, gesturechange, and gestureend. The gesture events can contain scale and/or rotation information. The rotation information can include a rotation value that is a relative delta in degrees. An element on the webpage 100 can be dynamically rotated base on the rotation value. The scale information can include a scaling value that is a relative delta in document pixels. An element on the webpage 100 associated with the gesture event can be dynamically resized based on the scaling value. Other gesture events are possible.


In some implementations, a touch list can be received that includes touch event data to identify one or more touches on the web page 100. The touch event data can include a touch identifier and at least one set of touch location coordinates. The touch list can also include touch event data to a touch event target associated with each touch. In some implementations, the one set of touch location coordinates can include client coordinates, page coordinates, and screen coordinates. In some implementations, the touch event data can identify one or more changed touches.


In some implementations, GestureEvents can be sent to the web page 100 before TouchEvents. For example, if a user places fingers on touch point 110 and touch point 112, then makes a rotating gesture with those fingers clockwise or counterclockwise on the touch sensitive display, the touch event model detects these multiple touch events and combines the touch events into a gesture event. The gesture event can then be sent to the web page 100, followed by the touch events that were combined to form the gesture event. This way, a developer has access to a gesture event and the individual touch events of the gesture event which provides the developer with more flexibility when developing a web application.


In some implementations, the touch events are received in the following order: a touchstart event, one or more touchmove events and a touchend or touchcancel event. Using the example of FIG. 1A, when the user touches touch point 110, a first touchstart event is detected by a first touch event handler associated with element 102. When the user touches touch point 112, a second touchstart event is detected by a second touch event handler associated with element 104. As the user rotates her fingers without lifting her fingers, the first and second touch event handlers detect touchmove events which can be interpreted by the touch event model as a rotation gesture event. When the user finishes the rotation and lifts her fingers from the web page 100, the first and second touch event handlers detect touchend events. All or some of these touch events can be made available to developers through a touch event Application Programming Interface (API). The touch API can be made available to developers as a Software Development Kit (SDK) or as part of an application (e.g., as part of a browser tool kit). The touch event API can rely on other services, frameworks and an operating system to perform its various functions. These services, frameworks and operating system can be part of a software or processing stack, as described in reference to FIG. 2. where the touch events are associated with attributes that can be inserted in documents to define event actions in an application.


Example IDL

An example touch event model will now be described in Interface Description Language (IDL). The functionality and data structures of the IDL can be accessed through an API by a web designer or application developer. Access to touch events and/or gesture events can be associated with attributes that can be inserted in an markup language document (e.g., HTML, XML) to define event actions in an application. For example, the attributes can be inserted in one or more HTML tags in an HTML document for generating the web page displayed on the touch sensitive display 402. The event actions can include running an embedded script (e.g., JavaScript®).

















interface [









Conditional=TOUCH_EVENTS,



GenerateConstructor









] TouchEvent : UIEvent {









void initTouchEvent(in AtomicString type,









in boolean canBubble,



in boolean cancelable,



in DOMWindow view,



in long detail,



in long screenX,



in long screenY,



in long clientX,



in long clientY,



in boolean ctrlKey,



in boolean altKey,



in boolean shiftKey,



in boolean metaKey,



in TouchList touches,



in TouchList targetTouches,



in TouchList changedTouches,



in long scale,



in long rotation);










readonly attribute TouchList touches;
// all touches









readonly attribute TouchList targetTouches; // all touches



in this TouchEvent Target



readonly attribute TouchList changedTouches; // all touches



changed in the current event



readonly attribute long scale;



readonly attribute long rotation;



readonly attribute boolean ctrlKey;



readonly attribute boolean shiftKey;



readonly attribute boolean altKey;



readonly attribute boolean metaKey;









};



interface [









Conditional=TOUCH_EVENTS,









] Touch {









readonly attribute EventTarget target;



readonly attribute long identifier;



readonly attribute long clientX;



readonly attribute long clientY;



readonly attribute long pageX;



readonly attribute long pageY;



readonly attribute long screenX;



readonly attribute long screenY;









};



interface [









Conditional=TOUCH_EVENTS,



HasIndexGetter,









] TouchList {









readonly attribute unsigned long length;










Touch
item(in unsigned long index);









};



interface [









Conditional=TOUCH_EVENTS,



GenerateConstructor









] GestureEvent: UIEvent {









void initGestureEvent( in AtomicString type,









 in boolean canBubble,



 in boolean cancelable,



 in DOMWindow view,



 in long detail,



 in long screenX,



 in long screenY,



 in long clientX,



 in long clientY,



 in boolean ctrlKey,



 in boolean altKey,



 in boolean shiftKey,



 in boolean metaKey,



 in EventTarget target,



 in long scale,



 in long rotation);









readonly attribute EventTarget target;



readonly attribute long scale;



readonly attribute long rotation;



readonly attribute boolean ctrlKey;



readonly attribute boolean shiftKey;



readonly attribute boolean altKey;



readonly attribute boolean metaKey;









};



In Document.idl:










Touch
createTouch(in EventTarget target,









in long identifier,



in long clientX,



in long clientY,



in long pageX,



in long pageY,



in long screenX,



in long screenY)









raises (DOMException);










[Custom] TouchList
createTouchList( )









raises (DOMException);










The following is example of HTML code snippet for processing touch events using the example IDL above. The HTML below shows, for example, that the touch event listener TouchStart and GestureStart were added to an element with the HTML code:

















this.element.addEventListener(‘touchstart’, function(e) { return



self.onTouchStart(e) }, false);



this.element.addEventListener(‘gesturestart’, function(e) { return



self.onGestureStart(e) }, false);










The HTML code corresponding to the IDL above may be as follows:














<!DOCTYPE html PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN”


“http://www.w3.org/TR/html4/loose.dtd”>


<html lang=“en”>









<head>









<meta http-equiv=“Content-Type” content=“text/html; charset=utf-8”>









<meta name=“viewport” content=“initial-scale=1.0” />



<title>Transform Gestures</title>



<style type=“text/css” media=“screen”>









.box {









position: absolute;



height: 150px;



width: 150px;



background-color: blue;









}



.box:active {









background-color: red;









}



body {









margin: 0px;









}



#container {









position: absolute;



width: 100%;



height: 100%;









}



#main-box2 {









top: 10px;



left: 155px;



background: red;



z-index: 1;









}









</style>



<script type=“text/javascript” charset=“utf-8”>









var trackedObjectCount = 0;



function Box(inElement)



{









var self = this;



this.element = inElement;



this.scale = 1.0;



this.rotation = 0;



this.position = ‘0,0’;



this.element.addEventListener(‘touchstart’, function(e) { return self.onTouchStart(e) },







false);









this.element.addEventListener(‘gesturestart’, function(e) { return self.onGestureStart(e) },







false);









}



Box.prototype = {









// position strings are “x,y” with no units



get position( )



{









return this._position;









},



set position(pos)



{









this._position = pos;



var components = pos.split(‘,’)



var x = components[0];



var y = components[1];



const kUseTransform = true;



if (kUseTransform) {









this.element.style.webkitTransform = ‘rotate(’ + this.rotation + ‘deg) scale(’ +







this.scale + ‘) translate(’ + x + ‘px,’ + y + ‘px)’;









}



else {









this.element.style.left = x + ‘px’;



this.element.style.top = y + ‘px’;









}









},



get x( )



{









return parseInt(this._position.split(‘,’)[0]);









},



set x(inX)



{









var comps = this._position.split(‘,’);



comps[0] = inX;



this.position = comps.join(‘,’);









},



get y( )



{









return parseInt(this._position.split(‘,’)[1]);









},



set y(inY)



{









var comps = this._position.split(‘,’);



comps[1] = inY;



this.position = comps.join(‘,’);









},



filterEvent: function(e)



{









// Prevent the browser from doing its default thing (scroll, zoom)



e.preventDefault( );



// Event listeners are added at the document level, so we receive gesturechange events







for other elements.









return (e.target == this.element);









},



onTouchStart: function(e)



{









if (!this.filterEvent(e))









return false;









// Start tracking when the first finger comes down in this element



if (e.targetTouches.length != 1)









return false;









this.startX = e.targetTouches[0].clientX;



this.startY = e.targetTouches[0].client Y;



var self = this;



if (!(“touchMoveHandler” in this)) {









this.touchMoveHandler = function(e) { return self.onTouchMove(e) }



this.touchEndHandler = function(e) { return self.onTouchEnd(e) }









}



document.addEventListener(‘touchmove’, this.touchMoveHandler, false);



document.addEventListener(‘touchend’, this.touchEndHandler, false);



trackedObjectCount++;



return false;









},



onTouchMove: function(e)



{









if (!this.filterEvent(e))









return false;









// Don't track motion when multiple touches are down in this element (that's a gesture)



if (e.targetTouches.length != 1)









return false;









var leftDelta = e.targetTouches[0].clientX − this.startX;



var topDelta = e.targetTouches[0].clientY − this.startY;



var newLeft = (this.x) + leftDelta;



var newTop = (this.y) + topDelta;



this.position = newLeft + ‘,’ + newTop;



this.startX = e.targetTouches[0].clientX;



this.startY = e.targetTouches[0].clientY;



return false;









},



onTouchEnd: function(e)



{









if (!this.filterEvent(e))









return false;









// Stop tracking when the last finger is removed from this element



if (e.targetTouches.length > 0)









return false;









document.removeEventListener(‘touchmove’, this.touchMoveHandler, false);



document.removeEventListener(‘touchend’, this.touchEndHandler, false);



trackedObjectCount−−;



return false;









},



onGestureStart: function(e)



{









if (!this.filterEvent(e))









return false;









var self = this;



if (!(“gestureChangeHandler” in this)) {









this.gestureChangeHandler = function(e) { return self.onGestureChange(e) }



this.gestureEndHandler = function(e) { return self.onGestureEnd(e) }









}



document.addEventListener(‘gesturechange’, this.gestureChangeHandler, true);



document.addEventListener(‘gestureend’, this.gestureEndHandler, true);



return false;









},



onGestureChange: function(e)



{









if (!this.filterEvent(e))









return false;









// Only interpret gestures when tracking one object. Otherwise, interpret raw touch







events









// to move the tracked objects,



if (trackedObjectCount == 1) {









this.scale += e.scaling * 0.01;



this.rotation += e.rotation / 2;



this.position = this.position;









}



return false;









},



onGestureEnd: function(e)



{









if (!this.filterEvent(e))









return false;









document.removeEventListener(‘gesturechange’, this.gestureChangeHandler, true);



document.removeEventListener(‘gestureend’, this.gestureEndHandler, true);



return false;









},









}



function loaded( )



{









newBox(document.getElementById(‘main-box’));



newBox(document.getElementById(‘main-box2’));









}



window.addEventListener(‘load’, loaded, true);









</script>









</head>









<body>









<div id=“container”>









<div id=“main-box” class=“box”></div>



<div id=“main-box2” class=“box”></div>









</div>









</body>







</html>










Example Processing Stack for Multi-Touch Device



FIG. 2 is a diagram of a processing stack of an example multi-touch capable device. The touch event model described above can be implemented in one or more regions of the processing stack and user various resources in the stack. The hardware 200 layer can include various hardware interface components, such as a touch sensitive or enabled device or touch sensitive display. The touch sensitive device can include a display and a panel that senses multiple touches simultaneously. The hardware layer 200 can also include an accelerometer for detecting an orientation of the touch sensitive display or device (e.g., portrait, landscape). Thus signals indicative of orientation can be used by the touch event model to scale web pages for optimum display.


One or more drivers in a driver layer 202 can communicate with the hardware 200. For example, the drivers can receive and process touch input signals generated by the touch sensitive display or device in the hardware layer 200. A core Operating System (OS) 204 can communicate with the driver(s). The core OS 204 can process raw input data received from the driver(s). In some embodiments, the drivers can be considered to be a part of the core OS 204.


A set of OS application programming interfaces (APIs) 206 can communicate with the core OS 204. These APIs can be a set of APIs that are usually included with operating systems (such as, for example, Linux or UNIX APIs). A set of core foundation APIs 208 can utilize the OS APIs 206, and a set of foundation APIs 210 can utilize the core foundation APIs 208.


Web page software development kit (SDK) 210 can include a set of APIs designed for use by applications running on the device. The touch event APIs can, for example, be included in the Web page SDK 210. The APIs of the Web page SDK 210 can utilize the foundation APIs 208. The Web page SDK 210 can, for example, include Web KIT provided by Apple Inc. The Web page SDK 210 can be offered as an API or can be accessible through an application, for example, a browser such as SAFARI®, provided by Apple Inc.


Applications 214 running on the device can utilize the APIs of the Web page SDK 210 to create web pages. The APIs of the Web page SDK 210 can, in turn, communicate with lower level elements, ultimately communicating with the touch sensitive display or device and various other user interface hardware. While each layer can utilize the layer underneath it, that is not always required. For example, in some embodiments, applications 214 can occasionally communicate with OS APIs 206.


Example Touch Event Process



FIG. 3 is a flow diagram of a process 300 for providing access to touch and/or gesture events though an API. The process 300 can begin by obtaining one or more touch input signals (302). The touch input signals can be obtained from a touch sensitive display or device. A determination of touch events and/or gestures can be made based on the touch input signals using a touch event model (304). The touch events can be associated with regions of a web page displayed on a touch sensitive display or device. For example, the touch sensitive display can be a display on a mobile phone, and a touch sensitive device can be a touch sensitive pad on a notebook computer. Access to touch events and/or gesture events can be provided through a programming interface (306). For example, with respect to the HTML snippet described above with reference to FIG. 2, the snippet can be inserted into an HTML document by the web developer to provides the developer with access to touch and/or gesture events. The touch events and/or gesture events can be further processed by code in the HTML document to initiate event actions (306).


Mobile Device Overview



FIG. 4 is a block diagram of an example multi-touch capable device 400. In some implementations, the multi-touch capable device 400 includes a touch sensitive display 402. The touch sensitive display 402 can implement liquid crystal display (LCD) technology, light emitting polymer display (LPD) technology, or some other display technology. The touch sensitive display 402 can be sensitive to haptic and/or tactile contact with a user.


In some implementations, the touch sensitive display 402 can comprise a multi-touch sensitive display 402. A touch sensitive display 402 can, for example, process multiple simultaneous touch points, including processing data related to the pressure, degree and/or position of each touch point. Such processing facilitates gestures and interactions with multiple fingers, chording, and other interactions. Other touch sensitive display technologies can also be used, e.g., a display in which contact is made using a stylus or other pointing device. Some examples of multi-touch sensitive display technology are described in U.S. Pat. Nos. 6,323,846, 6,570,557, 6,677,932, and U.S. Patent Publication 2002/0015024A1, each of which is incorporated by reference herein in its entirety. In some implementations, the multi-touch capable device 400 can display one or more graphical user interfaces on the touch sensitive display 402 for providing the user access to various system objects and for conveying information to the user.


Example Multi-Touch Capable Device Functionality


In some implementations, the multi-touch capable device 400 can implement multiple device functionalities, such as a telephony device, an e-mail device, a network data communication device, a Wi-Fi base station device, and a media processing device. In some implementations, the multi-touch capable device 400 can include a web browser 404 for displaying web pages (e.g., web page 100). The touch sensitive display 402 can receive touch input signals made on the web page 100 and the touch model described above can be used to determine touch and/or gesture events based on the touch input signals. In some implementations, the multi-touch capable device 400 can implement network distribution functionality. In some implementations, the touch sensitive display 402 can be locked down when the multi-touch capable device 400 is proximate to the user's ear. This lockdown would cause a touchcancel event as described in reference to FIG. 1B.


In some implementations, an accelerometer 472 can be utilized to detect movement of the multi-touch capable device 400, as indicated by the directional arrow 474. Accordingly, display objects and/or media can be presented according to a detected orientation, e.g., portrait or landscape. In some implementations, the multi-touch capable device 400 may include circuitry and sensors for supporting a location determining capability, such as that provided by the global positioning system (GPS) or other positioning systems (e.g., systems using Wi-Fi access points, television signals, cellular grids, Uniform Resource Locators (URLs)). In some implementations, a positioning system (e.g., a GPS receiver) can be integrated into the multi-touch capable device 400 or provided as a separate device that can be coupled to the multi-touch capable device 400 through an interface to provide access to location-based services. The multi-touch capable device 400 can also include one or more wireless communication subsystems.


In some implementations, a port device, e.g., a Universal Serial Bus (USB) port, or a docking port, or some other wired port connection, can be included. The port device can, for example, be utilized to establish a wired connection to other computing devices, such as other multi-touch capable devices 400, network access devices, a personal computer, a printer, or other processing devices capable of receiving and/or transmitting data. In some implementations, the port device allows the multi-touch capable device 400 to synchronize with a host device using one or more protocols, such as, for example, the TCP/IP, HTTP, UDP and any other known protocol.


Network Operating Environment



FIG. 5 is a block diagram of an example network operating environment 600 for the multi-touch capable device 400 of FIG. 4. The multi-touch capable device 400 of FIG. 4 can, for example, communicate over one or more wired and/or wireless networks 510 in data communication. For example, a wireless network 512, e.g., a cellular network, can communicate with a wide area network (WAN) 514, such as the Internet, by use of a gateway 516. Likewise, an access point 518, such as an 802.11g wireless access point, can provide communication access to the wide area network 514. In some implementations, both voice and data communications can be established over the wireless network 512 and the access point 518. For example, the multi-touch capable device 400a can place and receive phone calls (e.g., using VoIP protocols), send and receive e-mail messages (e.g., using POP3 protocol), and retrieve electronic documents and/or streams, such as web pages, photographs, and videos, over the wireless network 512, gateway 516, and wide area network 514 (e.g., using TCP/IP or UDP protocols). Likewise, the multi-touch capable device 400b can place and receive phone calls, send and receive e-mail messages, and retrieve electronic documents over the access point 518 and the wide area network 514. In some implementations, the multi-touch capable device 400 can be physically connected to the access point 518 using one or more cables and the access point 518 can be a personal computer. In this configuration, the multi-touch capable device 400 can be referred to as a “tethered” device.


The multi-touch capable devices 400a and 400b can also establish communications by other means. For example, the multi-touch capable device 400a can communicate with other wireless devices, e.g., other multi-touch capable devices 400, cell phones, etc., over the wireless network 512. Likewise, the multi-touch capable device 400a and 400b can establish peer-to-peer communications 520, e.g., a personal area network, by use of one or more communication subsystems, such as the Bluetooth™ communication device 488 shown in FIG. 4. Other communication protocols and topologies can also be implemented.


The multi-touch capable device 400 can, for example, communicate with a network resource 530 over the one or more wired and/or wireless networks 510. For example, the network resource can be a web server for delivering web pages which can be touched via the touch model, as described in reference to FIGS. 1-2.


Other services can also be provided, including a software update service that automatically determines whether software updates exist for software on the multi-touch capable device 400, then downloads the software updates to the multi-touch capable device 400 where it can be manually or automatically unpacked and/or installed.


Example Mobile Device Architecture



FIG. 6 is a block diagram 600 of an example implementation of the multi-touch capable device 400 of FIG. 4. The multi-touch capable device 400 can include a memory interface 602, one or more data processors, image processors and/or central processing units 604, and a peripherals interface 606. The memory interface 602, the one or more processors 604 and/or the peripherals interface 606 can be separate components or can be integrated in one or more integrated circuits. The various components in the multi-touch capable device 400 can be coupled by one or more communication buses or signal lines.


Sensors, devices and subsystems can be coupled to the peripherals interface 606 to facilitate multiple functionalities. For example, a motion sensor 610, a light sensor 612, and a proximity sensor 614 can be coupled to the peripherals interface 606 to facilitate the orientation, lighting and proximity functions described with respect to FIG. 4. Other sensors 616 can also be connected to the peripherals interface 606, such as a positioning system (e.g., GPS receiver), a temperature sensor, a biometric sensor, or other sensing device, to facilitate related functionalities.


A camera subsystem 620 and an optical sensor 622, e.g., a charged coupled device (CCD) or a complementary metal-oxide semiconductor (CMOS) optical sensor, can be utilized to facilitate camera functions, such as recording photographs and video clips.


Communication functions can be facilitated through one or more wireless communication subsystems 624, which can include radio frequency receivers and transmitters and/or optical (e.g., infrared) receivers and transmitters. The specific design and implementation of the communication subsystem 624 can depend on the communication network(s) over which the multi-touch capable device 400 is intended to operate. For example, a multi-touch capable device 400 may include communication subsystems 624 designed to operate over a GSM network, a GPRS network, an EDGE network, a Wi-Fi or WiMax network, and a Bluetooth™ network. In particular, the wireless communication subsystems 624 may include hosting protocols such that the device 500 may be configured as a base station for other wireless devices.


An audio subsystem 626 can be coupled to a speaker 628 and a microphone 630 to facilitate voice-enabled functions, such as voice recognition, voice replication, digital recording, and telephony functions.


The I/O subsystem 640 can include a touch screen controller 642 and/or other input controller(s) 644. The touch-screen controller 642 can be coupled to a touch screen 646. The touch screen 646 and touch screen controller 642 can, for example, detect contact and movement or break thereof using any of a plurality of touch sensitivity technologies, including but not limited to capacitive, resistive, infrared, and surface acoustic wave technologies, as well as other proximity sensor arrays or other elements for determining one or more points of contact with the touch screen 646.


The other input controller(s) 644 can be coupled to other input/control devices 648, such as one or more buttons, rocker switches, thumb-wheel, infrared port, USB port, and/or a pointer device such as a stylus. The one or more buttons (not shown) can include an up/down button for volume control of the speaker 628 and/or the microphone 630.


In one implementation, a pressing of the button for a first duration may disengage a lock of the touch screen 646; and a pressing of the button for a second duration that is longer than the first duration may turn power to the multi-touch capable device 400 on or off. The user may be able to customize a functionality of one or more of the buttons. The touch screen 646 can, for example, also be used to implement virtual or soft buttons and/or a keypad or keyboard.


In some implementations, the multi-touch capable device 400 can present recorded audio and/or video files, such as MP3, AAC, and MPEG files. In some implementations, the multi-touch capable device 400 can include the functionality of an MP3 player, such as an iPod™. The multi-touch capable device 400 may, therefore, include a 32-pin connector that is compatible with the iPod. Other input/output and control devices can also be used.


The memory interface 602 can be coupled to memory 650. The memory 650 can include high-speed random access memory and/or non-volatile memory, such as one or more magnetic disk storage devices, one or more optical storage devices, and/or flash memory (e.g., NAND, NOR). The memory 650 can store an operating system 652, such as Darwin, RTXC, LINUX, UNIX, OS X, WINDOWS, or an embedded operating system such as VxWorks. The operating system 652 may include instructions for handling basic system services and for performing hardware dependent tasks.


The memory 650 may also store communication instructions 654 to facilitate communicating with one or more additional devices, one or more computers and/or one or more servers. The memory 650 may include graphical user interface instructions 656 to facilitate graphic user interface processing; sensor processing instructions 658 to facilitate sensor-related processing and functions; phone instructions 660 to facilitate phone-related processes and functions; electronic messaging instructions 662 to facilitate electronic-messaging related processes and functions; web browsing instructions 664 to facilitate web browsing-related processes and functions; media processing instructions 666 to facilitate media processing-related processes and functions; GPS/Navigation instructions 668 to facilitate GPS and navigation-related processes and instructions; camera instructions 670 to facilitate camera-related processes and functions; and/or other messaging instructions 672 to facilitate processes and functions, as described in reference to FIGS. 1-5.


Each of the above identified instructions and applications can correspond to a set of instructions for performing one or more functions described above. These instructions need not be implemented as separate software programs, procedures or modules. The memory 650 can include additional instructions or fewer instructions. Furthermore, various functions of the multi-touch capable device 400 may be implemented in hardware and/or in software, including in one or more signal processing and/or application specific integrated circuits.


The features described can be implemented in digital electronic circuitry, or in computer hardware, firmware, software, or in combinations of them. The features can be implemented in a computer program product tangibly embodied in an information carrier, e.g., in a machine-readable storage device or in a propagated signal, for execution by a programmable processor; and method steps can be performed by a programmable processor executing a program of instructions to perform functions of the described implementations by operating on input data and generating output.


The described features can be implemented advantageously in one or more computer programs that are executable on a programmable system including at least one programmable processor coupled to receive data and instructions from, and to transmit data and instructions to, a data storage system, at least one input device, and at least one output device. A computer program is a set of instructions that can be used, directly or indirectly, in a computer to perform a certain activity or bring about a certain result. A computer program can be written in any form of programming language (e.g., Objective-C, Java), including compiled or interpreted languages, and it can be deployed in any form, including as a stand-alone program or as a module, component, subroutine, or other unit suitable for use in a computing environment.


Suitable processors for the execution of a program of instructions include, by way of example, both general and special purpose microprocessors, and the sole processor or one of multiple processors or cores, of any kind of computer. Generally, a processor will receive instructions and data from a read-only memory or a random access memory or both. The essential elements of a computer are a processor for executing instructions and one or more memories for storing instructions and data. Generally, a computer will also include, or be operatively coupled to communicate with, one or more mass storage devices for storing data files; such devices include magnetic disks, such as internal hard disks and removable disks; magneto-optical disks; and optical disks. Storage devices suitable for tangibly embodying computer program instructions and data include all forms of non-volatile memory, including by way of example semiconductor memory devices, such as EPROM, EEPROM, and flash memory devices; magnetic disks such as internal hard disks and removable disks; magneto-optical disks; and CD-ROM and DVD-ROM disks. The processor and the memory can be supplemented by, or incorporated in, ASICs (application-specific integrated circuits).


To provide for interaction with a user, the features can be implemented on a computer having a display device such as a CRT (cathode ray tube) or LCD (liquid crystal display) monitor for displaying information to the user and a keyboard and a pointing device such as a mouse or a trackball by which the user can provide input to the computer.


The features can be implemented in a computer system that includes a back-end component, such as a data server, or that includes a middleware component, such as an application server or an Internet server, or that includes a front-end component, such as a client computer having a graphical user interface or an Internet browser, or any combination of them. The components of the system can be connected by any form or medium of digital data communication such as a communication network. Examples of communication networks include, e.g., a LAN, a WAN, and the computers and networks forming the Internet.


The computer system can include clients and servers. A client and server are generally remote from each other and typically interact through a network. The relationship of client and server arises by virtue of computer programs running on the respective computers and having a client-server relationship to each other.


A number of implementations have been described. Nevertheless, it will be understood that various modifications may be made. For example, elements of one or more implementations may be combined, deleted, modified, or supplemented to form further implementations. As yet another example, the logic flows depicted in the figures do not require the particular order shown, or sequential order, to achieve desirable results. In addition, other steps may be provided, or steps may be eliminated, from the described flows, and other components may be added to, or removed from, the described systems. Accordingly, other implementations are within the scope of the following claims.

Claims
  • 1. A method performed by a device that includes one or more processors, memory, and a touch-sensitive display, the method comprising: receiving simultaneous touch input signals associated with two or more regions of a document displayed on the touch-sensitive display, wherein each region is associated with a respective node in a document object model and the document includes instructions for processing one or more gesture events;generating two or more separate touch events associated with the two or more regions of the document based on the touch input signals;generating a gesture event by combining the two or more separate touch events associated with the two or more regions of the document; andsending the gesture event to the document for processing the gesture event, generated by combining the two or more separate touch events associated with the two or more regions of the document, by executing at least some of the instructions included in the document.
  • 2. The method of claim 1, where the touch events are from a group of touch events consisting of a touch start event, a touch move event, a touch end event and a touch cancel event.
  • 3. The method of claim 1, further comprising generating a sequence of touch events, where the sequence of touch events includes a touch start event, one or more touch move events, and a touch end or touch cancel event.
  • 4. The method of claim 1, where the touch events occur at substantially the same time.
  • 5. The method of claim 1, wherein the document regions are associated with nodes in the document object model and the nodes are at different hierarchical levels of the document object model.
  • 6. The method of claim 1, wherein the document corresponds to a markup language document with attributes that define event actions and that are associated with the gesture event.
  • 7. The method of claim 6, where the document is displayed in a browser of the device.
  • 8. The method of claim 6, wherein the document corresponds to an HTML document with attributes in one or more HTML tags that define event actions and that are associated with the gesture event.
  • 9. The method of claim 1, where each touch event is associated with a single touch input signal.
  • 10. The method of claim 1, wherein the two or more regions of the document do not include an event handler to process the gesture event.
  • 11. A system comprising: one or more processors; andmemory storing one or more programs for execution by the one or more processors, the one or more programs including instructions for: receiving simultaneous touch input signals associated with two or more regions of a document displayed on a touch-sensitive display, wherein each region is associated with a respective node in a document object model and the document includes instructions for processing one or more gesture events;generating two or more separate touch events associated with the two or more regions of the document based on the touch input signals;generating a gesture event by combining the two or more separate touch events associated with the two or more regions of the document; andsending the gesture event to the document for processing the gesture event, generated by combining the two or more separate touch events associated with the two or more regions of the document, by executing at least some of the instructions included in the document.
  • 12. The system of claim 11, wherein the touch events are from a group of touch events consisting of a touch start event, a touch move event, a touch end event and a touch cancel event.
  • 13. The system of claim 11, wherein the one or more programs include instructions for generating a sequence of touch events, and the sequence of touch events include a touch start event, one or more touch move events, and a touch end or touch cancel event.
  • 14. The system of claim 11, where the touch events occur at substantially the same time.
  • 15. The system of claim 11, wherein the two or more regions of the document do not include an event handler to process the gesture event.
  • 16. The system of claim 11, wherein the document regions are associated with nodes in the document object model and the nodes are at different hierarchical levels of the document object model.
  • 17. The system of claim 11, wherein the document corresponds to a markup language document with attributes that define event actions and that are associated with the gesture event.
  • 18. The system of claim 17, where the document is displayed in a browser of the system.
  • 19. The system of claim 17, wherein the document corresponds to an HTML document with attributes in one or more HTML tags that define event actions and that are associated with the gesture event.
  • 20. The system of claim 11, where each touch event is associated with a single touch input signal.
  • 21. A non-transitory computer-readable storage medium having instructions stored thereon, which, when executed by at least one processor of a device, cause the device to perform operations comprising: receiving simultaneous touch input signals associated with two or more regions of a document displayed on a touch-sensitive display, wherein each region is associated with a respective node in a document object model and the document includes instructions for processing one or more gesture events;generating two or more separate touch events associated with the two or more regions of the document based on the touch input signals;generating a gesture event by combining the two or more separate touch events associated with the two or more regions of the document; andsending the gesture event to the document for processing the gesture event, generated by combining the two or more separate touch events associated with the two or more regions of the document, by executing at least some of the instructions in the document.
  • 22. The non-transitory computer-readable storage medium of claim 21, wherein the touch events are from a group of touch events consisting of a touch start event, a touch move event, a touch end event and a touch cancel event.
  • 23. The non-transitory computer-readable storage medium of claim 21, wherein the operations include generating a sequence of touch events, and the sequence of touch events include a touch start event, one or more touch move events, and a touch end or touch cancel event.
  • 24. The non-transitory computer-readable storage medium of claim 21, wherein the touch events occur at substantially the same time.
  • 25. The non-transitory computer-readable storage medium of claim 21, wherein the two or more regions of the document do not include an event handler to process the gesture event.
  • 26. The non-transitory computer readable storage medium of claim 21, wherein the document regions are associated with nodes in the document object model and the nodes are at different hierarchical levels of the document object model.
  • 27. The non-transitory computer readable storage medium of claim 21, wherein the document corresponds to a markup language document with attributes that define event actions and that are associated with the gesture event.
  • 28. The non-transitory computer readable storage medium of claim 27, where the document is displayed in a browser of the device.
  • 29. The non-transitory computer readable storage medium of claim 27, wherein the document corresponds to an HTML document with attributes in one or more HTML tags that define event actions and that are associated with the gesture event.
  • 30. The non-transitory computer readable storage medium of claim 21, where each touch event is associated with a single touch input signal.
RELATED APPLICATIONS

This application is a continuation of U.S. application Ser. No. 12/042,067, filed Mar. 4, 2008, which is incorporated herein by reference in its entirety.

US Referenced Citations (490)
Number Name Date Kind
4455452 Schuyler Jun 1984 A
4674066 Kucera Jun 1987 A
5046434 Breezer et al. Sep 1991 A
5233547 Kapp et al. Aug 1993 A
5252951 Tannenbaum et al. Oct 1993 A
5454960 Newsom Oct 1995 A
5463725 Henckel et al. Oct 1995 A
5488204 Mead et al. Jan 1996 A
5495566 Kwatinez Feb 1996 A
5513309 Meier et al. Apr 1996 A
5530861 Diamant et al. Jun 1996 A
5534893 Hansen, Jr. et al. Jul 1996 A
5564112 Hayes et al. Oct 1996 A
5566337 Szymanski et al. Oct 1996 A
5570113 Zetts Oct 1996 A
5583543 Takahashi et al. Dec 1996 A
5589856 Stein et al. Dec 1996 A
5612719 Beernink et al. Mar 1997 A
5627567 Davidson May 1997 A
5627959 Brown et al. May 1997 A
5676064 Shuert Oct 1997 A
5686940 Kuga Nov 1997 A
5698822 Haneda et al. Dec 1997 A
5708460 Young et al. Jan 1998 A
5745116 Pisutha-Arnond Apr 1998 A
5798752 Buxton et al. Aug 1998 A
5818455 Stone et al. Oct 1998 A
5844547 Minakuchi et al. Dec 1998 A
5854853 Wang Dec 1998 A
5864636 Chisaka Jan 1999 A
5867158 Murasaki et al. Feb 1999 A
5880411 Gillespie et al. Mar 1999 A
5903902 Orr et al. May 1999 A
5917477 Lee Jun 1999 A
5959629 Masui Sep 1999 A
6028602 Weidenfeller et al. Feb 2000 A
6034688 Greenwood et al. Mar 2000 A
6035343 Tsushima et al. Mar 2000 A
6061063 Wagner et al. May 2000 A
6089371 Lin Jul 2000 A
6141018 Beri et al. Oct 2000 A
6188391 Seely et al. Feb 2001 B1
6259436 Moon et al. Jul 2001 B1
6281886 Ranieri Aug 2001 B1
6323846 Westerman Nov 2001 B1
6369821 Merrill et al. Apr 2002 B2
6377965 Hachamovitch et al. Apr 2002 B1
6446083 Leight et al. Sep 2002 B1
6486896 Ubillos Nov 2002 B1
6489951 Wong et al. Dec 2002 B1
6498590 Dietz et al. Dec 2002 B1
6559869 Lui et al. May 2003 B1
6567102 Kung May 2003 B2
6570557 Westerman et al. May 2003 B1
6570594 Wagner May 2003 B1
6590595 Wagner et al. Jul 2003 B1
6628835 Brill et al. Sep 2003 B1
6631501 Jurion et al. Oct 2003 B1
6636242 Bowman-Amuah Oct 2003 B2
6639584 Li Oct 2003 B1
6661409 Demartines et al. Dec 2003 B2
6664989 Snyder et al. Dec 2003 B1
6664991 Chew et al. Dec 2003 B1
6677932 Westerman Jan 2004 B1
6677965 Ullmann et al. Jan 2004 B1
6690387 Zimmerman et al. Feb 2004 B2
6707449 Hinckley et al. Mar 2004 B2
6714936 Nevin, III Mar 2004 B1
6735583 Bjarnestam et al. May 2004 B1
6741996 Brechner et al. May 2004 B1
6757673 Makus et al. Jun 2004 B2
6765557 Segal et al. Jul 2004 B1
6778992 Searle et al. Aug 2004 B1
6809724 Shiraishi et al. Oct 2004 B1
6820237 Abu-Hakima et al. Nov 2004 B1
6831631 Chuang Dec 2004 B2
6839721 Schwols Jan 2005 B2
6856326 Zhai Feb 2005 B1
6868383 Bangalore et al. Mar 2005 B1
6903927 Anlauff Jun 2005 B2
6907575 Duarte Jun 2005 B2
6912462 Ogaki Jun 2005 B2
6957392 Simister et al. Oct 2005 B2
6958749 Matsushita Oct 2005 B1
6963937 Kamper et al. Nov 2005 B1
6972776 Davis et al. Dec 2005 B2
6975306 Hinckley et al. Dec 2005 B2
6985137 Kaikuranta Jan 2006 B2
6985178 Morita et al. Jan 2006 B1
7009599 Pihlaja Mar 2006 B2
7009626 Anwar Mar 2006 B2
7013435 Gallo et al. Mar 2006 B2
7023427 Kraus et al. Apr 2006 B2
7030861 Westerman Apr 2006 B1
7030863 Longe et al. Apr 2006 B2
7046230 Zadesky et al. May 2006 B2
7062090 Simmons et al. Jun 2006 B2
7075512 Fabre et al. Jul 2006 B1
7084859 Pryor Aug 2006 B1
7088374 David et al. Aug 2006 B2
7102626 Denny, III Sep 2006 B2
7117453 Drucker et al. Oct 2006 B2
7152210 Van Den Hoven et al. Dec 2006 B1
7154534 Seki et al. Dec 2006 B2
7155048 Ohara Dec 2006 B2
7171353 Trower, II et al. Jan 2007 B2
7173623 Calkins et al. Feb 2007 B2
7181373 Le Cocq et al. Feb 2007 B2
7184796 Karidis et al. Feb 2007 B2
7237199 Menhardt et al. Jun 2007 B1
7240291 Card et al. Jul 2007 B2
7337412 Guido et al. Feb 2008 B2
7346850 Swartz et al. Mar 2008 B2
7358965 Barabe et al. Apr 2008 B2
7385592 Collins Jun 2008 B2
7420543 Jayachandra Sep 2008 B2
7469381 Ording Dec 2008 B2
7487447 Jerger Feb 2009 B1
7499027 Brigham, II et al. Mar 2009 B2
7561159 Abel et al. Jul 2009 B2
7564448 Yi Jul 2009 B2
7576732 Lii Aug 2009 B2
7614008 Ording Nov 2009 B2
7653883 Hotelling et al. Jan 2010 B2
7663607 Hotelling Feb 2010 B2
7673255 Schechter et al. Mar 2010 B2
7694231 Kocienda et al. Apr 2010 B2
7724242 Hillis et al. May 2010 B2
7739604 Lyons et al. Jun 2010 B1
7750893 Hashimoto et al. Jul 2010 B2
7782307 Westerman Aug 2010 B2
7786975 Ording et al. Aug 2010 B2
7812826 Ording et al. Oct 2010 B2
7843427 Ording et al. Nov 2010 B2
7844915 Platzer et al. Nov 2010 B2
7864037 Miller Jan 2011 B2
7872652 Platzer et al. Jan 2011 B2
7900156 Andre et al. Mar 2011 B2
7903115 Platzer et al. Mar 2011 B2
7907125 Weiss Mar 2011 B2
7917584 Arthursson Mar 2011 B2
7925996 Hofmeister et al. Apr 2011 B2
7941760 Kocienda et al. May 2011 B2
7962862 Kulp et al. Jun 2011 B2
7966578 Tolmasky et al. Jun 2011 B2
8051406 Knight et al. Nov 2011 B2
8091045 Christie et al. Jan 2012 B2
8112299 Kim et al. Feb 2012 B2
8115744 Kong et al. Feb 2012 B2
8135171 Ho et al. Mar 2012 B2
8140570 Ingrassia et al. Mar 2012 B2
8171432 Matas et al. May 2012 B2
8174502 Bolsinga et al. May 2012 B2
8214768 Boule et al. Jul 2012 B2
8239784 Hotelling et al. Aug 2012 B2
8253695 Ganatra et al. Aug 2012 B2
8285499 Moore et al. Oct 2012 B2
8289289 Rimon et al. Oct 2012 B2
8291344 Chaudhri Oct 2012 B2
8296332 Boley et al. Oct 2012 B2
8310459 Nurmi Nov 2012 B2
8314775 Westerman et al. Nov 2012 B2
8400416 Ho et al. Mar 2013 B2
8416196 Williamson et al. Apr 2013 B2
8428893 Moore et al. Apr 2013 B2
8434003 Zalewski et al. Apr 2013 B2
8436815 Mazeev et al. May 2013 B2
8489783 Wilson Jul 2013 B2
8560975 Beaver et al. Oct 2013 B2
8566044 Shaffer et al. Oct 2013 B2
8566045 Shaffer et al. Oct 2013 B2
8570277 Rekimoto Oct 2013 B2
8645827 Beaver et al. Feb 2014 B2
8682602 Moore et al. Mar 2014 B2
9285908 Moore et al. Mar 2016 B2
20010009033 Morisaki et al. Jul 2001 A1
20010011998 Agata et al. Aug 2001 A1
20010012001 Rekimoto et al. Aug 2001 A1
20010028369 Gallo et al. Oct 2001 A1
20010045949 Chithambaram et al. Nov 2001 A1
20020015024 Westerman et al. Feb 2002 A1
20020015064 Robotham et al. Feb 2002 A1
20020025024 Tybinkowski et al. Feb 2002 A1
20020036618 Wakai et al. Mar 2002 A1
20020101418 Vernier et al. Aug 2002 A1
20020191029 Gillespie et al. Dec 2002 A1
20020194589 Cristofalo et al. Dec 2002 A1
20030063073 Geaghan Apr 2003 A1
20030071850 Geidl Apr 2003 A1
20030071858 Morohoshi Apr 2003 A1
20030080946 Chuang May 2003 A1
20030095096 Robbin et al. May 2003 A1
20030095135 Kaasila et al. May 2003 A1
20030095697 Wood et al. May 2003 A1
20030122787 Zimmerman et al. Jul 2003 A1
20030132959 Simister et al. Jul 2003 A1
20030146941 Bailey et al. Aug 2003 A1
20030160832 Ridgley et al. Aug 2003 A1
20030174149 Fujisaki et al. Sep 2003 A1
20030184525 Tsai Oct 2003 A1
20030197689 May Oct 2003 A1
20030197744 Irvine Oct 2003 A1
20030210258 Williams Nov 2003 A1
20030214531 Chambers et al. Nov 2003 A1
20030222917 Trantow Dec 2003 A1
20040001627 Simmons et al. Jan 2004 A1
20040021676 Chen et al. Feb 2004 A1
20040021698 Baldwin et al. Feb 2004 A1
20040025115 Sienel et al. Feb 2004 A1
20040027398 Jaeger Feb 2004 A1
20040039474 Kontani Feb 2004 A1
20040070573 Graham Apr 2004 A1
20040080541 Saiga et al. Apr 2004 A1
20040095387 Demsey et al. May 2004 A1
20040100479 Nakano et al. May 2004 A1
20040111672 Bowman et al. Jun 2004 A1
20040125136 Wallenius Jul 2004 A1
20040135817 Daughtery et al. Jul 2004 A1
20040155888 Padgitt et al. Aug 2004 A1
20040160419 Padgitt Aug 2004 A1
20040189721 Pettiross et al. Sep 2004 A1
20040210847 Berson et al. Oct 2004 A1
20040215643 Brechner et al. Oct 2004 A1
20040221168 Girard Nov 2004 A1
20040222992 Calkins et al. Nov 2004 A1
20040224638 Fadell et al. Nov 2004 A1
20040225965 Garside et al. Nov 2004 A1
20040263486 Seni Dec 2004 A1
20050005241 Hunleth et al. Jan 2005 A1
20050008343 Frohlich et al. Jan 2005 A1
20050012723 Pallakoff Jan 2005 A1
20050017957 Yi Jan 2005 A1
20050024341 Gillespie et al. Feb 2005 A1
20050027666 Beck, Jr. et al. Feb 2005 A1
20050057524 Hill et al. Mar 2005 A1
20050088443 Blanco et al. Apr 2005 A1
20050122806 Arakawa et al. Jun 2005 A1
20050145807 Lapstun et al. Jul 2005 A1
20050162402 Watanachote Jul 2005 A1
20050168488 Montague Aug 2005 A1
20050179648 Barabe et al. Aug 2005 A1
20050183035 Ringel et al. Aug 2005 A1
20050193015 Logston et al. Sep 2005 A1
20050195154 Robbins et al. Sep 2005 A1
20050198588 Lin et al. Sep 2005 A1
20050210419 Kela et al. Sep 2005 A1
20050237308 Autio et al. Oct 2005 A1
20050268247 Baneth Dec 2005 A1
20050270269 Tokkonen Dec 2005 A1
20050275618 Juh et al. Dec 2005 A1
20050275636 Dehlin et al. Dec 2005 A1
20060010400 Dehlin et al. Jan 2006 A1
20060022956 Lengeling Feb 2006 A1
20060025218 Hotta Feb 2006 A1
20060026521 Hotelling et al. Feb 2006 A1
20060026535 Hotelling et al. Feb 2006 A1
20060026536 Hotelling et al. Feb 2006 A1
20060026676 O'Donoghue Feb 2006 A1
20060028455 Hinckley et al. Feb 2006 A1
20060031786 Hillis et al. Feb 2006 A1
20060036955 Baudisch et al. Feb 2006 A1
20060038796 Hinckley et al. Feb 2006 A1
20060048073 Jarrett et al. Mar 2006 A1
20060055662 Rimas-Ribikauskas et al. Mar 2006 A1
20060055669 Das Mar 2006 A1
20060055789 Jin et al. Mar 2006 A1
20060061551 Fateh Mar 2006 A1
20060066588 Lyon et al. Mar 2006 A1
20060077183 Studt Apr 2006 A1
20060077544 Stark Apr 2006 A1
20060082549 Hoshino et al. Apr 2006 A1
20060094502 Katayama et al. May 2006 A1
20060097991 Hotelling May 2006 A1
20060112335 Hofmeister May 2006 A1
20060123353 Matthews et al. Jun 2006 A1
20060125799 Hillis et al. Jun 2006 A1
20060125803 Westerman et al. Jun 2006 A1
20060136833 Dettinger et al. Jun 2006 A1
20060156249 Blythe et al. Jul 2006 A1
20060161871 Hotelling et al. Jul 2006 A1
20060176403 Gritton et al. Aug 2006 A1
20060181510 Faith Aug 2006 A1
20060187215 Rosenberg et al. Aug 2006 A1
20060190833 SanGiovanni et al. Aug 2006 A1
20060197753 Hotelling Sep 2006 A1
20060221061 Fry Oct 2006 A1
20060236263 Bathiche et al. Oct 2006 A1
20060238495 Davis Oct 2006 A1
20060242602 Schechter et al. Oct 2006 A1
20060242607 Hudson Oct 2006 A1
20060247915 Bradford et al. Nov 2006 A1
20060262104 Sullivan et al. Nov 2006 A1
20060271520 Ragan Nov 2006 A1
20060274042 Krah Dec 2006 A1
20060279548 Geaghan Dec 2006 A1
20060284792 Foxlin Dec 2006 A1
20070008066 Fukuda Jan 2007 A1
20070013697 Gilboa Jan 2007 A1
20070024646 Saarinen et al. Feb 2007 A1
20070036346 Kwon Feb 2007 A1
20070046643 Hillis et al. Mar 2007 A1
20070050469 Gupta et al. Mar 2007 A1
20070055967 Poff et al. Mar 2007 A1
20070061126 Russo et al. Mar 2007 A1
20070064004 Bonner et al. Mar 2007 A1
20070067745 Choi et al. Mar 2007 A1
20070075965 Huppi et al. Apr 2007 A1
20070081726 Westerman et al. Apr 2007 A1
20070089069 Hsieh et al. Apr 2007 A1
20070109275 Chuang May 2007 A1
20070120835 Sato May 2007 A1
20070132789 Ording et al. Jun 2007 A1
20070149252 Jobs et al. Jun 2007 A1
20070150826 Anzures et al. Jun 2007 A1
20070150842 Chaudhri et al. Jun 2007 A1
20070152976 Townsend et al. Jul 2007 A1
20070152978 Kocienda et al. Jul 2007 A1
20070152979 Jobs et al. Jul 2007 A1
20070152980 Kocienda et al. Jul 2007 A1
20070152983 McKillop Jul 2007 A1
20070152984 Ording Jul 2007 A1
20070155434 Jobs et al. Jul 2007 A1
20070156364 Rothkopf Jul 2007 A1
20070157089 van Os et al. Jul 2007 A1
20070174257 Howard Jul 2007 A1
20070176903 Dahlin et al. Aug 2007 A1
20070177803 Elias et al. Aug 2007 A1
20070177804 Elias et al. Aug 2007 A1
20070185876 Mendis et al. Aug 2007 A1
20070198926 Joguet et al. Aug 2007 A1
20070214436 Myers, Jr. Sep 2007 A1
20070214462 Boillot Sep 2007 A1
20070226636 Carpenter Sep 2007 A1
20070236472 Bentsen et al. Oct 2007 A1
20070242056 Engelhardt et al. Oct 2007 A1
20070242607 Sadler et al. Oct 2007 A1
20070247435 Benko et al. Oct 2007 A1
20070247442 Andre et al. Oct 2007 A1
20070252821 Hollemans et al. Nov 2007 A1
20070262964 Zotov et al. Nov 2007 A1
20070277124 Shin et al. Nov 2007 A1
20070288856 Butlin et al. Dec 2007 A1
20070291009 Wright et al. Dec 2007 A1
20080001923 Hall et al. Jan 2008 A1
20080005703 Radivojevic et al. Jan 2008 A1
20080012835 Rimon Jan 2008 A1
20080016096 Wilding et al. Jan 2008 A1
20080027642 Winberry et al. Jan 2008 A1
20080028327 Hirota et al. Jan 2008 A1
20080034029 Fang et al. Feb 2008 A1
20080036743 Westerman et al. Feb 2008 A1
20080043020 Snow et al. Feb 2008 A1
20080048978 Trent, Jr. et al. Feb 2008 A1
20080072143 Assadollahi Mar 2008 A1
20080082934 Kocienda et al. Apr 2008 A1
20080094356 Ording et al. Apr 2008 A1
20080094368 Ording et al. Apr 2008 A1
20080104544 Collins et al. May 2008 A1
20080114614 Mahesh et al. May 2008 A1
20080115086 Rupp et al. May 2008 A1
20080120576 Kariathungal et al. May 2008 A1
20080122806 Ahn May 2008 A1
20080158170 Herz Jul 2008 A1
20080158191 Yang et al. Jul 2008 A1
20080162751 Wilson Jul 2008 A1
20080165132 Weiss et al. Jul 2008 A1
20080165136 Christie et al. Jul 2008 A1
20080165140 Christie et al. Jul 2008 A1
20080165141 Christie Jul 2008 A1
20080165160 Kocienda et al. Jul 2008 A1
20080166049 Wang et al. Jul 2008 A1
20080168384 Platzer et al. Jul 2008 A1
20080168388 Decker Jul 2008 A1
20080168395 Ording et al. Jul 2008 A1
20080168402 Blumenberg Jul 2008 A1
20080168405 Tolmasky et al. Jul 2008 A1
20080168478 Platzer et al. Jul 2008 A1
20080172633 Jeon et al. Jul 2008 A1
20080195388 Bower et al. Aug 2008 A1
20080207130 Kunii Aug 2008 A1
20080218489 Park et al. Sep 2008 A1
20080225014 Kim Sep 2008 A1
20080231610 Hotelling et al. Sep 2008 A1
20080316178 Caliksan Dec 2008 A1
20080316183 Westerman et al. Dec 2008 A1
20090030530 Martin Jan 2009 A1
20090049388 Taib et al. Feb 2009 A1
20090051671 Konstas Feb 2009 A1
20090058830 Herz et al. Mar 2009 A1
20090063135 Fux et al. Mar 2009 A1
20090064047 Shim et al. Mar 2009 A1
20090207140 Hansson Aug 2009 A1
20090211891 Lai et al. Aug 2009 A1
20090225037 Williamson et al. Sep 2009 A1
20090225038 Bolsinga et al. Sep 2009 A1
20090225039 Williamson et al. Sep 2009 A1
20090225041 Kida et al. Sep 2009 A1
20090228828 Beatty et al. Sep 2009 A1
20090228901 Beaver et al. Sep 2009 A1
20090231281 Whytock et al. Sep 2009 A1
20090244020 Sjolin Oct 2009 A1
20090251434 Rimon et al. Oct 2009 A1
20090259969 Pallakoff Oct 2009 A1
20090262087 Kim Oct 2009 A1
20090273571 Bowens Nov 2009 A1
20090282332 Porat Nov 2009 A1
20090284479 Dennis et al. Nov 2009 A1
20090303187 Pallakoff Dec 2009 A1
20090304281 Yipu Dec 2009 A1
20090309847 Russell et al. Dec 2009 A1
20090322687 Duncan et al. Dec 2009 A1
20090322699 Hansson Dec 2009 A1
20090322700 D'Souza et al. Dec 2009 A1
20100013676 Do et al. Jan 2010 A1
20100020025 Lemort et al. Jan 2010 A1
20100020221 Tupman et al. Jan 2010 A1
20100030612 Kim et al. Feb 2010 A1
20100046850 Ho et al. Feb 2010 A1
20100060666 Fong Mar 2010 A1
20100085323 Bogue Apr 2010 A1
20100107116 Rieman et al. Apr 2010 A1
20100146458 Wadekar Jun 2010 A1
20100149122 Lin Jun 2010 A1
20100156804 Young Jun 2010 A1
20100169841 Singh Jul 2010 A1
20100177053 Yasutake Jul 2010 A2
20100182248 Chun Jul 2010 A1
20100235118 Moore et al. Sep 2010 A1
20100245267 Min et al. Sep 2010 A1
20100267449 Gagner et al. Oct 2010 A1
20100281435 Bangalore et al. Nov 2010 A1
20100283739 Zhang et al. Nov 2010 A1
20100299594 Zalewski et al. Nov 2010 A1
20100325575 Platzer et al. Dec 2010 A1
20110037714 Seo et al. Feb 2011 A1
20110047459 Van Der Westhuizen Feb 2011 A1
20110069021 Hill Mar 2011 A1
20110090257 Ko et al. Apr 2011 A1
20110102336 Seok et al. May 2011 A1
20110102464 Godavari May 2011 A1
20110115745 Cabrera Cordon et al. May 2011 A1
20110167391 Momeyer et al. Jul 2011 A1
20110179380 Shaffer et al. Jul 2011 A1
20110179386 Shaffer et al. Jul 2011 A1
20110179387 Shaffer et al. Jul 2011 A1
20110181526 Shaffer et al. Jul 2011 A1
20110242032 Seo et al. Oct 2011 A1
20110252306 Williamson et al. Oct 2011 A1
20110252307 Williamson et al. Oct 2011 A1
20110252368 Anzures et al. Oct 2011 A1
20110291951 Tong Dec 2011 A1
20110295596 Hung et al. Dec 2011 A1
20110304560 Dale et al. Dec 2011 A1
20110307833 Dale et al. Dec 2011 A1
20110310046 Beaver et al. Dec 2011 A1
20110310047 Moore et al. Dec 2011 A1
20110314429 Blumenberg Dec 2011 A1
20110314430 Blumenberg Dec 2011 A1
20110321125 Kyohgoku et al. Dec 2011 A1
20120023443 Blumenberg Jan 2012 A1
20120023460 Blumenberg Jan 2012 A1
20120023461 Blumenberg Jan 2012 A1
20120023509 Blumenberg Jan 2012 A1
20120026104 Ho et al. Feb 2012 A1
20120133579 Prieur et al. May 2012 A1
20120221929 Bolsinga et al. Aug 2012 A1
20120242584 Tuli Sep 2012 A1
20120256849 Crumly Oct 2012 A1
20120278725 Gordon et al. Nov 2012 A1
20120299852 Hsu et al. Nov 2012 A1
20130009986 Shah et al. Jan 2013 A1
20130016039 Moore et al. Jan 2013 A1
20130069899 Beaver et al. Mar 2013 A1
20130120280 Kukulski May 2013 A1
20130239046 Platzer et al. Sep 2013 A1
20130244574 Okuno et al. Sep 2013 A1
20130246861 Colley et al. Sep 2013 A1
20130275888 Williamson et al. Oct 2013 A1
20140033131 Shaffer et al. Jan 2014 A1
20140145995 Beaver et al. May 2014 A1
20140160052 Moore et al. Jun 2014 A1
20140181731 Platzer et al. Jun 2014 A1
20140361982 Shaffer Dec 2014 A1
20160018981 Amerige et al. Jan 2016 A1
20160110230 Moore et al. Jan 2016 A1
20160162180 Moore et al. Jun 2016 A1
20160334990 Beaver et al. Nov 2016 A1
20160342325 Blumenberg Nov 2016 A1
20160370987 Amerige et al. Dec 2016 A1
20170046063 Shaffer et al. Feb 2017 A1
Foreign Referenced Citations (125)
Number Date Country
2007283771 Apr 2008 AU
2755443 Sep 2010 CA
1326564 Dec 2001 CN
1331815 Jan 2002 CN
1422481 Jun 2003 CN
1695105 Nov 2005 CN
1704886 Dec 2005 CN
1797308 Jul 2006 CN
1841284 Oct 2006 CN
1845046 Oct 2006 CN
1860429 Nov 2006 CN
1942853 Apr 2007 CN
1967458 May 2007 CN
1969254 May 2007 CN
101040244 Sep 2007 CN
101089804 Dec 2007 CN
101339453 Jan 2009 CN
101356492 Jan 2009 CN
101410781 Apr 2009 CN
101526880 Sep 2009 CN
101529368 Sep 2009 CN
101727240 Jun 2010 CN
202007013923 Dec 2007 DE
202005021427 Feb 2008 DE
0538705 Apr 1993 EP
0626635 Nov 1994 EP
0635779 Jan 1995 EP
0701220 Mar 1996 EP
0712825 May 1996 EP
0880091 Nov 1998 EP
1 443 395 Aug 2004 EP
1517228 Mar 2005 EP
1860539 Nov 2007 EP
2031837 Mar 2009 EP
2141576 Jan 2010 EP
1964022 Mar 2010 EP
2184673 May 2010 EP
2 354 930 Aug 2011 EP
2390766 Nov 2011 EP
2 409 222 Jan 2012 EP
2 472 384 Jul 2012 EP
1517521 Jul 1978 GB
2319591 May 1998 GB
2351639 Jan 2001 GB
2373778 Oct 2002 GB
2404547 Jul 2003 GB
02-140822 May 1990 JP
03-271976 Dec 1991 JP
A H05-019969 Jan 1993 JP
H05-298002 Nov 1993 JP
06-149467 May 1994 JP
08-16314 Jan 1996 JP
H10-500509 Jan 1998 JP
H11-085354 Mar 1999 JP
2000-163031 Jun 2000 JP
2000-163443 Jun 2000 JP
2000-222130 Aug 2000 JP
2000-322199 Nov 2000 JP
2001-027924 Jan 2001 JP
2001-290585 Oct 2001 JP
2003-296024 Oct 2003 JP
2003-330605 Nov 2003 JP
2005-056286 Mar 2005 JP
2005-082086 Mar 2005 JP
2005-165532 Jun 2005 JP
2005-242669 Sep 2005 JP
2005-322088 Nov 2005 JP
2006-085356 Mar 2006 JP
2006-085703 Mar 2006 JP
2006-102275 Apr 2006 JP
2006-314167 Nov 2006 JP
2006-350490 Dec 2006 JP
2008-503125 Jan 2008 JP
2008-508601 Mar 2008 JP
2008-146165 Jun 2008 JP
2008-203973 Sep 2008 JP
2008-312153 Dec 2008 JP
2009-169825 Jul 2009 JP
2009-525538 Jul 2009 JP
2010-503124 Jan 2010 JP
2012-014299 Jan 2012 JP
2009-0057304 Jun 2009 KR
2009-0057421 Jun 2009 KR
WO 0038042 Jun 2000 WO
WO 0129702 Apr 2001 WO
WO 0177792 Oct 2001 WO
WO 0201338 Jan 2002 WO
WO 0208881 Jan 2002 WO
WO 0213176 Feb 2002 WO
WO 0221338 Mar 2002 WO
WO 03060622 Jul 2003 WO
WO 03081458 Oct 2003 WO
WO 04001560 Dec 2003 WO
WO 2005029460 Mar 2005 WO
WO 05052773 Jun 2005 WO
WO 06003590 Jan 2006 WO
WO 2006003591 Jan 2006 WO
WO 06020304 Feb 2006 WO
WO 06020305 Feb 2006 WO
WO 2006026183 Mar 2006 WO
WO 2006045530 May 2006 WO
WO 2006067711 Jun 2006 WO
WO 2006094308 Sep 2006 WO
WO 2006124248 Nov 2006 WO
WO 2006128248 Dec 2006 WO
WO 2007037806 Apr 2007 WO
WO 2007067858 Jun 2007 WO
WO 2007079425 Jul 2007 WO
WO 2007089766 Aug 2007 WO
WO 2008020446 Feb 2008 WO
WO 2008030779 Mar 2008 WO
WO 2008030879 Mar 2008 WO
WO 2008030880 Mar 2008 WO
WO 2008085846 Jul 2008 WO
WO 2008085848 Jul 2008 WO
WO 2008085855 Jul 2008 WO
WO 2008085871 Jul 2008 WO
WO 2008085877 Jul 2008 WO
WO 2008148021 Dec 2008 WO
WO 2009018314 Feb 2009 WO
WO 2009111189 Sep 2009 WO
WO 2009111458 Sep 2009 WO
WO 2009111460 Sep 2009 WO
WO 2009111469 Sep 2009 WO
WO 2010107669 Sep 2010 WO
Non-Patent Literature Citations (692)
Entry
Shahzad Malik, “An Exploration of Multi-Finger Interaction on Multi-Touch Surfaces”, 2007, A thesis submitted in conformity with the requirements for the degree of Doctor of Philosophy Graduate Department of Computer Science—University of Toronto, pp. 184.
Certificate of Grant, AU Patent 2011101156, dated May 8, 2012, 1 page.
Certificate of Grant, AU Application 2012100050, dated Mar. 2, 2012, 3 pages.
Certificate of Grant, HK Application 10103983.1, dated Feb. 3, 2012, 5 pages.
Certificate of Grant, TR part of EP Patent 2126678, dated Jun. 21, 2012, 3 pages.
Decision to Grant, CN Application 200980000014.0, dated Nov. 27, 2012, 1 page.
Decision to Grant, CN Application 201110063183.8, dated Feb. 24, 2014, 4 pages.
Decision to Grant, EP Application 08713567.9, dated Oct. 7, 2011, 1 page.
Decision to Grant, JP Application 2009-080377, dated Jul. 27, 2012, 4 pages.
Decision to Grant, JP Application 2010-157302, dated Oct. 26, 2012, 4 pages.
Decision to Grant, JP Application 2010-157303, dated Apr. 15, 2013, 4 pages.
Decision to Grant, JP Application 2010-502357, dated Mar. 28, 2014, 1 pg.
Decision to Grant, JP Application 2012-088747, dated Feb. 16, 2015, 3 pages.
Decision to Grant, JP Application 2012-218235, dated Sep. 22, 2014, 3 pages.
Decision to Refuse EP Application, EP Application 09700006.1, dated Jul. 15, 2013, 15 pages.
Decision to refuse EP application, EP Application 11184222.5, dated Feb. 11, 2015, 10 pages.
Decision to Refuse EP Application 11184224.1, dated Feb. 11, 2015, 10 pages.
Decision to refuse EP application, EP Application 12188748.3, dated Dec. 12, 2014, 14 pages.
European Search Report, EP Application 09154313.2, dated Apr. 21, 2009, 6 pages.
European Search Report, EP Application 11150788.5, dated Mar. 1, 2011, 6 pages.
European Search Report, EP Application 11152015.1, dated May 20, 2011, 9 pages.
European Search Report, EP Application 11182954.5, dated Nov. 29, 2011, 6 pages.
European Search Report, EP Application 11182959.4, dated Nov. 30, 2011, 7 pages.
European Search Report, EP Application 11182962.8, dated Dec. 1, 2011, 8 pages.
European Search Report, EP Application 11182963.6, dated Dec. 1, 2011, 8 pages.
European Search Report, EP Application 11184169.8, dated Nov. 24, 2011, 6 pages.
European Search Report, EP Application 11184172.2, dated Nov. 18, 2011, 6 pages.
European Search Report, EP Application 11184223.3, dated Jan. 13, 2012, 7 pages.
European Search Report, EP Application 11184226.6, dated Jan. 13, 2012, 5 pages.
European Search Report, EP Application 12156394.4, dated Jun. 5, 2012, 6 pages.
European Search Report, EP Application 12188748.3, dated Feb. 28, 2013, 8 pages.
Examiner's Answer, U.S. Appl. No. 11/620,715, dated Feb. 13, 2014, 22 pages.
Examiner's Answer, U.S. Appl. No. 11/620,727, dated Feb. 13, 2014, 23 pages.
Examiner's Answer, U.S. Appl. No. 13/221,837, dated Feb. 11, 2014, 19 pages.
Examiner's Answer, U.S. Appl. No. 13/251,121, dated Apr. 29, 2014, 41 pages.
Examiner's Answer, U.S. Appl. No. 13/251,146, dated May 7, 2014, 43 pages.
Examiner's Answer, U.S. Appl. No. 13/251,150, dated Jun. 17, 2014, 47 pages.
Examiner's Answer, U.S. Appl. No. 13/251,152, dated May 21, 2014, 45 pages.
Final Office Action, U.S. Appl. No. 11/620,715, dated Mar. 1, 2013, 15 pages.
Final Office Action, U.S. Appl. No. 11/620,727, dated Mar. 12, 2012, 20 pages.
Final Office Action, U.S. Appl. No. 12/042,237, dated Jun. 2, 2011, 9 pages.
Final Office Action, U.S. Appl. No. 12/042,318, dated Sep. 15, 2011, 37 pages.
Final Office Action, U.S. Appl. No. 13/077,931, dated Sep. 9, 2013, 14 pages.
Final Office Action, U.S. Appl. No. 13/221,836, dated May 15, 2013, 22 pages.
Final Office Action, U.S. Appl. No. 13/251,146, dated Oct. 2, 2013, 20 pages.
Final Office Action, U.S. Appl. No. 13/251,150, dated Jul. 5, 2012, 27 pages.
Final Office Action, U.S. Appl. No. 13/251,150, dated Dec. 11, 2013, 44 pages.
International Preliminary Report on Patentability, PCT Application PCT/US2005/000089, dated Jun. 18, 2005, 5 pages.
International Preliminary Report on Patentability, PCT Application PCT/US2008/000089, dated Jul. 7, 2009, 9 pages.
International Preliminary Report on Patentability, PCT Application PCT/US2009/034772, dated Sep. 7, 2010, 7 pages.
International Preliminary Report on Patentability, PCT Application PCT/US2010/027118, dated Sep. 20, 2011, 10 pages.
International Preliminary Report on Patentability, PCT Application PCT/US2011/022516, dated Aug. 9, 2012, 11 pages.
International Search Report and Written Opinion, PCT Application PCT/US2008/050292, dated Sep. 19, 2008, 25 pages.
Justice Floyd, UK Royal Court of Justice: [2012] EWHC 1789 (Pat)—Extracts, Jul. 4, 2013, 26 pages. www.judiciary.gov.uk/Resources/JCO/Documents/Judgments/htc-v-apple-judgment.pdf, 26.
Notice of Acceptance, AU Application 2009208099, dated Nov. 24, 2011, 3 pages.
Notice of Acceptance, AU Application 2009208103, dated Apr. 14, 2011, 3 pages.
Notice of Acceptance, AU Application 2011201639, dated Nov. 9, 2011, 3 pages.
Notice of Acceptance, AU Application 2011209720, dated May 1, 2014, 3 pages.
Notice of Allowance, CA Application 2,755,443, dated Nov. 2, 2012, 1 page.
Notice of Allowance, CA Application 2653363, dated Apr. 29, 2014, 1 pg.
Notice of Allowance, JP Application 2012-500844, dated Aug. 1, 2014, 3 pages.
Notice of Allowance, JP Application 2013-515382, dated Aug. 22, 2014, 3 pages.
Notice of Allowance, KR 2009-7007114, dated Apr. 26, 2013, 2 pages.
Notice of Allowance, U.S. Appl. No. 11/620,717, dated Jul. 20, 2010, 10 pages.
Notice of Allowance, U.S. Appl. No. 12/042,067, dated Dec. 6, 2013, 9 pages.
Notice of Allowance, U.S. Appl. No. 12/042,067, dated Sep. 27, 2013, 10 pages.
Notice of Allowance, U.S. Appl. No. 12/042,299, dated Dec. 12, 2012, 7 pages.
Notice of Allowance, U.S. Appl. No. 12/270,805, dated May 17, 2012, 26 pages.
Notice of Allowance, U.S. Appl. No. 12/270,807, dated May 11, 2012, 16 pages.
Notice of Allowance, U.S. Appl. No. 12/270,810, dated Jul. 11, 2012, 17 pages.
Notice of Allowance, U.S. Appl. No. 12/566,660, dated Jul. 26, 2012, 9 pages.
Notice of Allowance, U.S. Appl. No. 13/077,927, dated Jun. 13, 2013, 10 pages.
Notice of Allowance, U.S. Appl. No. 13/163,624, dated May 12, 2014, 5 pages.
Notice of Allowance, U.S. Appl. No. 13/163,626, dated Mar. 31, 2014, 5 pages.
Notice of Allowance, U.S. Appl. No. 13/464,800, dated Dec. 19, 2012, 8 pages.
Notice of Allowance, U.S. Appl. No. 13/867,950, dated Nov. 15, 2013, 7 pages.
Notice of Allowance, dated May 28, 2015, received in U.S. Appl. No. 14/180,267, 11 pages.
Notice of Appeal in Expedited Appeal in Summary Proceedings, Sep. 11, 2011, 51 pages.
Notice of Opposition, EP Patent 2098948, Nov. 8, 2011, 22 pages.
Notification of Grant, CN Application 201120580018.5, dated Jul. 26, 2013, 2 pages.
Pleading notes Mr Kleemans, Mr Blomme and Mr Van Oorschot, Aug. 10, 2011, 35 pages.
Quinn Emanuel, Response to Patent Proprietor's Grounds of Appeal, Dec. 8, 2014, 34 pages.
Quinn Emanuel, Statement re Notice of the Opposition Division dated May 15, 2013, Dec. 3, 2013, 13 pages.
Quinn Emanuel, Statement, Jan. 21, 2014, 9 pages.
Samsung Electronics GmbH/Apple Inc. Opposition, Jan. 30, 2012, 27 pages.
Samsung Statement of Defence (Smartphones) Also Counterclaim, Jul. 20, 2011, 48 pages.
Search Report and Written Opinion, NL Application 2007993, dated May 30, 2012, 14 pages.
Summons to oral proceedings, EP Application 09154313.2, May 15, 2013, 30 pages.
Summons to oral proceedings, EP Application 09154313.2, Jul. 18, 2013, 3 pages.
Summons to oral proceedings, EP Application 09700006.1, Mar. 10, 2015, 9 pages.
Summons to oral proceedings, EP Application 09700008.7, Mar. 10, 2015, 12 pages.
Summons to oral proceedings, EP Application 11184226.6, Oct. 30, 2013, 5 pages.
Supplemental Notice of Allowance, U.S. Appl. No. 13/620,390, dated Jan. 27, 2014, 2 pages.
Wagner & Geyer, Remarks for Consideration w/Annexes A11-A14, Aug. 10, 2012, 73 pages.
Withers Rogers, Comments on Sections 3.1 and 3.4 of the Withdrawn Appeal, Oct. 14, 2014, 3 pages.
Withers Rogers, Preliminary Reponse to Opponent O1's Written Submission, Dec. 3, 2013, 11 pages.
Withers Rogers, Response to Preliminary Opinion of the Opposition Division, Dec. 3, 2013, 45 pages.
Withers Rogers, Revised Second Auxiliary Request, Jan. 30, 2014, 14 pages.
Zimmermann & Partner, Response to Patentee letter of Dec. 3, 2013, Jan. 3, 2014, 10 pages.
Zimmermann & Partner, Response to Summons to Attend Oral Proceeding, Nov. 7, 2013, 33 pages.
Office Action, dated Jul. 17, 2015, received in Japanese Patent Application No. 2014-044208, which corresponds with U.S. Appl. No. 12/789,695, 5 pages.
Final Office Action, dated Sep. 9, 2013, received in U.S. Appl. No. 13/077,931.
Office Action, dated Aug. 20, 2015, received in U.S. Appl. No. 13/077,931, 22 pages.
Apple Inc. v. HTC Corporation, Brief Details of Claim, In the High Court of Justice, Chancery Division, Patents Court, Sep. 12, 2011, 2 pages.
Apple Inc. v. HTC Corporation, Particulars of Infringement, in the High Court of Justice, Chancery Division, Patents Court, Sep. 12, 2011, 5 pages.
Apple Inc. vs. Samsung Electronics Co. Ltd. et al., Judgment. August Aug. 24, 2011, 65 pages.
Apple Inc. vs. Samsung Electronics Co. Ltd., et al., Samsung's Motion to Supplement Invalidity Contentions together with Exhibit 6, Jan. 27, 2012, 47 pages.
Apple Inc. vs. Samsung Electronics Co. Ltd., et al., Samsung's Patent Local Rule 3-3 and 3-4 Disclosures together with Exhibits G-1 through G-7 and Exhibit H, Oct. 7, 2011, 287 pages.
Apple Inc., Proprietor's Response to Addendum from Samsug Electronics GmbH, Jun. 21, 2012, 3 pages.
Apple Inc., Proprietor's Response to Communication under Rule 79(1) EPC, Mar. 8, 2012, 8 pages.
Apple Inc., Proprietor's Response to Notice of Intervention from Motorola Mobility Germany GmbH, Jun. 21, 2012, 3 pages.
Apple, Safari Web Content Guide for iPhone, Apple Inc., Feb. 5, 2005, 96 pages.
Lin, A Embedded GUI Based on Linux OS and Ameliorate of Framework, May 13, 2004, 3 pages.
Office Action, dated Jul. 1, 2015, received in European Patent Application No. 10 712 825.8, which corresponds with U.S. Appl. No. 12/566,660, 6 pages.
Touch Technology Handbook, Carroll Touch, 1998, 37 pages.
Office Action, AU Application 2008100283, dated Jul. 1, 2008, 2 pages.
Office Action, AU Application 2008201540, dated Jul. 15, 2009, 2 pages.
Office Action, AU Application 2008201540, dated Feb. 19, 2009, 2 pages.
Office Action, AU Application 2009200366, dated Feb. 11, 2009, 4 pages.
Office Action, AU Application 2009200493, dated Dec. 13, 2011, 3 pages.
Office Action, AU Application 2009200493, dated Mar. 17, 2010, 2 pages.
Office Action, AU Application 2009208103, dated Apr. 8, 2010, 2 pages.
Office Action, AU Application 2011268047, dated Aug. 14, 2013, 2 pages.
Office Action, AU Application 2012200689, dated Sep. 9, 2013, 3 pages.
Office Action, CA Application 2,653,363, dated Sep. 3, 2013, 3 pages.
Office Action, CA Application 2,653,363, dated Jan. 18, 2012, 2 pages.
Office Action, CA Application 2,658,177, dated Dec. 1, 2009, 2 pages.
Office Action, CA Application 2,658,177, dated Jun. 22, 2011, 2 pages.
Office Action, CA Application 2,759,090, dated Nov. 4, 2013, 3 pages.
Office Action, CA Application 2,759,091, dated Nov. 7, 2013, 4 pages.
Office Action, CA Application 2,817,890, dated Oct. 9, 2013, 3 pages.
Office Action, CA Application 2,817,890, dated Apr. 22, 2014, 3 pages.
Office Action, CN 200880001811.6, dated Jan. 6, 2012, 10 pages.
Office Action, CN 200880001811.6, dated Aug. 10, 2011, 7 pages.
Office Action, CN 200880001811.6, dated Oct. 21, 2010, 5 pages.
Office Action, CN 201210128932.5, dated Oct. 30, 2014, 3 pages.
Office Action, CN Application 200880000019.9, dated Jan. 5, 2012, 14 pages.
Office Action, CN Application 200880000019.9, dated Feb. 18, 2013, 12 pages.
Office Action, CN Application 200880000019.9, dated Sep. 20, 2012, 22 pages.
Office Action, CN Application 200880000019.9, dated Jul. 23, 2013, 7 pages.
Office Action, CN Application 200880000019.9, dated Nov. 23, 2010, 13 pages.
Office Action, CN Application 200880001827.7, dated Nov. 11, 2010, 6 pages.
Office Action, CN Application 200880001855.9, dated Nov. 5, 2012, 17 pages.
Office Action, CN Application 200880001855.9, dated Jun. 6, 2012, 14 pages.
Office Action, CN Application 200880001855.9, dated Jul. 21, 2011, 19 pages.
Office Action, CN Application 200880001855.9, dated Dec. 23, 2011, 26 pages.
Office Action, CN Application 200880001855.9, dated Jul. 29, 2014, 5 pages.
Office Action, CN Application 200910118596.4, dated Aug. 6, 2010, 6 pages.
Office Action, CN Application 200980000013.6, dated Oct. 26, 2011, 6 pages.
Office Action, CN Application 200980000015.5, dated Sep. 11, 2012, 9 pages.
Office Action, CN Application 200980000015.5, dated Jul. 14, 2011, 8 pages.
Office Action, CN Application 200980000015.5, dated May 29, 2014, 1 pg.
Office Action, CN Application 201110148738.9, dated Aug. 5, 2013, 6 pages.
Office Action, CN Application 201110148738.9, dated Feb. 8, 2014, 3 pages.
Office Action, CN Application 201110463262.8, dated Apr. 30, 2014, 3 pages.
Office Action, CN Application 201120580018.5, dated Apr. 22, 2013, 4 pages.
Office Action, CN Application 201180022994.1, dated Dec. 3, 2014, 4 pages.
Office Action, CN Application 201210128911.3, dated Jan. 17, 2014, 3 pages.
Office Action, CN Application 201210128915.1, dated Mar. 18, 2014, 3 pages.
Office Action, CN Application 201210128915.1, dated Dec. 24, 2014, 3 pages.
Office Action, CN Application 201210128932.5, dated Feb. 21, 2014, 3 pages.
Office Action, DE Application 102009011687.7, dated May 17, 2010, 5 pages.
Office Action, DE Application 112008000144.8, dated Oct. 29, 2010, 8 pages.
Office Action, DE Application 112009000001.0, dated Sep. 26, 2012, 5 pages.
Office Action, DE Application 112009000002.9, dated Oct. 19, 2010, 4 pages.
Office Action, DE Application 112009000003.7, dated Sep. 26, 2012, 5 pages.
Office Action, EP Application 08705471.4, dated Jan. 29, 2015, 6 pages.
Office Action, EP Application 08712946.6, dated Oct. 20, 2014, 6 pages.
Office Action, EP Application 08712964.9, dated Jan. 20, 2015, 8 pages.
Office Action, EP Application 08713567.9, dated Dec. 29, 2009, 5 pages.
Office Action, EP Application 09154313.2, dated Feb. 12, 2010, 4 pages.
Office Action, EP Application 09700007.9, dated Mar. 9, 2012, 7 pages.
Office Action, EP Application 09700007.9, dated Aug. 28, 2014, 8 pages.
Office Action, EP Application 09700008.7, dated Jul. 12, 2010, 4 pages.
Office Action, EP Application 11150788.5, dated May 9, 2014, 6 pages.
Office Action, EP Application 11152015.1, dated Jul. 26, 2013, 6 pages.
Office Action, EP Application 11184167.2, dated May 14, 2014, 6 pages.
Office Action, EP Application 11184169.8, dated May 14, 2014, 6 pages.
Office Action, EP Application 11184170.6, dated May 16, 2014, 6 pages.
Office Action, EP Application 11184172.2, dated May 16, 2014, 5 pages.
Office Action, EP Application 11184186.2, dated Mar. 20, 2014, 5 pages.
Office Action, EP Application 11184226.6, dated Sep. 12, 2012, 5 pages.
Office Action, EP Application 11184409.8, dated May 16, 2014,6 pages.
Office Action, EP Application 11808779.0, dated Jul. 1, 2014, 5 pages.
Office Action, EP Application 12156394.4, dated Oct. 22, 2014, 6 pages.
Office Action, EP Application 12156395.1, dated Oct. 22, 2014, 6 pages.
Office Action, EP Application 12188748.3, dated Oct. 30, 2013, 5 pages.
Office Action, JP Application 2009-544996, dated Feb. 12, 2010, 1 page.
Office Action, JP Application 2010-502357, dated Sep. 2, 2013, 11 pages.
Office Action, JP Application 2010-502358, dated Aug. 15, 2011, 2 pages.
Office Action, JP Application 2012-218235, dated Sep. 24, 2013, 3 pages.
Office Action, JP Application 2012-224838, dated Jan. 6, 2014, 2 pages.
Office Action, JP Application 2012-500844, dated Feb. 24, 2014, 6 pages.
Office Action, dated Nov. 18, 2013, received in Japanese Patent Application No. 2013-515382, which correpsonds with U.S. Appl. No. 12/892,848, 37 pages.
Office Action, JP Application 2013-546284, dated Jul. 11, 2014, 3 pages. (JP only).
Office Action, KR Application 2009-7003574, dated Aug. 27, 2009, 1 page.
Office Action, KR Application 2012-7022239, dated Apr. 30, 2014, 2 pages.
Office Action, KR Application 2012-7029618, dated Dec. 5, 2013, 4 pages.
Office Action, KR Application 2013-7019463, dated Jun. 26, 2014, 2 pages.
Office Action, TW Application 100147539, dated Apr. 8, 2014, 5 pages.
Office Action, U.S. Appl. No. 11/620,709, dated Jun. 9, 2010, 8 pages.
Office Action, U.S. Appl. No. 11/620,710, dated Jul. 21, 2010, 29 pages.
Office Action, U.S. Appl. No. 11/620,717, dated Dec. 29, 2009, 8 pages.
Office Action, U.S. Appl. No. 11/620,720, dated Nov. 18, 2009, 17 pages.
Office Action, U.S. Appl. No. 11/620,723, dated Jun. 8, 2010, 8 pages.
Office Action, U.S. Appl. No. 12/042,067, dated Jan. 18, 2011, 13 pages.
Office Action, U.S. Appl. No. 12/207,429, dated Mar. 30, 2012, 10 pages.
Office Action, U.S. Appl. No. 12/270,807, dated Oct. 11, 2011, 32 pages.
Office Action, U.S. Appl. No. 12/270,810, dated Oct. 12, 2011, 18 pages.
Office Action, U.S. Appl. No. 12/270,812, dated Oct. 13, 2011, 18 pages.
Office Action, U.S. Appl. No. 12/270,812, dated May 17, 2012, 18 pages.
Office Action, U.S. Appl. No. 12/270,815, dated Oct. 11, 2011, 18 pages.
Office Action, U.S. Appl. No. 12/270,815, dated May 17, 2012, 17 pages.
Office Action, U.S. Appl. No. 12/789,695, dated Mar. 4, 2013, 13 pages.
Office Action, U.S. Appl. No. 12/869,182, dated Jun. 20, 2012, 6 pages.
Office Action, U.S. Appl. No. 12/869,182, dated Oct. 24, 2011, 6 pages.
Office Action, U.S. Appl. No. 12/892,851, dated Oct. 9, 2012, 11 pages.
Office Action, U.S. Appl. No. 13/054,472, dated Dec. 6, 2013, 42 pages.
Office Action, U.S. Appl. No. 13/077,931, dated Jan. 3, 2013, 13 pages.
Office Action, U.S. Appl. No. 13/077,931, dated Jul. 27, 2014, 21 pages.
Office Action, U.S. Appl. No. 13/084,472, dated Dec. 6, 2013, 23 pages.
Office Action, U.S. Appl. No. 13/084,472, dated Oct. 9, 2012, 15 pages.
Office Action, U.S. Appl. No. 13/084,472, dated Dec. 10, 2010, 24 pages.
Office Action, U.S. Appl. No. 13/163,624, dated Nov. 21, 2012, 8 pages.
Office Action, U.S. Appl. No. 13/163,624, dated Mar. 22, 2013, 8 pages.
Office Action, U.S. Appl. No. 13/163,624, dated Oct. 24, 2013, 8 pages.
Office Action, U.S. Appl. No. 13/163,626, dated Mar. 20, 2013, 7 pages.
Office Action, U.S. Appl. No. 13/163,626, dated Oct. 24, 2013, 8 pages.
Office Action, U.S. Appl. No. 13/163,626, dated Nov. 26, 2012, 8 pages.
Office Action, U.S. Appl. No. 13/215,150, dated Jun. 7, 2013, 34 pages.
Office Action, U.S. Appl. No. 13/221,827, dated Jun. 23, 2014, 19 pages.
Office Action, U.S. Appl. No. 13/221,836, dated Nov. 5, 2012, 16 pages.
Office Action, U.S. Appl. No. 13/221,836, dated Oct. 30, 2013, 31 pages.
Office Action, U.S. Appl. No. 13/221,837, dated Jul. 24, 2012, 13 pages.
Office Action, U.S. Appl. No. 13/251,121, dated May 1, 2013, 17 pages.
Office Action, U.S. Appl. No. 13/251,121, dated Jan. 10, 2012, 16 pages.
Office Action, U.S. Appl. No. 13/251,146, dated Apr. 11, 2013, 15 pages.
Office Action, U.S. Appl. No. 13/251,146, dated Jan. 31, 2012, 16 pages.
Office Action, U.S. Appl. No. 13/251,150, dated Feb. 10, 2012, 23 pages.
Office Action, U.S. Appl. No. 13/251,152, dated Jan. 20, 2012, 20 pages.
Office Action, U.S. Appl. No. 13/251,152, dated Apr. 23, 2013, 29 pages.
Office Action, U.S. Appl. No. 13/464,800, dated Jun. 18, 2012, 10 pages.
Office Action, U.S. Appl. No. 13/670,378, dated Mar. 5, 2013, 19 pages.
Office Action, U.S. Appl. No. 13/867,950, dated Jun. 26, 2013, 21 pages.
Office Action, U.S. Appl. No. 14/189,922, dated Sep. 24, 2014, 6 pages.
Office Action, dated Apr. 28, 2015, received in U.S. Appl. No. 13/791,621, 6 pages.
Office Action, dated May 20, 2015, received in U.S. Appl. No. 13/221,827, 26 pages.
Ballard, Microsoft Makes Research Technologies Available for Licensing, May 5, 2005, 8 pgs, theserveside.com/discussions/thread.tss?thread—id=33761.
Bederson, Photo Mesa 3.1.2, Screen Shots, 2006, 5 pgs.
Benko, Precise Selection Techniques for Multi-Touch Screens, CHI 2006, Apr. 22-27, 2006, 10 pgs.
Chen, The Web is Everywhere, IEEE Communications Magazine, Feb. 5, 2008, 1 page.
Davis, Flash to the Core-An Interactive Sketchbook, praystation.com. 2002, 3 pgs, flashtothecore.praystation.com/.
Dewid, Scroll Control Box, IBM Technical Disclosure Bulletin, vol. 38, 04, Apr. 1993, pp. 399-403.
Dietz, DiamondTouch: A Multi-User Touch Technology, UIST'01, Orlando, FL, 2001, 17 pgs.
Dodge, Microsoft Office Excel 2003 Office Manual, Microsoft Press, Jul. 12, 2004, vol. 1, p. 66-68.
Esenther, Fluid DTMouse: Better Mouse Support for Touch-Based Interactions, May 2006, 6 pgs.
Forlines, DTLens: Multi-user Tabletop Spatial Data Exploration, UIST'05, Oct. 2005, Seattle, WA, 6 pgs.
Forlines, Glimpse: A Novel Input Model for Multi-Level Devices, CHI 2005, Apr. 2-7, 2005, Portland, OR, 6 pgs.
Hildon User Interface Style Guide Summary, Version 1.1, 2005, 15 pgs.
Karlson, AppLens and LaunchTile: Two Designs for One-handed Thumb Use on Small Devices, PowerPoint presentation, CHI 2005 Apr. 2-7, 2005, Portland, OR, 17 pgs.
Karlson, AppLens and LaunchTile: Two Designs for One-handed Thumb Use on Small Devices, CHI 2005 Apr. 2-7, 2005, Portland, OR, 10 pgs.
Kim, HCI (Human Computer Interaction) Using Multi-touch Tabletop Display, IEEE Pacific Rim Conference on Communications, Computers and Signal Processing, Aug. 22-24, 2007, pp. 391-394.
Maemo Coding Style and Programming Guidelines (Maemo 3.x), 2007, 5 pgs.
Merriam-Webster definition of “Contemporaneous”, Jan. 21, 2014, 2 pgs.
Mertz, The influence of design techniques on user interfaces: the DigiStrips experiment for air traffic control, Proceeding of HCI-Aero 2000 International Conference on Human-Computer Interaction in Aeronautics, Toulouse, France, 6 pgs.
Microsoft Word 2003 Screen Shots, Microsoft 2003, 2 pgs.
Miller, Personal/Java Application Environment, Jun. 8, 1999, 12 pgs, java.sun.com/products/personaljava/touchable/.
Millhollon, Microsoft Office Word 2003 Inside Out, 2003, Microsoft Press, Redmond, Washington, 7 pgs.
Motorola Mobility Opposition Grounds to Apple Inc. EP Patent 2126678, Apr. 11, 2012, together with Exhibits E3, E4, and E5 re: CHI 2005, Apr. 2-7, 2005, Portland, OR, 53 pgs.
Olsen, Building Interactive Systems, Chapter 3, Jan. 2009, 6 pgs.
Olsen, Developing User Interfaces, Morgan Kaufmann Publishers, 1998, chapter 4, 40 pgs.
Petzold, Programming Microsoft Windows with C#, Jan. 18, 2002, 5 pgs.
Plaisant, Touchscreen Toggle Design, Proceedings of the Conference on Human Factors in Computing Systems, Addison Wesley, US, May 3, 1992, 2 pgs.
Räihä, Delegation: Dynamic Specialization, Proceeding of the conference on TRI-Ada '94, pp. 172-179.
Ramachandran, An Architecture for Ink Annotations on Web Documents, Proceedings of the 7th International Conference on Document Analysis and Recognition, Aug, 2003, pp. 256-260.
Rappin, wxPython in Action, 2006, 40 pgs.
Rowan, Breakthrough Internet Device, Eureka Man, available online at https://web.archive.org/web/20070709083626/http:/leurekaman.com/towards-multti-touch-in-the-browser, Jan. 31, 2007, 2 pgs.
Rubine, The Automatic Recognition of Gestures, 1991 Dean Harris Rubine, in partial fulfillment of the requirements for the degree of Doctor of Philosophy in Computer Science, Carnegie Mellon University, 285 pgs.
Salmoni, The Zooming User Interface, Advogato, Aug. 16, 2004, 14 pgs, www.advogato.org/article/788.html.
Sells, Windows Forms Programming in C#, 2004, 9 pgs.
Shen, Informing the Design of Direct-Touch Tabletops, 2006, 11 pgs.
Tidwell, Magnetism, Designing Interfaces, Copyright © 2006 O'Reilly Media, Inc., pp. 279-280.
Touch Technology Handbook, Carroll Touch, 1998, 37 pgs.
Westerman, Hand Tracking Finger Identification and Chordic Manipulation on a Multi-touch Surface, Doctoral Dissertation, submitted Spring 1999, 363 pgs.
Apple Inc. v. HTC Corporation, Particulars of Claim, In the High Court of Justice, Chancery Division, Patents Court, Sep. 12, 2011, 4 pages.
Feng et al., “Wireless Java Programming with Java 2 Micro Edition,” ASCII Corporation, Kenichi Suzuki, Japan, May 11, 2002, 90 pages.
Nathan, “Silverlight 1.0 Unleashed,” Sam's Publishing, XP055236068, ISBN: 978-0-672-33007-0, Oct. 16, 2007, 271 pages. (Part One & Part Two).
Office Action, dated Jun. 9, 2010, received in U.S. Appl. No. 11/620,709, 8 pages.
Office Action, dated Jul. 21, 2010, received in U.S. Appl. No. 11/620,710, 29 pages.
Office Action, dated Nov. 18, 2009, received in U.S. Appl. No. 11/620,720, 17 pages.
Office Action, dated Jun. 8, 2010, received in U.S. Appl. No. 11/620,723, 8 pages.
Office Action, dated Jul. 15, 2009, received in Australian Patent Application No. 2008201540, which corresponds with U.S. Appl. No. 11/956,969, 2 pages.
Office Action, dated Jul. 1, 2008, received in Australian Patent Application No. 2008100283, which corresponds with U.S. Appl. No. 11/956,969, 2 pages.
Office Action, dated Feb. 11, 2009, received in Australian Patent Application No. 2009200366, which corresponds with U.S. Appl. No. 11/956,969, 2 pages.
Office Action, dated Apr. 8, 2010, received in Australian Patent Application No. 2009208103, which corresponds with U.S. Appl. No. 11/956,969, 2 pages.
Office Action, Notice of Acceptance, dated Nov. 9, 2011, received in Australian Patent Application No. 2011201639, which corresponds with U.S. Appl. No. 11/956,969, 2 pages.
Office Action, Letters Patent, dated Mar. 2, 2012, received in Australian Patent Application No. 2012100050, which corresponds with U.S. Appl. No. 11/956,969, 31 page.
Office Action, dated Sep. 9, 2013, received in Australian Patent Application No. 2012200689, which corresponds with U.S. Appl. No. 11/956,969, 3 pages.
Office Action, dated Dec. 1, 2009, received in Canadian Patent Application No. 2,658,177, which corresponds with U.S. Appl. No. 11/956,969, 2 pages.
Office Action, dated Jun. 22, 2011, received in Canadian Patent Application No. 2,658,177, which corresponds with U.S. Appl. No. 11/956,969, 2 pages.
Office Action, dated Nov. 4, 2013, received in Canadian Patent Application No. 2,759,090, which corresponds with U.S. Appl. No. 11/956,969, 3 pages.
Office Action, Notice of Allowance, dated Jan. 30, 2012, received in Canadian Patent Application No. 2,658,177, which corresponds with U.S. Appl. No. 11/956,969, 1 page.
Office Action, dated Nov. 7, 2013, received in Canadian Patent Application No. 2,759,091, which corresponds with U.S. Appl. No. 11/956,969, 4 pages.
Office Action, dated Nov. 23, 2010, received in Chinese Patent Application No. 200880000019.9, which corresponds with U.S. Appl. No. 11/956,969, 2 pages.
Office Action, dated Jan. 5, 2012, received in Chinese Patent Application No. 200880000019.9, which corresponds with U.S. Appl. No. 11/956,969, 2 pages.
Office Action, dated Sep. 20, 2012, received in Chinese Patent Application No. 200880000019.9, which corresponds with U.S. Appl. No. 11/956,969, 1 page.
Office Action, dated Feb. 18, 2013, received in Chinese Patent Application No. 200880000019.9, which corresponds with U.S. Appl. No. 11/956,969, 2 pages.
Office Action, dated Jul. 23, 2013, received in Chinese Patent Application No. 200880000019.9, which corresponds with U.S. Appl. No. 11/956,969, 2 pages.
Office Action, dated Oct. 29, 2010, received in German Patent Application No. 112008000144.8, which corresponds with U.S. Appl. No. 11/956,969, 4 pages.
Office Action, dated Dec. 29, 2009, received in European Patent Application No. 08713567.9, which corresponds with U.S. Appl. No. 11/956,969, 5 pages.
Office Action, Decision to Grant, dated Oct. 7, 2011, received in European Patent Application No. 08713567.9, which corresponds with U.S. Appl. No. 11/956,969, 1 page.
Office Action, Patent Certificate, dated Jun. 21, 2012, received in European Patent Application No. 08713567.9, which corresponds with U.S. Appl. No. 11/956,969, 2 pages.
Certificate of Grant, dated Feb. 3, 2012, received in Hong Kong Patent Application No. 10103983.1, which corresponds with U.S. Appl. No. 11/956,969, 2 pages.
Office Action, dated Nov. 19, 2010, received in Japanese Patent Application No. 2009-544996, which corresponds with U.S. Appl. No. 11/956,969, 6 pages.
Office Action, Letters Patent, dated Jun. 1, 2011, received in Japanese Application No. 2009-544996, which corresponds with U.S. Appl. No. 11/956,969, 1 page.
Office Action, dated Feb. 12, 2010, received in Japanese Application No. 2009-544996, which corresponds with U.S. Appl. No. 11/956,969, 3 pages.
Office Action, Grant of Patent, dated Oct. 26, 2012, received in Japanese Patent Application No. 2010-157302, which corresponds with U.S. Appl. No. 11/956,969, 4 pages.
Office Action, dated Aug. 27, 2009, received in Korean Patent Application No. 10-2009-7003574, which corresponds with U.S. Appl. No. 11/956,969, 1 page.
Office Action, dated Oct. 11, 2011, received in U.S. Appl. No. 12/270,807, 26 pages.
Office Action, dated Oct. 12, 2011, received in U.S. Appl. No. 12/270,810, 12 pages.
Office Action, dated Oct. 13, 2011, received in U.S. Appl. No. 12/270,812, 12 pages.
Office Action, dated May 17, 2012, received in U.S. Appl. No. 12/270,812, 14 pages.
Office Action, dated Oct. 11, 2011, received in U.S. Appl. No. 12/270,815, 12 pages.
Office Action, dated May 17, 2012, received in U.S. Appl. No. 12/270,815, 11 pages.
Office Action, dated Dec. 29, 2009, received in U.S. Appl. No. 11/620,717, 8 pages.
Office Action, dated Nov. 26, 2012, received in European Patent Application No. 08712964.9, which corresponds with U.S. Appl. No. 11/620,717, 6 pages.
Office Action, dated Jan. 20, 2015, received in European Patent Application No. 08712964.9, which corresponds with U.S. Appl. No. 11/620,717, 8 pages.
Office Action, dated Oct. 24, 2011, received in U.S. Appl. No. 12/869,182, 7 pages.
Office Action, dated Jun. 20, 2012, received in U.S. Appl. No. 12/869,182, 6 pages.
Office Action, dated Mar. 30, 2012, received in U.S. Appl. No. 12/207,429, 9 pages.
Office Action, dated Jun. 26, 2013, received in U.S. Appl. No. 13/867,950, 5 pages.
Office Action, dated Sep. 24, 2014, received in U.S. Appl. No. 14/189,922, 7 pages.
Office Action, International Search Report and Written Opinion, dated May 31, 2005, received in International Patent Application No. PCT/US2005/000089, 7 pages.
Office Action, International Preliminary Report on Patentability, dated Jun. 18, 2005, received in International Patent Application No. PCT/US2005/000089, 5 pages.
Pixley, “Document Object Model (DOM) Level 2 Events Specification, Version 1,” Netscape Communications Corp., W3C, Nov. 13, 2000, 47 pages.
Samsung, Statement of Defense also Counterclaim (Tablets), Judge in Interlocutory Proceedings of the Court in The Hague, Jul. 20, 2011, 48 pages.
Letters Patent, dated Dec. 29, 2015, received in Canadian Patent Application No. 2,817,890, which corresponds with U.S. Appl. No. 12/566,660, 2 pages.
Certificate of Patent, dated Jan. 7, 2016, received in Japanese Patent Application No. 2014-129689, which corresponds with U.S. Appl. No. 12/566,660, 3 pages.
Certificate of Patent, dated Feb. 5, 2016, received in Japanese Patent Application No. 2014-129689, which corresponds with U.S. Appl. No. 12/566,660, 1 page.
Final Office Action, dated Feb. 22, 2016, received in U.S. Appl. No. 12/789,695, 17 pages.
Notice of Allowance, dated Apr. 14, 2016, received in Australian Patent Application No. 2014213525, which corresponds with U.S. Appl. No. 12/789,695, 1 page.
Certificate of Grant, dated Aug. 11, 2016, received in Australian Patent Application No. 2014213525, which corresponds with U.S. Appl. No. 12/789,695, 1 page.
Office Action, dated Dec. 3, 2015, received in Chinese Patent Application No. 201310557439.X, which corresponds with U.S. Appl. No. 12/789,695, 2 pages.
Patent Certificate, dated Aug. 31, 2016, received in Chinese Patent Application No. 201310557439.X, which corresponds with U.S. Appl. No. 12/789,695, 2 pages.
Notice of Allowance, dated Apr. 15, 2016, received in Japanese Patent Application No. 2014-044208, which corresponds with U.S. Appl. No. 12/789,695, 3 pages.
Patent Certificate, dated May 20, 2016, received in Japanese Patent Application No. 2014-044208, which corresponds with U.S. Appl. No. 12/789,695, 2 page.
Office Action, dated Apr. 30, 2014, received in Korean Patent Application No. 2012-7022239, which corresponds with U.S. Appl. No. 12/789,695, 2 pages.
Notice of Allowance, dated May 23, 2016, received in Korean Patent Application No. 10-2014-7030745, which corresponds with U.S. Appl. No. 12/789,695, 3 pages.
Letters Patent, dated Jul. 29, 2016, received in Korean Patent Application No. 10-2014-7030745, which corresponds with U.S. Appl. No. 12/789,695, 2 pages.
Notice of Allowance, dated Mar. 18, 2016, received in Australian Patent Application No. 2014200702, which corresponds with U.S. Appl. No. 12/892,848, 2 pages.
Certificate of Grant, dated Sep. 22, 2016, received in Australian Patent Application No. 2014200702, which corresponds with U.S. Appl. No. 12/892,848, 1 page.
Office Action, dated Nov. 24, 2015, received in Chinese Patent Application No. 201180022994.1, which corresponds with U.S. Appl. No. 12/892,848, 2 pages.
Notice of Allowance, dated Apr. 6, 2016, received in Chinese Patent Application No. 201180022994.1, which corresponds with U.S. Appl. No. 12/892,848, 2 pages.
Patent Certificate, dated May 18, 2016, received in Chinese Patent Application No. 201180022994.1, which corresponds with U.S. Appl. No. 12/892,848, 1 page.
Office Action, dated Nov. 13, 2015, received in Japanese Patent Application No. 2014-191701, which corresponds with U.S. Appl. No. 12/892,848, 3 pages.
Notice of Allowance, dated Jun. 27, 2016, received in Japanese Patent Application No. 2014-191701, which corresponds with U.S. Appl. No. 12/892,848, 3 pages.
Certificate of Patent, dated Jul. 29, 2016, received in Japanese Patent Application No. 2014-191701, which corresponds with U.S. Appl. No. 12/892,848, 2 pages.
Office Action, dated Mar. 15, 2016, received in Australian Patent Application No. 2015203638, which corresponds with U.S. Appl. No. 13/077,925, 3 pages.
NOA/Grant, dated Apr. 1, 2016, received in Chinese Patent Application No. 20110463262.8, which corresponds with U.S. Appl. No. 13/077,925, 2 pages.
Letters Patent, dated May 4, 2016, received in Chinese Patent Application No. 20110463262.8, which corresponds with U.S. Appl. No. 13/077,925, 3 pages.
Office Action, dated Jul. 1, 2014, received in European Patent Application No. 11808779.0, which corresponds with U.S. Appl. No. 13/077,925, 5 pages.
Notice of Allowance, dated Jun. 27, 2016, received in Japanese Patent Application No. 2015-077922, which corresponds with U.S. Appl. No. 13/077,925, 5 pages.
Certificate of Patent, dated Aug. 5, 2016, received in Japanese Patent Application No. 2015-077922, which corresponds with U.S. Appl. No. 13/077,925, 2 pages.
Office Action, dated Jun. 26, 2014, received in Korean Patent Application No. 2013-7019463, which corresponds with U.S. Appl. No. 13/077,925, 2 pages.
Office Action, dated Oct. 20, 2015, received in Korean Patent Application No. 2014-7036632, which corresponds with U.S. Appl. No. 13/077,925, 2 pages.
Notice of Allowance, dated Apr. 29, 2016, received in Korean Patent Application No. 2014-7036632, which corresponds with U.S. Appl. No. 13/077,925, 3 pages.
Letters Patent, dated Jul. 29, 2016, received in Korean Patent Application No. 2014-7036632, which corresponds with U.S. Appl. No. 13/077,925, 3 pages.
Office Action, dated Aug. 23, 2016, received in Korean Patent Application No. 2016-7020964, which corresponds with U.S. Appl. No. 13/077,925, 2 pages.
Notice of Acceptance, dated Jul. 14, 2016, received in Australian Patent Application No. 2013242854, which corresponds with U.S. Appl. No. 12/042,318, 2 pages.
Office Action, dated Jan. 7, 2016, received in Canadian Patent Application No. 2653363, which corresponds with U.S. Appl. No. 12/042,318, 4 pages.
Office Action, dated Aug. 5, 2013, received in Chinese Patent Application No. 201110148738.9, which corresponds with U.S. Appl. No. 12/042,318, 6 pages.
Decision to Grant, dated Sep. 17, 2015, received in European Application No. 11150788.5, which corresponds with U.S. Appl. No. 12/042,318, 1 page.
Office Action, dated Apr. 15, 2015, received in European Patent Application No. 11184167.2, which corresponds with U.S. Appl. No. 12/042,318, 3 pages.
Office Action, dated Nov. 25, 2015, received in European Patent Application No. 11184167.2, which corresponds with U.S. Appl. No. 12/042,318, 7 pages.
Office Action, dated Feb. 16, 2016, received in European Patent Application No. 11184167.2, which corresponds with U.S. Appl. No. 12/042,318, 6 pages.
Intention to Grant, dated Sep. 28, 2016, received in European Patent Application No. 11184167.2, which corresponds with U.S. Appl. No. 12/042,318, 5 pages.
Office Action, dated Nov. 25, 2015, received in European Patent Application No. 11184169.8, which corresponds with U.S. Appl. No. 12/042,318, 8 pages.
Office Action, dated Feb. 16, 2016, received in European Patent Application No. 11184169.8, which corresponds with U.S. Appl. No. 12/042,318, 6 pages.
Intention to Grant, dated Sep. 29, 2016, received in European Patent Application No. 11184169.8, which corresponds with U.S. Appl. No. 12/042,318, 5 pages.
Office Action, dated Apr. 16, 2015, received in European Patent Application No. 11184170.6, which corresponds with U.S. Appl. No. 12/042,318, 2 pages.
Office Action, dated Nov. 30, 2015, received in European Patent Application No. 11184170.6, which corresponds with U.S. Appl. No. 12/042,318, 4 pages.
Intention to Grant, dated Jul. 8, 2016, received in European Patent Application No. 11184170.6, which corresponds with U.S. Appl. No. 12/042,318, 7 pages.
Office Action, dated Apr. 17, 2015, received in European Patent Application No. 11184172.2, which corresponds with U.S. Appl. No. 12/042,318, 6 pages.
Office Action, dated Nov. 30, 2015, received in European Patent Application No. 11184172.2, which corresponds with U.S. Appl. No. 12/042,318, 4 pages.
Intention to Grant, dated Jul. 8, 2016, received in European Patent Application No. 11184172.2, which corresponds with U.S. Appl. No. 12/042,318, 5 pages.
Office Action, dated Apr. 22, 2015, received in European Patent Application No. 11184409.8, which corresponds with U.S. Appl. No. 12/042,318, 6 pages.
Office Action, dated Nov. 30, 2015, received in European Patent Application No. 11184409.8, which corresponds with U.S. Appl. No. 12/042,318, 4 pages.
Intention to Grant, dated Jul. 1, 2016, received in European Patent Application No. 11184409.8, which corresponds with U.S. Appl. No. 12/042,318, 5 pages.
Office Action, dated Nov. 25, 2015, received in European Patent Application No. 12156394.4, which corresponds with U.S. Appl. No. 12/042,318, 8 pages.
Decision to Grant, dated Jul. 28, 2016, received in European Patent Application No. 12156394.4, which corresponds with U.S. Appl. No. 12/042,318, 1 page.
Office Action, dated Nov. 25, 2015, received in European Application No. 12156395.1, which corresponds with U.S. Appl. No. 12/042,318, 9 pages.
Intention to Grant, dated Aug. 9, 2016, received in European Application No. 12156395.1, which corresponds with U.S. Appl. No. 12/042,318, 3 pages.
Certificate of Grant, dated Jul. 17, 2015, received in Hong Kong Patent Application No. 12105027.2, which corresponds with U.S. Appl. No. 12/042,318, 2 pages.
Office Action, dated Jul. 20, 2015, received in Israel Patent Application No. 197386, which corresponds with U.S. Appl. No. 12/042,318, 3 pages.
Notice of Allowance, dated Nov. 23, 2015, received in Israel Patent Application No. 197386, which corresponds with U.S. Appl. No. 12/042,318, 2 pages.
Patent, dated May 30, 2016, received in Israel Patent Application No. 197386, which corresponds with U.S. Appl. No. 12/042,318, 2 pages.
Office Action, dated Apr. 4, 2016, received in Japanese Patent Application No. 2015-085361, which corresponds with U.S. Appl. No. 12/042,318, 3 pages.
Office Action, dated Mar. 21, 2016, received in Chinese Patent Application No. 2016031601558630, which corresponds with U.S. Appl. No. 12/042,067, 2 pages.
Decision to Grant, dated Apr. 14, 2016, received in European Patent Application No. 09700006.1, which corresponds with U.S. Appl. No. 12/042,067, 1 page.
Decision to Grant, dated Apr. 12, 2015, received in European Patent Application No. 09700006.1, which corresponds with U.S. Appl. No. 12/042,067, 5 pages.
Office Action, dated Apr. 28, 2016, received in Chinese Patent Application No. 2016042501712900, which corresponds with U.S. Appl. No. 12/042,299, 2 pages.
Office Action, dated Jun. 1, 2016, received in Chinese Patent Application No. 2014100285627, which corresponds with U.S. Appl. No. 12/042,299, 3 pages.
Office Action, dated Jul. 25, 2016, received in European Patent Application No. 11184226.6, which corresponds with U.S. Appl. No. 12/042,299, 9 pages.
Office Action, dated Nov. 30, 2015, received in Japanese Patent Application No. 2014-250268, which corresponds with U.S. Appl. No. 12/042,299, 4 pages.
Decision to Grant, dated Jun. 6, 2016, received in Japanese Patent Application No. 2014-250268, which corresponds with U.S. Appl. No. 12/042,299, 4 pages.
Letters Patent, dated Jul. 15, 2016, received in Japanese Patent Application No. 2014-250268, which corresponds with U.S. Appl. No. 12/042,299, 2 pages.
Notice of Allowance, dated Jan. 14, 2016, received in U.S. Appl. No. 13/077,931, 8 pages.
Decision to Grant, dated Dec. 2, 2015, received in European Patent Application No. 09700008.7, which corresponds with U.S. Appl. No. 12/042,237, 5 pages.
Decision to Grant, dated Apr. 14, 2016, received in European Patent Application No. 09700008.7, which corresponds with U.S. Appl. No. 12/042,237, 1 page.
Patent Certificate, May 11, 2016, received in European Patent Application No. 09700008.7, which corresponds with U.S. Appl. No. 12/042,237, 2 pages.
Letters Patent, dated Oct. 31, 2014, received in Japanese Patent Application No. 2012-218235, which corresponds with U.S. Appl. No. 12/042,237, 2 pages.
Office Action, dated Oct. 4, 2016, received in U.S. Appl. No. 13/221,827, 20 pages.
Office Action, dated May 11, 2015, received in Chinese Patent Application No. 201210128932.5, which corresponds with U.S. Appl. No. 11/620,727, 4 pages.
Notice of Allowance, dated Feb. 5, 2016, received in Chinese Patent Application No. 201210128915.1, which corresponds with U.S. Appl. No. 11/620,727, 2 pages.
Certificate of Patent, dated Mar. 16, 2016, received in Chinese Patent Application, No. 201210128915.1, which corresponds with U.S. Appl. No. 11/620,727, 1 page.
Office Action, dated Jan. 29, 2016, received in Chinese Patent Application No. 201210128911.3, which corresponds with U.S. Appl. No. 11/620,727, 6 pages.
Office Action, dated Jan. 10, 2012, received in U.S. Appl. No. 13/251,121, 16 pages.
Office Action, dated May 1, 2013, received in U.S. Appl. No. 13/251,121, 17 pages.
Notice of Allowance, dated Sep. 20, 2016, received in U.S. Appl. No. 13/251,121, 7 pages.
Office Action, dated Apr. 11, 2013, received in U.S. Appl. No. 13/251,146, 15 pages.
Notice of Allowance, dated Sep. 7, 2016, received in U.S. Appl. No. 13/251,152, 8 pages.
Office Action, dated Jul. 29, 2014, received in Chinese Patent Application No. 200880001855.9, which corresponds with U.S. Appl. No. 11/620,715, 14 pages.
Notice of Allowance, dated Jul. 7, 2015, received in U.S. Appl. No. 13/084,472, 8 pages.
Notice of Allowance, dated Oct. 26, 2015, received in U.S. Appl. No. 13/084,472, 8 pages.
Supplemental Notice of Allowance, dated Jan. 27, 2014, received in U.S. Appl. No. 13/620,390, 2 pages.
Office Action, dated Feb. 26, 2016, received in U.S. Appl. No. 14/043,774, 5 pages.
Notice of Allowance, dated Jun. 27, 2016, received in U.S. Appl. No. 14/043,774, 7 pages.
Corrected Notice of Allowance, dated Sep. 20, 2016, received in U.S. Appl. No. 14/043,774, 2 pages.
Notice of Allowance, dated Nov. 5, 2015, received in U.S. Appl. No. 13/791,621, 5 pages.
Notice of Allowance, dated Mar. 1, 2016, received in U.S. Appl. No. 13/791,621, 7 pages.
Office Action, dated Jan. 4, 2016, received in U.S. Appl. No. 14/171,680, 7 pages.
Notice of Allowance, dated Apr. 18, 2016, received in U.S. Appl. No. 14/171,680, 5 pages.
Notice of Allowance, dated Sep. 15, 2015, received in U.S. Appl. No. 14/180,267, 5 pages.
Notice of Allowance, dated Dec. 31, 2015, received in U.S. Appl. No. 14/180,267, 5 pages.
Notice of Allowance, dated Feb. 11, 2016, received in U.S. Appl. No. 14/180,267, 2 pages.
Office Action, dated Sep. 12, 2016, received in U.S. Appl. No. 15/197,704, 7 pages.
Extended European Search Report, dated Dec. 22, 2015, received in European Patent Application No. 15175530.3, which corresponds with U.S. Appl. No. 12/042,067, 9 pages.
International Search Report and Written Opinion, dated Dec. 4, 2014, received in International Patent Application No. PCT/US2014/040406, which corresponds with U.S. Appl. No. 14/290,931, 9 pages.
International Preliminary Report on Patentability, dated Dec. 15, 2015, received in International Patent Application No. PCT/US2014/040406, which corresponds with U.S. Appl. No. 14/290,931, 6 pages.
iPhone Development Wiki, “UI GestureRecognizer”, http://iphonedevwiki.net/index.php?title+UIGestureRecognizer&oldid=319, 3 pages.
Ivanov, “API Hooking Revealed”, Code Project, www.codeproject.com/Articles/2082/API-hooking-revealed, Dec. 2, 2002, 16 pages.
Venners, “Java's Security Architecture; Java's Security Model and Built-In Safety Features,” JavaWorld, Jul. 1997, 7 pages.
Office Action, dated Nov. 28, 2016, received in Canadian Patent Application No. 2,909,730, which corresponds with U.S. Appl. No. 12/566,660, 4 pages.
Office Action, dated Sep. 26, 2016, received in Chinese Patent Application No. 2016092101783870, which corresponds with U.S. Appl. No. 12/566,660, 2 pages.
Notice of Allowance, dated Mar. 21, 2017, received in Chinese Patent Application No. 201410299526.4, which corresponds with U.S. Appl. No. 12/566,660, 3 pages.
Office Action, dated Apr. 5, 2017, received in Chinese Patent Application No. 201410299325.4, which corresponds with U.S. Appl. No. 12/566,660, 8 pages.
Notice of Allowance, dated Mar. 10, 2017, received in Chinese Patent Application No. 201410299324.X, which corresponds with U.S. Appl. No. 12/566,660, 3 pages.
Patent, dated Apr. 12, 2017, received in Chinese Patent Application No. 201410299324.X, which corresponds with U.S. Appl. No. 12/566,660, 2 pages.
Office Action, dated Nov. 18, 2016, received in Japanese Patent Application No. 2016-017396, which corresponds with U.S. Appl. No. 12/566,660, 5 pages.
Office Action, dated Oct. 4, 2013, received in U.S. Appl. No. 12/789,684, 19 pages.
Final Office Action, dated Mar. 7, 2014, received in U.S. Appl. No. 12/789,684, 23 pages.
Office Action, dated Jul. 18, 2014, received in U.S. Appl. No. 12/789,684, 29 pages.
Office Action, dated Jan. 28, 2015, received in U.S. Appl. No. 12/789,684, 29 pages.
Notice of Allowance, dated Aug. 14, 2015, received in U.S. Appl. No. 12/789,684, 15 pages.
Office Action, dated Feb. 2, 2016, received in Chinese Patent Application No. 2013105574402, which corresponds with U.S. Appl. No. 12/789,695, 5 pages.
Office Action, dated Nov. 9, 2016, received in Chinese Patent Application No. 2013105574402, which corresponds with U.S. Appl. No. 12/789,695, 3 pages.
Office Action, dated Aug. 24, 2016, received in Chinese Patent Application No. 2016082000182820, which corresponds with U.S. Appl. No. 12/789,695, 2 pages.
Office Action, dated Mar. 29, received in European Patent Application No. 11152015.1, which corresponds with U.S. Appl. No. 12/789,695, 11 pages.
Patent, dated Jan. 5, 2017, received in Korean Patent Application No. 10-2016-7020780, which corresponds with U.S. Appl. No. 12/789,695, 3 pages.
Office Action, dated Nov. 4, 2016, received in U.S. Appl. No. 12/892,851, 13 pages.
Notice of Allowance, dated Mar. 31, 2017, received in Korean Patent Application No. 2016-7020964, which corresponds with U.S. Appl. No. 13/077,925, 4 pages.
Certificate of Grant, dated Nov. 24, 2016, received in Australian Patent Application No. 2013242854, which corresponds with U.S. Appl. No. 12/042,318, 1 page.
Office Action, dated Feb. 17, 2017, received in Australian Patent Application No. 2016206268, which corresponds with U.S. Appl. No. 12/042,318, 2 pages.
Office Action, dated Dec. 28, 2016, received in Canadian Patent Application No. 2653363, which corresponds with U.S. Appl. No. 12/042,318, 1 page.
Office Action, dated Mar. 15, 2017, received in Canadian Patent Application No. 2,931,604, which corresponds with U.S. Appl. No. 12/042,318, 3 pages.
Decision to Grant, dated Mar. 23, 2017, received in European Patent Application No. 11184167.2, which corresponds with U.S. Appl. No. 12/042,318, 1 page.
Decision to Grant, dated Sep. 29, 2016, received in European Patent Application No. 11184169.8, which corresponds with U.S. Appl. No. 12/042,318, 1 page.
Office Action, dated May 4, 2015, received in Chinese Patent Application No. 20130053142.X, which corresponds with U.S. Appl. No. 12/042,067, 6 pages.
Office Action, dated Oct. 10, 2016, received in Chinese Patent Application No. 201310053142.X, which corresponds with U.S. Appl. No. 12/042,067, 8 pages.
Office Action, dated Nov. 16, 2016, received in European Patent Application No. 15175530.3, which corresponds with U.S. Appl. No. 12/042,237, 4 pages.
Decision on Appeal, dated Jan. 3, 2017, received in U.S. Appl. No. 13/221,836, 6 pages.
Notice of Allowance, dated Feb. 21, 2017, received in U.S. Appl. No. 13/221,836, 10 pages.
Notice of Allowance, dated Dec. 21, 2016, received in U.S. Appl. No. 13/251,150, 10 pages.
Notice of Allowance, dated Dec. 1, 2016, received in U.S. Appl. No. 13/251,152, 8 pages.
Notice of Allowance, dated Dec. 21, 2016, received in European Patent Application No. 08712946.6, which corresponds with U.S. Appl. No. 11/620,715, 7 pages.
Final Office Action, dated Nov. 25, 2016, received in U.S. Appl. No. 14/290,931, 13 pages.
Notice of Allowance, dated Apr. 7, 2017, received in U.S. Appl. No. 14/290,931, 11 pages.
Notice of Allowance, dated Jan. 20, 2017, received in U.S. Appl. No. 15/197,704, 5 pages.
Office Action, dated Apr. 21, 2017, received in U.S. Appl. No. 15/432,746, 9 pages.
International Search Report and Written Opinion, dated Jun. 1, 2011, received in International Patent Application No. PCT/US2011/020404, which corresponds with U.S. Appl. No. 12/789,684, 7 pages.
International Preliminary Report on Patentability, dated Jul. 10, 2012, received in International Patent Application No. PCT/US2011/020404, which corresponds with U.S. Appl. No. 12/789,684, 5 pages.
Letters Patent, dated May 7, 2012, received in Australian Patent Application No. 2011101154, which corresponds with U.S. Appl. No. 12/042,318, 1 page.
Letters Patent, May 8, 2012, received in Australian Patent Application No. 2011101155, which corresponds with U.S. Appl. No. 12/042,318, 1 page.
Letters Patent, dated May 8, 2012, received in Australian Patent Application No. 2011101157, which corresponds with U.S. Appl. No. 12/042,318, 1 page.
Certificate of Grant, dated Nov. 30, 2012, received in Honk Kong Patent Application No. 11110416.2, which corresponds with U.S. Appl. No. 12/042,318, 1 page.
Decision revoking the European Patent, dated Apr. 2, 2014, received in European Patent Application No. 09154313.2, which corresponds with U.S. Appl. No. 12/042,318, 2 pages.
Decision to Grant, dated Apr. 24, 2014, received in Chinese Patent Application No. 201080020598.0, which corresponds with U.S. Appl. No. 12/566,660, 1 page.
Decision to Grant, dated Jul. 26, 2012, received in European Patent Application No. 11150786.9, which corresponds with U.S. Appl. No. 12/042,318, 1 page.
Decision to Grant, Patent Certificate, dated May 20, 2011, received in received in Japanese Patent Application No. 2009-544996, which corresponds with U.S. Appl. No. 11/956,969, 2 pages.
Decision to Grant, dated Mar. 23, 2012, received in Japanese Patent Application No. 2010-502358, which corresponds with U.S. Appl. No. 12/042,299, 5 pages.
Decision to Grant, dated Nov. 1, 2013, received in Japanese Patent Application No. 2012-186775, which corresponds with U.S. Appl. No. 12/042,318, 3 pages.
Decision to Refuse, dated Oct. 8, 2013, received in European Patent Application No. 09700008.7, which corresponds with U.S. Appl. No. 12/042,237, 15 pages.
Decision to refuse, dated Feb. 11, 2015, received in European Patent Application No. 11184223.3, which corresponds with U.S. Appl. No. 12/042,299, 10 pages.
Extended European Search Report, dated Mar. 2, 2011, received in European Patent Application No. 11150786.9, which corresponds with U.S. Appl. No. 12/042,318, 5 pages.
Extended European Search Report, dated Nov. 23, 2011, received in European Patent Application No. 11184167.2, which corresponds with U.S. Appl. No. 12/042,318, 6 pages.
Extended European Search Report, dated Nov. 24, 2011, received in European Patent Application No. 11184169.8, which corresponds with U.S. Appl. No. 12/042,318, 6 pages.
Extended European Search Report, dated Nov. 18, 2011, received in European Patent Application No. 11184170.6, which corresponds with U.S. Appl. No. 12/042,318, 6 pages.
Extended European Search Report, dated Dec. 7, 2011, received in European Patent Application No. 11184186.2, which corresponds to U.S. Appl. No. 12/566,660, 6 pages.
Extended European Search Report, dated Jan. 13, 2012, received in European Patent Application No. 11184222.5, which corresponds with U.S. Appl. No. 12/042,299, 4 pages.
Extended European Search Report, dated Jan. 13, 2012, received in European Patent Application No. 11184224.1, which corresponds with U.S. Appl. No. 12/042,299, 7 pages.
Extended European Search Report, dated Nov. 30, 2011, received in European Patent Application No. 11184409.8, which corresponds with U.S. Appl. No. 12/042,318, 6 pages.
Extended European Search Report, dated Jul. 9, 2012, received in European Patent Application No. 12156395.1, which corresponds with U.S. Appl. No. 12/042,318, 8 pages.
Office Action (Ex Parte Reexamination Communication), dated Jul. 26, 2013, received in U.S. Appl. No. 90/012,332, 61 pages.
Office Action (Final), dated Nov. 13, 2009, received in U.S. Appl. No. 11/620,709, 8 pages.
Office Action (Final), dated Jun. 23, 2009, received in U.S. Appl. No. 11/620,720, 17 pages.
Office Action (Final), dated Nov. 17, 2009, received in U.S. Appl. No. 11/620,723, 8 pages.
Final Office Action, dated Mar. 7, 2013, received in U.S. Appl. No. 11/620,727, 23 pages.
Final Office Action, dated Jul. 28, 2011, received in U.S. Appl. No. 12/042,067, 12 pages.
Final Office Action, dated Jul. 8, 2011, received in U.S. Appl. No. 12/042,299, 8 pages.
Office Action, dated Feb. 14, 2013, received in U.S. Appl. No. 12/270,815, 12 pages.
Final Office Action, dated May 7, 2014, received in U.S. Appl. No. 12/789,695, 17 pages.
Final Office Action, dated Jul. 19, 2013, received in U.S. Appl. No. 12/892,851, 12 pages.
Final Office Action, dated Jun. 17, 2014, received in U.S. Appl. No. 13/084,472, 31 pages.
Final Office Action, dated Jun. 20, 2013, received in U.S. Appl. No. 13/084,472, 20 pages.
Final Office Action, dated May 20, 2014, received in U.S. Appl. No. 13/221,836, 36 pages.
Final Office Action, dated Feb. 14, 2013, received in U.S. Appl. No. 13/221,837, 13 pages.
Final Office Action, dated Jul. 9, 2012, received in U.S. Appl. No. 13/251,121, 21 pages.
Final Office Action, dated Sep. 23, 2013, received in U.S. Appl. No. 13/251,121, 24 pages.
Final Office Action, dated Oct. 2, 2013, received in U.S. Appl. No. 13/251,146, 20 pages.
Final Office Action, dated Jun. 20, 2012, received in U.S. Appl. No. 13/251,146, 14 pages.
Final Office Action, dated Dec. 11, 2013, received in U.S. Appl. No. 13/251,150, 44 pages.
Final Office Action, dated Oct. 18, 2013, received in U.S. Appl. No. 13/251,152, 29 pages.
Final Office Action, dated Jun. 20, 2012, received in U.S. Appl. No. 13/251,152, 24 pages.
Decision to Grant, dated Mar. 22, 2011, received in Chinese Patent Application No. 200910118596.4, 3 pages.
Apple Inc. v. HTC Corporation Intervention of the Infringer according to Art. 105 EPC, Dec. 12, 2011, 24 pages.
Apple vs HTC, Reference to Complaint, Letter from Powell Gilbert, Apr. 5, 2012, 12 pages.
International Preliminary Report on Patentability, dated Jul. 7, 2009, received in International Patent Application No. PCT/US2008/000058, 5 pages.
International Preliminary Report on Patentability, dated Jul. 7, 2009, received in International Patent Application No. PCT/US2008/000060, which corresponds with U.S. Appl. No. 11/620,727, 7 pages.
International Preliminary Report on Patentability, dated Jul. 7, 2009, received in International Patent Application No. PCT/US2008/000069, which corresponds with U.S. Appl. No. 11/620,715, 8 pages.
International Preliminary Report on Patentability, dated Jul. 7, 2009, received in International Patent Application No. PCT/US2008/000103, 9 pages.
International Preliminary Report on Patentability, dated Sep. 16, 2010, received in International Patent Application No. PCT/US2009/035856, which corresponds with U.S. Appl. No. 12/042,067, 6 pages.
International Preliminary Report on Patentability, dated Sep. 7, 2010, received in International Patent Application No. PCT/US2009/035858, which corresponds with U.S. Appl. No. 12/042,237, 6 pages.
International Preliminary Report on Patentability, dated Sep. 16, 2010, received in International Patent Application No. PCT/US2009/035874, which corresponds with U.S. Appl. No. 12/042,299, 7 pages.
International Preliminary Report on Patentability, dated Dec. 14, 2012, received in International Patent Application No. PCT/US2011/039583, which corresponds with U.S. Appl. No. 12/892,848, 7 pages.
International Preliminary Report on Patentability, dated Jun. 25, 2013, received in International Patent Application No. PCT/US2011/065859, which corresponds with U.S. Appl. No. 13/077,925, 15 pages.
International Search Report, dated May 31, 2005, received in International Patent Application No. PCT/US2005/000089, 7 pages.
International Search Report, dated Jul. 31, 2008, received in International Patent Application No. PCT/US2008/000058, 7 pages.
International Search Report and Written Opinion, dated May 2, 2008, received in International Patent Application No. PCT/US2008/000069, which corresponds with U.S. Appl. No. 11/620,715, 12 pages.
International Search Report and Written Opinion, dated Jun. 4, 2008, received in International Patent Application No. PCT/US2008/000089, which corresponds with U.S. Appl. No. 11/620,717, 10 pages.
International Search Report, dated Mar. 6, 2008, received in International Patent Application No. PCT/US2008/000103, 11 pages.
International Search Report and Written Opinion, dated Apr. 16, 2009, received in International Patent Application No. PCT/US2009/034772, which corresponds with U.S. Appl. No. 12/042,318, 9 pages.
International Search Report and Written Opinion, dated Jul. 3, 2009, received in International Patent Application No. PCT/US2009/035856, which corresponds with U.S. Appl. No. 12/042,067, 10 pages.
International Search Report and Written Opinion, dated Jul. 3, 2009, received in International Patent Application No. PCT/US2009/035858, which corresponds with U.S. Appl. No. 12/042,237, 10 pages.
International Search Report and Written Opinion, dated Nov. 11, 2009, received in International Patent Application No. PCT/US2009/035874, which corresponds with U.S. Appl. No. 12/042,299, 10 pages.
International Search Report and Written Opinion, dated Oct. 5, 2010, received in International Patent Application No. PCT/US2010/027118, which corresponds with U.S. Appl. No. 12/566,660, 15 pages.
International Search Report and Written Opinion, dated May 20, 2011, received in International Patent Application No. PCT/US2011/022516, which corresponds with U.S. Appl. No. 12/789,695, 13 pages.
International Search Report and Written Opinion, dated Dec. 13, 2011, received in International Patent Application No. PCT/US11/039583, which corresponds with U.S. Appl. No. 12/892,848, 10 pages.
International Search Report and Written Opinion, dated Jun. 1, 2012, received in International Patent Application No. PCT/US2011/065859, which corresponds with U.S. Appl. No. 13/077,925, 21 pages.
Invitation to Pay Additional Fees, PCT Application PCT/US2008/050292, dated Jul. 18, 2008, 4 pages.
Invitation to Pay Additional Fees, PCT Application PCT/US2010/027118, dated Jul. 13, 2010, 5 pages.
Invitation to Pay Additional Fees, PCT Application PCT/US2011/065859, dated Mar. 12, 2012, 5 pages.
Notice of Acceptance, dated Jul. 3, 2013, received in Australian Patent Application No. 2011205170, which corresponds with U.S. Appl. No. 12/042,318, 2 pages.
Notice of Acceptance, dated Nov. 8, 2012, received in Australian Patent Application No. 2011265335, which corresponds with U.S. Appl. No. 12/042,318, 3 pages.
Office Action, dated Jan. 30, 2012, received in Canadian Patent Application No. 2,658,177, which corresponds with U.S. Appl. No. 11/956,969, 1 page.
Notice of Allowance, dated Apr. 10, 2014, received in Canadian Patent Application No. 2,817,648, which corresponds with U.S. Appl. No. 12/566,660, 1 page.
Notice of Allowance, dated May 29, 2013, received in Korean Patent Application No. 2011-7024288, which corresponds with U.S. Appl. No. 12/566,660, 2 pages.
Notice of Allowance, dated Mar. 30, 2015, received in Korean Patent Application No. 2012-7022239, which corresponds with U.S. Appl. No. 12/789,695, 2 pages. (KR version only).
Notice of Allowance, dated Mar. 6, 2012, received in U.S. Appl. No. 12/042,237, 8 pages.
Notice of Allowance, dated Dec. 16, 2013, received in U.S. Appl. No. 12/042,318, 30 pages.
Office Action, dated Sep. 19, 2012, received in U.S. Appl. No. 12/270,812, 22 pages.
Notice of Allowance, dated May 24, 2012, received in U.S. Appl. No. 12/566,660, 9 pages.
Office Action, dated Dec. 12, 2012, received in U.S. Appl. No. 12/869,182, 5 pages.
Office Action, dated Feb. 23, 2012, received in U.S. Appl. No. 12/869,182, 5 pages.
Notice of Allowance, dated May 15, 2013, received in U.S. Appl. No. 12/892,848, 10 pages.
Notice of Allowance, dated Jun. 27, 2013, received in U.S. Appl. No. 13/077,925, 10 pages.
Notice of Allowance, dated Dec. 31, 2014, received in U.S. Appl. No. 13/077,931, 8 pages.
Notice of Allowance, dated Dec. 3, 2012, received in U.S. Appl. No. 13/221,830, 6 pages.
Notice of Allowance, dated May 23, 2012, received in U.S. Appl. No. 13/221,830, 7 pages.
Notice of Allowance, dated Nov. 13, 2012, received in U.S. Appl. No. 13/464,800, 8 pages.
Notice of Allowance, dated Jan. 15, 2014, received in U.S. Appl. No. 13/620,390, 10 pages.
Notice of Allowance, dated Jul. 24, 2013, received in U.S. Appl. No. 13/670,378, 9 pages.
Office Action, dated Oct. 22, 2013, received in U.S. Appl. No. 13/867,950, 8 pages.
Notification of Grant, dated Nov. 6, 2013, received in Chinese Patent Application No. 200980000013.6, which corresponds with U.S. Appl. No. 12/042,299, 3 pages.
Summons to Attend Oral Proceedings, dated Oct. 30, 2013, received in European Patent Application No. 11184222.5, which corresponds with U.S. Appl. No. 12/042,299, 4 pages.
Summons to Attend Oral Proceedings, dated Oct. 30, 2013, received in European Patent Application No. 11184223.3, which corresponds with U.S. Appl. No. 12/042,299, 5 pages.
Summons to Attend Oral Proceedings, dated Oct. 30, 2013, received in European Patent Application No. 11184224.1, which corresponds with U.S. Appl. No. 12/042,299, 5 pages.
Pleading notes Mr. B.J. Berghuis van Woortman, Aug. 10-11, 2010, 16 pages.
Pogue, “Windows Vista for Starters: The Missing Manual,” Safari Books Online, Jan. 25, 2007, 18 pages.
Summons to Attend Oral Proceedings, dated Oct. 28, 2011, received in European Patent Application No. 08705751.9, 9 pages.
Zimmerman & Partner, Samsung Electronics GMmbH, Supplement to Notice of Opposition, Apr. 5, 2011, 6 pages.
Samsung, Statement of Defense also Counterclaim (Tablets), Judge in Interlocutory Proceedings of the Court in The Hague, Jul. 20, 2011, 44 pages.
Summons to Oral Proceedings, dated Mar. 7, 2013, received in European Patent Application No. 09700006.1, which corresponds with U.S. Appl. No. 12/042,067, 5 pages.
Withers Rogers, Grounds of Appeal in support of the Notice of Appeal, Aug. 4, 2014, 24 pages.
Summons to oral proceedings, dated Oct. 30, 2013, received in European Patent Application No. 09700007.9, which corresponds with U.S. Appl. No. 12/042,299, 5 pages.
Summons to oral proceedings, dated Mar. 27, 2013, received in European Patent Application No. 09700008.7, which corresponds with U.S. Appl. No. 12/042,299, 4 pages.
Office Action, dated Aug. 9, 2011, received in Australian Patent Application No. 2009200493, which corresponds with U.S. Appl. No. 12/042,318, 2 pages.
Office Action, dated Feb. 25, 2011, received in Australian Patent Application 2009200493, which corresponds with U.S. Appl. No. 12/042,318, 3 pages.
Office Action, dated Oct. 17, 2012, received in Australian Patent Application No. 2010226120, which corresponds with U.S. Appl. No. 12/566,660, 3 pages.
Office Action, dated Dec. 13, 2011, received in Australian Patent Application No. 2011101154, which corresponds with U.S. Appl. No. 12/042,318, 4 pages.
Office Action, dated Dec. 13, 2011, received in Australian Patent Application No. 2011101155, which corresponds with U.S. Appl. No. 12/042,318, 3 pages.
Office Action, dated Dec. 13, 2011, received in Australian Patent Application No. 2011101156, which corresponds with U.S. Appl. No. 12/042,318, 3 pages.
Office Action, dated Dec. 13, 2011, received in Australian Patent Application No. 2011101157, which corresponds with U.S. Appl. No. 12/042,318, 4 pages.
Office Action, dated Feb. 22, 2012, received in Australian Patent Application No. 2011205170, which corresponds with U.S. Appl. No. 12/042,318, 3 pages.
Office Action, dated Jun. 28, 2013, received in Australian Patent Application No. 2011209720, which corresponds with U.S. Appl. No. 12/789,695, 4 pages.
Office Action, dated Sep. 3, 2012, received in Australian Patent Application No. 2011265335, which corresponds with U.S. Appl. No. 12/042,318, 2 pages.
Office Action, dated Dec. 10, 2014, received in Australian Patent Application No. 2011349513, which corresponds with U.S. Appl. No. 13/077,925, 3 pages.
Office Action, dated Jul. 2, 2013, received in Chinese Patent Application No. 200880001827.7, which corresponds with U.S. Appl. No. 11/620,717, 1 page.
Office Action, dated Nov. 11, 2010, received in Chinese Patent Application No. 200880001827.7, which corresponds with U.S. Appl. No. 11/620,717, 2 pages.
Office Action, dated Jan. 29, 2012, received in Chinese Patent Application No. 200880001827.7, which corresponds with U.S. Appl. No. 11/620,717, 5 pages.
Office Action, dated Jun. 6, 2012, received in Chinese Patent Application No. 200880001855.9, which corresponds with U.S. Appl. No. 11/620,715, 3 pages.
Office Action, dated Mar. 7, 2013, received in Chinese Patent Application No. 200880001855.9, which corresponds with U.S. Appl. No. 11/620,715, 1 page.
Office Action, dated Jul. 3, 2013, received in Chinese Patent Application No. 200980000013.6, which corresponds with U.S. Appl. No. 12/042,299, 6 pages.
Office Action, dated Dec. 5, 2012, received in Chinese Patent Application No. 200980000013.6, which corresponds with U.S. Appl. No. 12/042,299, 2 pages.
Office Action, dated Jun. 6, 2012, received in Chinese Patent Application No. 200980000013.6, which corresponds with U.S. Appl. No. 12/042,299, 2 pages.
Office Action, dated Jun. 13, 2012, received in Chinese Patent Application No. 200980000014.0, which corresponds with U.S. Appl. No. 12/042,067, 2 pages.
Office Action, dated Jul. 14, 2011, received in Chinese Patent Application No. 200980000015.5, which corresponds with U.S. Appl. No. 12/042,237, 2 pages.
Office Action, dated Feb. 22, 2012, received in Chinese Patent Application No. 200980000015.5, which corresponds with U.S. Appl. No. 12/042,237, 2 pages.
Office Action, dated Oct. 31, 2013, received in Chinese Patent Application No. 201080020598.0, which corresponds with U.S. Appl. No. 12/566,660, 4 pages.
Office Action, dated Oct. 22, 2012, received in Chinese Patent Application No. 201110063183.8, which corresponds with U.S. Appl. No. 12/789,695, 2 pages.
Office Action, dated Aug. 26, 2013, received in Chinese Patent Application No. 201110063183.8, which corresponds with U.S. Appl. No. 12/789,695, 2 pages.
Office Action, dated Jun. 5, 2014, received in Chinese Patent Application No. 201110148738.9, which corresponds with U.S. Appl. No. 12/042,318, 2 pages.
Office Action, dated Jan. 21, 2013, received in Chinese Patent Application No. 201110148738.9, which corresponds with U.S. Appl. No. 12/042,318, 2 pages.
Office Action, dated Oct. 19, 2012, received in Chinese Patent Application No. 201120580018.5, which corresponds with U.S. Appl. No. 13/077,925, 2 pages.
Office Action, dated Nov. 15, 2014, received in Chinese Patent Application No. 201210128911.3, which corresponds with U.S. Appl. No. 11/620,727, 2 pages.
Office Action, dated Oct. 19, 2010, received in German Patent Application No. 112009000001.0, which corresponds with U.S. Appl. No. 12/042,067, 5 pages.
Office Action, dated Sep. 26, 2012, received in German Patent Application No. 112009000002.9, which corresponds with U.S. Appl. No. 12/042,237, 5 pages.
Summons to Attend Oral Proceedings, dated Apr. 22, 2014, received in European Patent Application No. 12188748.3, which corresponds with U.S. Appl. No. 12/042,067, 3 pages.
Office Action, dated Aug. 10, 2010, received in German Patent Application No. 112009000003.7, which corresponds with U.S. Appl. No. 12/042,299, 3 pages.
Office Action, dated Dec. 19, 2011, received in European Patent Application No. 08705471.4, which corresponds with U.S. Appl. No. 11/620,727, 6 pages.
Office Action, dated Oct. 30, 2012, received in European Patent Application No. 08712946.6, which corresponds with U.S. Appl. No. 11/620,715, 5 pages.
Office Action, dated Nov. 26, 2012, received European Patent Application No. 08712964.9, which corresponds with U.S. Appl. No. 11/620,717, 6 pages.
Office Action, dated Oct. 15, 2010, received in European Patent Application No. 09700006.1, which corresponds with U.S. Appl. No. 12/042,067, 4 pages.
Office Action, dated Nov. 26, 2010, received in European Patent Application No. 09700007.9, which corresponds with U.S. Appl. No. 12/042,299, 5 pages.
Office Action, dated Jun. 19, 2013, received in European Patent Application No. 10712825.8, which corresponds with U.S. Appl. No. 12/566,660, 5 pages.
Office Action, dated Sep. 12, 2012, received in European Patent Application No. 11184222.5, which corresponds with U.S. Appl. No. 12/042,299, 4 pages.
Office Action, dated Sep. 12, 2012, received in European Patent Application No. 11184223.3, which corresponds with U.S. Appl. No. 12/042,299, 4 pages.
Office Action, dated Sep. 12, 2012, received in European Patent Application No. 11184224.1, which corresponds with U.S. Appl. No. 12/042,299, 4 pages.
Office Action, dated May 16, 2014, received in European Patent Application No. 11184409.8, which corresponds with U.S. Appl. No. 12/042,318, 6 pages.
Office Action, dated Aug. 26, 2011, received in Japanese Patent Application No. 2009-080377, which corresponds with U.S. Appl. No. 12/042,318, 2 pages.
Office Action, dated Nov. 8, 2010, received in Japanese Patent Application No. 2009-544996, which corresponds with U.S. Appl. No. 11/956,969, 6 pages.
Office Action, dated Oct. 15, 2012, received in Japanese Patent Application No. 2010-157303, which corresponds with U.S. Appl. No. 11/956,969, 4 pages.
Office Action, dated Oct. 24, 2011, received in Japanese Patent Application No. 2010-502356, which corresponds with U.S. Appl. No. 12/042,067, 2 pages.
Office Action, dated Mar. 4, 2013, received in Japanese Patent Application No. 2010-502357, which corresponds with U.S. Appl. No. 12/042,237, 2 pages.
Office Action, dated Jan. 16, 2012, received in Japanese Patent Application No. 2010-502357, which corresponds with U.S. Appl. No. 12/042,237, 2 pages.
Office Action, dated Sep. 6, 2013, received in Japanese Patent Application No. 2012-088747, which corresponds with U.S. Appl. No. 12/042,299, 4 pages.
Office Action, dated Aug. 11, 2014, received in Japanese Patent Application No. 2012-088747, which corresponds with U.S. Appl. No. 12/042,299, 1 page.
Office Action, dated Jun. 3, 2013, received in Japanese Patent Application No. 2012-500844, which corresponds with U.S. Appl. No. 12/566,660, 5 pages.
Office Action, dated Jun. 25, 2013, received in Korean Patent Application No. 2013-7000337, which corresponds with U.S. Appl. No. 11/956,969, 3 pages.
Office Action, dated Apr. 1, 2009, received in U.S. Appl. No. 11/620,709, 8 pages.
Office Action, dated Aug. 29, 2012, received in U.S. Appl. No. 11/620,715, 15 pages.
Office Action, dated Jul. 8, 2009, received in U.S. Appl. No. 11/620,717, 6 pages.
Office Action, dated Dec. 23, 2008, received in U.S. Appl. No. 11/620,720, 18 pages.
Office Action, dated Apr. 1, 2009, received in U.S. Appl. No. 11/620,723, 8 pages.
Office Action, dated Nov. 4, 2011, received in U.S. Appl. No. 11/620,727, 15 pages.
Office Action, dated Aug. 15, 2012, received in U.S. Appl. No. 11/620,727, 19 pages.
Office Action, dated Mar. 14, 2013, received in U.S. Appl. No. 12/042,067, 15 pages.
Office Action, dated Sep. 14, 2011, received in U.S. Appl. No. 12/042,237, 8 pages.
Office Action, dated Dec. 30, 2010, received in U.S. Appl. No. 12/042,237, 9 pages.
Office Action, dated May 3, 2012, received in U.S. Appl. No. 12/042,299, 9 pages.
Office Action, dated Jan. 4, 2011, received in U.S. Appl. No. 12/042,299, 9 pages.
Office Action, dated Feb. 16, 2011, received in U.S. Appl. No. 12/042,318, 25 pages.
Office Action, dated Oct. 11, 2011, received in U.S. Appl. No. 12/270,805, 27 pages.
Office Action, dated Dec. 9, 2011, received in U.S. Appl. No. 12/566,660, 6 pages.
Office Action, dated Mar. 4, 2013, received in U.S. Appl. No. 12/789,695, 13 pages.
Office Action, dated Oct. 24, 2013, received in U.S. Appl. No. 12/789,695, 14 pages.
Office Action, dated May 22, 2014, received in U.S. Appl. No. 12/892,851, 11 pages.
Allen, “Override the GNU C Library-Painlessly,” http://www.ibm.com/developerworks/linux/library/l-glibc/index.html, Apr. 1, 2002, 4 pages.
Anonymous, “Firegestures Version History: Add-ons for Firefox,” Internet Article, http://addons.mozilla.org/en-US/firefox/addons/version/6366, Oct. 28, 2009, 6 pages.
Anonymous, “Firegestures: Changelog,” Internet Article, http://www.xuldev.org/firegestures/changelong.php, Oct. 27, 2009, 8 pages.
Anonymous, “Firegestures: Firefox Extension,” Internet Article, http://www.xuldev.org/firegesture/, Oct. 27, 2009, 2 pages.
Brown, et al., “Distributed Active Objects,” Fifth International World Wide Web Conference, Paris, France, May 6-10, 1996, 18 pages.
Buxton, “Multi-Touch Systems that I Have Known and Loved,” Jan. 12, 2007, http://www.billbuxton.com/multitouchOverview.html, 25 pages.
Chartier, “Apple Releases iOS 4.3 Beta for Developers,” Macworld.com, www.macworld.com/article/1157114/ios—4—3.html, Jan. 12, 2011, 7 pages.
Flanagan, JavaScript, 5th Ed., O'Reilly Japan, Jan. 31, 2008, 35 pages.
Han, “TED Ideas Worth Spreading,” http://www.ted.com/talks/jeff—han—demos—his—breakthrough—touchscreen.html, Feb. 25, 2006, 1 page.
Holzner, “Built-in JavaScript Objects,” JavaScript Complete, McGraw/Hill, New York, Jun. 1998, 9 pages.
JazzMutant, The Lemur Owner's Manual, 2005 JazzMutant SAS and Cycling '74, //www.jazzmutant.com/support—download.php, Oct. 31, 2005, 108 pages.
JazzMutant, Lemur v1.3 Documentation Addendum, http://www.jazzmutant.com/support—download.php, Mar. 22, 2005, 3 pages.
JazzMutant, “Lemur v1.3 Examples Package: CursorModes.xml,” http://www.jazzmutant.com/support—download.php>, Jan. 31, 2006, 4 pages.
JazzMutant, Lemur v1.3 Examples package: LightStepSeq.xml, http://www.jazzmutant.com/support—download.php, Jan. 31, 2006, 5 pages.
KennyTM, “UIGestureRecognizer,” from iPhone Development Wiki, Oct. 31, 2009, http://iphonedevwiki.net/index.php?title=UIGestureRecognizer&oldid=319http://iphonedevwiki.net/index.php?title=UIGestureRecognizer&action=history, 3 pages.
Masui et al., “Elastic Graphical Interfaces for Precise Data Manipulation,” Software Research Laboratories, Sharp Corporation, Nara, Japan, Apr. 1995, 2 pages.
Matsuda et al., “Phosphorylcholine-endcapped oligomer and block co-oligomer and surface biological reactivity,” Biomaterials, Jun. 24, 2003, 11 pages.
Microsoft, “Microsoft Windows Software Development Kit Update for Windows Vista,” www.microsoft.com/en-us/download/details.aspx?displaylang=en&id=23719, Mar. 22, 2007, 26 pages.
Microsoft, Window Styles—Microsoft Windows SDK—Screenshot, Mar. 22, 2007, 2 pages.
Plaisant et al., “Touchscreen Toggle Design,” Human-Computer Interaction Laboratory, University of Maryland, College Park, MD, May 3-7, 1992, 2 pages.
Rogers, “It's for You! An iPhone Development Primer for the Busy College Professor,” Computer Science and Information Systems, Northwest Missouri State University, Maryville, MO, Oct. 1, 2009, 8 pages.
W3C, “Document Object Model (DOM) Level 2 Events Specifications,” Version 1.0, Nov. 13, 2000, 47 pages.
Wikibooks, “Java Programming/Applets/Event Listeners,” en.wikibooks.org/w/index.php?title=Java—Programming/Applets/Event—Listeners&oldid=849558, May 1, 2007, 6 pages.
YouTube, “A Lemurized Formula,” http://www.youtube.com/watch?v=sHAMyQak-LM, Dec. 15, 2007, 1 page.
Office Action, dated Feb. 19, 2009, received in Australian Patent No. 2008201540, which corresponds with U.S. Appl. No. 11/956,969, 2 pages.
Office Action, dated Apr. 15, 2013, received in Japanese Patent Application No. 2010-157303, which corresponds with U.S. Appl. No. 11/956,969, 4 pages.
Office Action, dated Jul. 1, 2015, received in U.S. Appl. No. 12/789,695, 15 pages.
Patent, dated Oct. 14, 2015, received in European Patent Application No. 11150788.5, which corresponds with U.S. Appl. No. 12/042,318, 1 page.
Certificate of Grant, dated Feb. 1, 2016, received in Taiwanese Patent Application No. 103144867, which corresponds with U.S. Appl. No. 13/077,925, 2 pages.
Notice of Allowance, dated Jul. 27, 2016, received in Chinese Patent Application No. 201310557439.X, which corresponds with U.S. Appl. No. 12/789,695, 3 pages.
Patent, dated Apr. 19, 2017, received in Chinese Patent Application No. 201410299526.4, which corresponds with U.S. Appl. No. 12/566,660, 2 pages.
Patent, dated Apr. 19, 2017, received in European Patent Application No. 11184167.2, which corresponds with U.S. Appl. No. 12/042,318, 1 page.
Office Action, dated Apr. 26, 2017, received in Chinese Patent Application No. 2014100285627, which corresponds with U.S. Appl. No. 12/042,299, 5 pages.
Office Action, dated Apr. 27, 2017, received in Chinese Patent Application No. 201510175905.7, which corresponds with U.S. Appl. No. 12/042,237, 5 pages.
Notice of Allowance, dated May 5, 2017, received in U.S. Appl. No. 13/221,827, 20 pages.
Notice of Allowance, dated May 5, 2017, received in U.S. Appl. No. 15/197,704, 5 pages.
Related Publications (1)
Number Date Country
20140173419 A1 Jun 2014 US
Continuations (1)
Number Date Country
Parent 12042067 Mar 2008 US
Child 14188635 US