Skip to content

Latest commit

 

History

History
966 lines (545 loc) · 24.2 KB

composeAction.rst

File metadata and controls

966 lines (545 loc) · 24.2 KB

composeAction API

The composeAction API is very similar to Firefox's browserAction API, but creates an action button in the message compose window.

Use a composeAction to put a button in the message composition toolbars. In addition to its icon, a composeAction button can also have a tooltip, a badge, and a popup.

.. rst-class:: api-main-section

Manifest file properties

.. api-member::
   :name: [``compose_action``]
   :type: (object, optional)

   .. api-member::
      :name: [``browser_style``]
      :type: (boolean, optional)

      Enable browser styles. See the `MDN documentation on browser styles <https://developer.mozilla.org/docs/Mozilla/Add-ons/WebExtensions/user_interface/Browser_styles>`__ for more information.


   .. api-member::
      :name: [``default_area``]
      :type: (`string`, optional)

      Defines the location the composeAction button will appear. The default location is :value:`maintoolbar`.

      Supported values:

      .. api-member::
         :name: :value:`maintoolbar`

      .. api-member::
         :name: :value:`formattoolbar`


   .. api-member::
      :name: [``default_icon``]
      :type: (:ref:`composeAction.IconPath`, optional)

      The paths to one or more icons for the composeAction button.


   .. api-member::
      :name: [``default_label``]
      :type: (string, optional)
      :annotation: -- [Added in TB 84.0b3, backported to TB 78.6.1]

      The label of the composeAction button, defaults to its title. Can be set to an empty string to not display any label. If the containing toolbar is configured to display text only, the title will be used as fallback.


   .. api-member::
      :name: [``default_popup``]
      :type: (string, optional)

      The html document to be opened as a popup when the user clicks on the composeAction button. Ignored for action buttons with type :value:`menu`.


   .. api-member::
      :name: [``default_title``]
      :type: (string, optional)

      The title of the composeAction button. This shows up in the tooltip and the label. Defaults to the add-on name.


   .. api-member::
      :name: [``theme_icons``]
      :type: (array of :ref:`composeAction.ThemeIcons`, optional)

      Specifies dark and light icons to be used with themes. The :value:`light` icon is used on dark backgrounds and vice versa. **Note:** The default theme uses the :value:`default_icon` for light backgrounds (if specified).


   .. api-member::
      :name: [``type``]
      :type: (`string`, optional)

      Specifies the type of the button. Default type is :value:`button`.

      Supported values:

      .. api-member::
         :name: :value:`button`

      .. api-member::
         :name: :value:`menu`


.. rst-class:: api-permission-info

Note

A manifest entry named compose_action is required to use messenger.composeAction.*.

.. rst-class:: api-main-section

Functions

disable([tabId])

.. api-section-annotation-hack::

Disables the composeAction button for a specific tab (if a tabId is provided), or for all tabs which do not have a custom enable state. Once the enable state of a tab has been updated individually, all further changes to its state have to be done individually as well.

.. api-header::
   :label: Parameters


   .. api-member::
      :name: [``tabId``]
      :type: (integer, optional)

      The id of the tab for which you want to modify the composeAction button.


enable([tabId])

.. api-section-annotation-hack::

Enables the composeAction button for a specific tab (if a tabId is provided), or for all tabs which do not have a custom enable state. Once the enable state of a tab has been updated individually, all further changes to its state have to be done individually as well. By default, a composeAction button is enabled.

.. api-header::
   :label: Parameters


   .. api-member::
      :name: [``tabId``]
      :type: (integer, optional)

      The id of the tab for which you want to modify the composeAction button.


getBadgeBackgroundColor(details)

.. api-section-annotation-hack::

Gets the badge background color of the composeAction button.

.. api-header::
   :label: Parameters


   .. api-member::
      :name: ``details``
      :type: (object)

      .. api-member::
         :name: [``tabId``]
         :type: (integer, optional)

         Specifies for which tab the badge background color should be retrieved. If no tab is specified, the global value is retrieved.


      .. api-member::
         :name: [``windowId``]
         :type: (integer, optional) **Unsupported.**

         Will throw an error if used.



.. api-header::
   :label: Return type (`Promise`_)


   .. api-member::
      :type: :ref:`composeAction.ColorArray`


   .. _Promise: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise

getBadgeText(details)

.. api-section-annotation-hack::

Gets the badge text of the composeAction button.

.. api-header::
   :label: Parameters


   .. api-member::
      :name: ``details``
      :type: (object)

      .. api-member::
         :name: [``tabId``]
         :type: (integer, optional)

         Specifies for which tab the badge text should be retrieved. If no tab is specified, the global value is retrieved.


      .. api-member::
         :name: [``windowId``]
         :type: (integer, optional) **Unsupported.**

         Will throw an error if used.



.. api-header::
   :label: Return type (`Promise`_)


   .. api-member::
      :type: string


   .. _Promise: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise

getBadgeTextColor(details)

.. api-section-annotation-hack:: -- [Added in TB 128]

Gets the text color of the badge.

.. api-header::
   :label: Parameters


   .. api-member::
      :name: ``details``
      :type: (object)

      .. api-member::
         :name: [``tabId``]
         :type: (integer, optional)

         Specifies for which tab the badge text color should be retrieved. If no tab is specified, the global value is retrieved.


      .. api-member::
         :name: [``windowId``]
         :type: (integer, optional) **Unsupported.**

         Will throw an error if used.



.. api-header::
   :label: Return type (`Promise`_)


   .. api-member::
      :type: :ref:`composeAction.ColorArray`


   .. _Promise: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise

getLabel(details)

.. api-section-annotation-hack:: -- [Added in TB 84.0b3, backported to TB 78.6.1]

Gets the label of the composeAction button. Returns null, if no label has been set and the title is used.

.. api-header::
   :label: Parameters


   .. api-member::
      :name: ``details``
      :type: (object)

      .. api-member::
         :name: [``tabId``]
         :type: (integer, optional)

         Specifies for which tab the label should be retrieved. If no tab is specified, the global value is retrieved.


      .. api-member::
         :name: [``windowId``]
         :type: (integer, optional) **Unsupported.**

         Will throw an error if used.



.. api-header::
   :label: Return type (`Promise`_)


   .. api-member::
      :type: string or null


   .. _Promise: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise

getPopup(details)

.. api-section-annotation-hack::

Gets the html document set as the popup for this composeAction button.

.. api-header::
   :label: Parameters


   .. api-member::
      :name: ``details``
      :type: (object)

      .. api-member::
         :name: [``tabId``]
         :type: (integer, optional)

         Specifies for which tab the popup document should be retrieved. If no tab is specified, the global value is retrieved.


      .. api-member::
         :name: [``windowId``]
         :type: (integer, optional) **Unsupported.**

         Will throw an error if used.



.. api-header::
   :label: Return type (`Promise`_)


   .. api-member::
      :type: string


   .. _Promise: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise

getTitle(details)

.. api-section-annotation-hack::

Gets the title of the composeAction button.

.. api-header::
   :label: Parameters


   .. api-member::
      :name: ``details``
      :type: (object)

      .. api-member::
         :name: [``tabId``]
         :type: (integer, optional)

         Specifies for which tab the title should be retrieved. If no tab is specified, the global value is retrieved.


      .. api-member::
         :name: [``windowId``]
         :type: (integer, optional) **Unsupported.**

         Will throw an error if used.



.. api-header::
   :label: Return type (`Promise`_)


   .. api-member::
      :type: string


   .. _Promise: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise

isEnabled(details)

.. api-section-annotation-hack::

Checks whether the composeAction button is enabled.

.. api-header::
   :label: Parameters


   .. api-member::
      :name: ``details``
      :type: (object)

      .. api-member::
         :name: [``tabId``]
         :type: (integer, optional)

         Specifies for which tab the state should be retrieved. If no tab is specified, the global value is retrieved.


      .. api-member::
         :name: [``windowId``]
         :type: (integer, optional) **Unsupported.**

         Will throw an error if used.



.. api-header::
   :label: Return type (`Promise`_)


   .. api-member::
      :type: boolean


   .. _Promise: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise

openPopup([options])

.. api-section-annotation-hack::

Opens the action's popup window in the specified window. Defaults to the current window. Returns false if the popup could not be opened because the action has no popup, is of type menu, is disabled or has been removed from the toolbar.

.. api-header::
   :label: Parameters


   .. api-member::
      :name: [``options``]
      :type: (object, optional)

      An object with information about the popup to open.

      .. api-member::
         :name: [``windowId``]
         :type: (integer, optional)

         Defaults to the current window.



.. api-header::
   :label: Return type (`Promise`_)


   .. api-member::
      :type: boolean


   .. _Promise: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise

setBadgeBackgroundColor(details)

.. api-section-annotation-hack::

Sets the background color for the badge.

.. api-header::
   :label: Parameters


   .. api-member::
      :name: ``details``
      :type: (object)

      .. api-member::
         :name: ``color``
         :type: (string or :ref:`composeAction.ColorArray` or null)

         The color to use as background in the badge. Cleared by setting it to :value:`null`.


      .. api-member::
         :name: [``tabId``]
         :type: (integer, optional)

         Sets the background color for the badge only for the given tab.


      .. api-member::
         :name: [``windowId``]
         :type: (integer, optional) **Unsupported.**

         Will throw an error if used.



setBadgeText(details)

.. api-section-annotation-hack::

Sets the badge text for the composeAction button. The badge is displayed on top of the icon.

.. api-header::
   :label: Parameters


   .. api-member::
      :name: ``details``
      :type: (object)

      .. api-member::
         :name: ``text``
         :type: (string or null)

         Any number of characters can be passed, but only about four can fit in the space. Cleared by setting it to :value:`null` or an empty string.


      .. api-member::
         :name: [``tabId``]
         :type: (integer, optional)

         Sets the badge text only for the given tab.


      .. api-member::
         :name: [``windowId``]
         :type: (integer, optional) **Unsupported.**

         Will throw an error if used.



setBadgeTextColor(details)

.. api-section-annotation-hack:: -- [Added in TB 128]

Sets the text color for the badge.

.. api-header::
   :label: Parameters


   .. api-member::
      :name: ``details``
      :type: (object)

      .. api-member::
         :name: ``color``
         :type: (string or :ref:`composeAction.ColorArray` or null)

         The color to use as text color in the badge. Cleared by setting it to :value:`null`.


      .. api-member::
         :name: [``tabId``]
         :type: (integer, optional)

         Sets the text color for the badge only for the given tab.


      .. api-member::
         :name: [``windowId``]
         :type: (integer, optional) **Unsupported.**

         Will throw an error if used.



setIcon(details)

.. api-section-annotation-hack::

Sets the icon for the composeAction button. Either the path or the imageData property must be specified.

.. api-header::
   :label: Parameters


   .. api-member::
      :name: ``details``
      :type: (object)

      .. api-member::
         :name: [``imageData``]
         :type: (:ref:`composeAction.ImageDataType` or :ref:`composeAction.ImageDataDictionary`, optional)

         The image data for one or more icons for the composeAction button.


      .. api-member::
         :name: [``path``]
         :type: (:ref:`composeAction.IconPath`, optional)

         The paths to one or more icons for the composeAction button.


      .. api-member::
         :name: [``tabId``]
         :type: (integer, optional)

         Sets the icon only for the given tab.


      .. api-member::
         :name: [``windowId``]
         :type: (integer, optional) **Unsupported.**

         Will throw an error if used.



setLabel(details)

.. api-section-annotation-hack:: -- [Added in TB 84.0b3, backported to TB 78.6.1]

Sets the label of the composeAction button. Can be used to set different values for the tooltip (defined by the title) and the label. Additionally, the label can be set to an empty string, not showing any label at all.

.. api-header::
   :label: Parameters


   .. api-member::
      :name: ``details``
      :type: (object)

      .. api-member::
         :name: ``label``
         :type: (string or null)

         A string the composeAction button should use as its label, overriding the defined title. Can be set to an empty string to not display any label at all. If the containing toolbar is configured to display text only, its title will be used. Cleared by setting it to :value:`null`.


      .. api-member::
         :name: [``tabId``]
         :type: (integer, optional)

         Sets the label only for the given tab.


      .. api-member::
         :name: [``windowId``]
         :type: (integer, optional) **Unsupported.**

         Will throw an error if used.



setPopup(details)

.. api-section-annotation-hack::

Sets the html document to be opened as a popup when the user clicks on the composeAction button.

.. api-header::
   :label: Parameters


   .. api-member::
      :name: ``details``
      :type: (object)

      .. api-member::
         :name: ``popup``
         :type: (string or null)

         The html file to show in a popup. Can be set to an empty string to not open a popup. Cleared by setting it to :value:`null` (action will use the popup value defined in the manifest).


      .. api-member::
         :name: [``tabId``]
         :type: (integer, optional)

         Sets the popup only for the given tab.


      .. api-member::
         :name: [``windowId``]
         :type: (integer, optional) **Unsupported.**

         Will throw an error if used.



setTitle(details)

.. api-section-annotation-hack::

Sets the title of the composeAction button. Is used as tooltip and as the label.

.. api-header::
   :label: Parameters


   .. api-member::
      :name: ``details``
      :type: (object)

      .. api-member::
         :name: ``title``
         :type: (string or null)

         A string the composeAction button should display as its label and when moused over. Cleared by setting it to :value:`null` or an empty string (title defined the manifest will be used).


      .. api-member::
         :name: [``tabId``]
         :type: (integer, optional)

         Sets the title only for the given tab.


      .. api-member::
         :name: [``windowId``]
         :type: (integer, optional) **Unsupported.**

         Will throw an error if used.



.. rst-class:: api-main-section

Events

onClicked

.. api-section-annotation-hack::

Fired when a composeAction button is clicked. This event will not fire if the composeAction has a popup. This is a user input event handler. For asynchronous listeners some restrictions apply.

.. api-header::
   :label: Parameters for onClicked.addListener(listener)


   .. api-member::
      :name: ``listener(tab, info)``

      A function that will be called when this event occurs.


.. api-header::
   :label: Parameters passed to the listener function


   .. api-member::
      :name: ``tab``
      :type: (:ref:`tabs.Tab`)
      :annotation: -- [Added in TB 74.0b2]


   .. api-member::
      :name: [``info``]
      :type: (:ref:`composeAction.OnClickData`, optional)
      :annotation: -- [Added in TB 74.0b2]


.. rst-class:: api-main-section

Types

ColorArray

.. api-section-annotation-hack::

An array of four integers in the range [0,255] that make up the RGBA color. For example, opaque red is [255, 0, 0, 255].

.. api-header::
   :label: array of integer

ImageDataDictionary

.. api-section-annotation-hack::

A dictionary object to specify multiple ImageData objects in different sizes, so the icon does not have to be scaled for a device with a different pixel density. Each entry is a name-value pair with value being an ImageData object, and name its size. Example:

.. literalinclude:: includes/ImageDataDictionary.json
  :language: JavaScript

See the MDN documentation about choosing icon sizes for more information on this.

.. api-header::
   :label: object

ImageDataType

.. api-section-annotation-hack::

Pixel data for an image. Must be an ImageData object (for example, from a canvas element).

.. api-header::
   :label: `ImageData <https://developer.mozilla.org/en-US/docs/Web/API/ImageData>`__

OnClickData

.. api-section-annotation-hack:: -- [Added in TB 74.0b2]

Information sent when a composeAction button is clicked.

.. api-header::
   :label: object


   .. api-member::
      :name: ``modifiers``
      :type: (array of `string`)

      An array of keyboard modifiers that were held while the menu item was clicked.

      Supported values:

      .. api-member::
         :name: :value:`Shift`

      .. api-member::
         :name: :value:`Alt`

      .. api-member::
         :name: :value:`Command`

         Only available on macOS.

      .. api-member::
         :name: :value:`Ctrl`

         Not available on macOS.

      .. api-member::
         :name: :value:`MacCtrl`

         Only available on macOS, but of limited use in a click event: Holding down the CTRL key while clicking with the mouse is referred to as a 'CTRL click' under macOS and is interpreted as a right mouse click. In a default profile  the :value:`dom.event.treat_ctrl_click_as_right_click.disabled` preference is not enabled and the :value:`MacCtrl` modifier key is not forwarded to the API.


   .. api-member::
      :name: [``button``]
      :type: (integer, optional)

      An integer value of button by which menu item was clicked.


.. rst-class:: api-main-section

External Types

The following types are not defined by this API, but by the underlying Mozilla WebExtension code base. They are included here, because there is no other public documentation available.

IconPath

.. api-section-annotation-hack::

Either a string to specify a relative path of a single icon to be used for all sizes, or a dictionary object to specify paths for multiple icons in different sizes, so the icon does not have to be scaled for a device with a different pixel density. Each entry is a name-value pair with value being a relative path to an icon file, and name its size. Example:

.. literalinclude:: includes/IconPath.json
  :language: JSON

See the MDN documentation about choosing icon sizes for more information on this.

ThemeIcons

.. api-section-annotation-hack::

Define a set of icons for themes depending on whether Thunderbird detects that the theme uses dark or light text. All provided URLs must be relative to the manifest.json file.

.. api-header::
   :label: object


   .. api-member::
      :name: ``dark``
      :type: (string)

      A URL pointing to an icon. This icon displays when a theme using dark text is active (such as the Light theme, and the Default theme if no ``default_icon`` is specified).


   .. api-member::
      :name: ``light``
      :type: (string)

      A URL pointing to an icon. This icon displays when a theme using light text is active (such as the Dark theme).


   .. api-member::
      :name: ``size``
      :type: (integer)

      The size of the two icons in pixels, for example :value:`16` or :value:`32`.