view doc/api-molko-window.rst @ 195:02285657294c

examples: fix drawable animation delay
author David Demelier <markand@malikania.fr>
date Sat, 07 Nov 2020 21:08:47 +0100
parents 633a25df450e
children
line wrap: on
line source

.. toctree::
.. _api-molko-window:

Molko.Window
============

This module is dedicated to window management.

Constants
---------

.. js:data:: Molko.Window.Cursor

This is an enumeration of available cursor which you may choose from:

``ARROW``
  Default arrow.

``EDIT``
  Edit text cusror (like I-Beam)

``WAIT``
  Busy cursor, not available on all platforms.

``CROSS_HAIR``
  Cross.

``SIZE``
  Move and resizing cursor.

``NO``
  Action forbidden.

``HAND``
  Hand, mostly for moving.

Constructors
------------

.. js:function:: Molko.Window(title, width, height)

   :param string title: Title for the window.
   :param int width: Desired window width.
   :param int height: Desired window height.

Open a window or raise an error if any. This function MUST be called as a
constructor, not doing so will also raise an error.

Properties
----------

.. js:data:: Molko.Window.cursor

(Write-only) Change the global window cursor to a system predefined one.