User:Clarkbw/STEEL/0.1/STEEL:Application

From MozillaWiki
< User:Clarkbw‎ | STEEL‎ | 0.1
Jump to: navigation, search

Method Overview

AString search([array] in steelISearchTerms terms, in steelIListener listener)
steelISearchTerms getNewSearchTerms()

Attributes

Attribute Type Description Examples
accounts readonly attribute steelIAccounts List of account objects (steelIAccount) like email and newsgroups. List all Accounts
addressBooks readonly attribute steelIAddressBooks List of address books like Local, LDAP, and others. List all Address books
preferences readonly attribute steelIPreferences Provides access to global Thunderbird preferences, for extension only preferences use the extension object below. List all Preferences
extensions readonly attribute steelIExtensions List of extensions known to Thunderbird, provides access to all extension information and their preferences. List all Extensions
console readonly attribute steelIConsole Object for accessing the thunderbird error / log console. Console Logging
events readonly attribute steelIEvents Event object for adding and removing listeners to the Application level

Methods

search()

This method is not currently implemented

Returns all messages matching the search terms to the provided listenerb

Parameters
terms
Array of search terms
listener
Listener object which is required to implement the function handleEvent(event)
Return value

none

getNewSearchTerms()

Provides a new steelISearchTerms object

Parameters

none

Return Value
steelISearchTerms
Returns a new steelISearchTerms object for use in the search() method

Events

  • messageShow — triggers when a message is shown in the message pane

See Also