docs: Improve wl_pointer protocol docs
authorMatthias Clasen <mclasen@redhat.com>
Sat, 30 Mar 2013 05:11:41 +0000 (01:11 -0400)
committerKristian Høgsberg <krh@bitplanet.net>
Mon, 1 Apr 2013 23:56:41 +0000 (19:56 -0400)
Some descriptions were missing here.

protocol/wayland.xml

index 442862d..87e3d5f 100644 (file)
   </interface>
 
   <interface name="wl_pointer" version="1">
+    <description summary="pointer input device">
+      The wl_pointer interface represents one or more input devices,
+      such as mice, which control the pointer location and pointer_focus
+      of a seat.
+
+      The wl_pointer interface generates motion, enter and leave
+      events for the surfaces that the pointer is located over,
+      and button and axis events for button presses, button releases
+      and scrolling.
+    </description>
+
     <request name="set_cursor">
       <description summary="set the pointer surface">
        Set the pointer surface, i.e., the surface that contains the
        undefined, and the wl_surface is unmapped.
       </description>
 
-      <arg name="serial" type="uint"/>
+      <arg name="serial" type="uint" summary="serial of the enter event"/>
       <arg name="surface" type="object" interface="wl_surface" allow-null="true"/>
       <arg name="hotspot_x" type="int"/>
       <arg name="hotspot_y" type="int"/>
     <event name="enter">
       <description summary="enter event">
        Notification that this seat's pointer is focused on a certain
-       surface. When an seat's focus enters a surface, the pointer image
+       surface.
+
+       When an seat's focus enters a surface, the pointer image
        is undefined and a client should respond to this event by setting
-       an appropriate pointer image.
+       an appropriate pointer image with the set_cursor request.
       </description>
 
       <arg name="serial" type="uint"/>
 
     <event name="leave">
       <description summary="leave event">
+       Notification that this seat's pointer is no longer focused on
+       a certain surface.
+
+       The leave notification is sent before the enter notification
+       for the new focus.
       </description>
       <arg name="serial" type="uint"/>
       <arg name="surface" type="object" interface="wl_surface"/>
 
     <event name="motion">
       <description summary="pointer motion event">
-       Notification of pointer location change. The arguments surface_[xy]
-       are the location relative to the focused surface.
+       Notification of pointer location change. The arguments
+       surface_x and surface_y are the location relative to the
+       focused surface.
       </description>
 
       <arg name="time" type="uint"/>
         Describes the physical state of a button which provoked the button
        event.
       </description>
-      <entry name="released" value="0" summary="button is not pressed"/>
-      <entry name="pressed" value="1" summary="button is pressed"/>
+      <entry name="released" value="0" summary="The button is not pressed"/>
+      <entry name="pressed" value="1" summary="The button is pressed"/>
     </enum>
 
     <event name="button">
       <description summary="pointer button event">
-       Mouse button click and release notifications.  The location
-       of the click is given by the last motion or pointer_focus event.
+       Mouse button click and release notifications.
+
+       The location of the click is given by the last motion or
+       enter event.
       </description>
 
       <arg name="serial" type="uint"/>
     </event>
 
     <enum name="axis">
-      <description summary="axis types"/>
+      <description summary="axis types">
+       Describes the axis types of scroll events.
+      </description>
       <entry name="vertical_scroll" value="0"/>
       <entry name="horizontal_scroll" value="1"/>
     </enum>