2010-03-18 21:49:39 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2010-03-18 21:49:39 +03:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This interface is implemented by top level accessible object in hierarchy and
|
|
|
|
* provides information about application.
|
|
|
|
*/
|
2016-07-26 16:55:00 +03:00
|
|
|
[scriptable, builtinclass, uuid(79251626-387c-4531-89f3-680d31d6cf05)]
|
2010-03-18 21:49:39 +03:00
|
|
|
interface nsIAccessibleApplication : nsISupports
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Returns the application name.
|
|
|
|
*/
|
2018-09-06 11:02:43 +03:00
|
|
|
readonly attribute AString appName;
|
2010-03-18 21:49:39 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the application version.
|
|
|
|
*/
|
2018-09-06 11:02:43 +03:00
|
|
|
readonly attribute AString appVersion;
|
2010-03-18 21:49:39 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the platform name.
|
|
|
|
*/
|
2018-09-06 11:02:43 +03:00
|
|
|
readonly attribute AString platformName;
|
2010-03-18 21:49:39 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the platform version.
|
|
|
|
*/
|
2018-09-06 11:02:43 +03:00
|
|
|
readonly attribute AString platformVersion;
|
2010-03-18 21:49:39 +03:00
|
|
|
};
|