create_notify Event

The fields that can be unified in create_notify events are:

  1. type(T) unifies T with create_notify.
  2. serial(S) unifies S with the serial number of the last request processed by the server.
  3. send_event(B) unifies B, a boolean value, with one of

    true
    If the event was sent by another client.
    false
    If the event was sent by the server.
  4. display(D) unifies D with the ProXL Display the event was read from.
  5. parent(P) unifies P with the parent ProXL Window of the created window.
  6. window(W) unifies W with the ProXL Window just created.
  7. x(X) unifies X with the x coordinate of the created window, relative to its parent.
  8. y(Y) unifies Y with the y coordinate of the created window, relative to its parent.
  9. position(X, Y) unifies X and Y with the x and y coordinates, respectively, of the created window, relative to its parent.
  10. width(W) unifies W with the width in pixels of the window.
  11. height(H) unifies H with the height in pixels of the window.
  12. size(W, H) unifies W and H with the width and height in pixels, respectively, of the window.
  13. border_width(W) unifies W with the width of the window's border in pixels.
  14. override_redirect(B) unifies B with the boolean value of the override_redirect attribute of the window, one of:

    true
    If the client wants the window to be exempt from interception of the request by the Window Manager.
    false
    If the Window Manager is allowed to modify the request.