Desktop Actions
==========================
Desktop entries can contain additional actions. Take for example this:

.. code:: ini

    [Desktop Entry]
    Type=Application
    Name=Test
    Actions=MyAction;

    [Desktop Action MyAction]
    Name=Example Action

Each instance of :class:`~desktop_entry_lib.__init__.DesktopEntry` has a Actions attribute to support this. It is a dict. The Key is the internal name (in this case :code:`MyAction`).
The value is a instance of :class:`~desktop_entry_lib.__init__.DesktopAction`, which can basically be used the same way as :class:`~desktop_entry_lib.__init__.DesktopEntry`.
