Mini Shell
3
���Xb � @ s6 d dl mZ d dlT d dlT dgZG dd� de�ZdS )� )�Atspi)�*�Actionc @ sX e Zd ZdZdd� Zdd� Zdd� Zdd � Zd
d� Zdd
� Z dd� Z
dZee
ed�Z
dS )r a%
An interface through which a user-actionable user interface component
can be manipulated. Components which react to mouse or keyboard
input from the user, (with the exception of pure text entry fields
with no other function), should implement this interface. Typical
actions include "click", "press", "release" (for instance for
buttons), "menu" (for objects which have context menus invokable
from mouse or keyboard), "open" for icons representing files
folders, and others.
c C s t jj| j�S )z�
getActions:
Retrieves all the actions at once.
@return : an array of an array of strings in the form
[[name, description, keybinding], ...]
)r r Zget_actions�obj)�self� r �/usr/lib/python3.6/action.py�
getActions&