|
Syntax
- string getValue
(
- com::sun::star::plugin::XPlugin xPlugin,
- com::sun::star::plugin::PluginVariable aVariable )
- raises ( com::sun::star::plugin::PluginException );
Description
requests global application parameters like display connection on UNIX systems
Syntax
- void getURLNotify
(
- com::sun::star::plugin::XPlugin plugin,
- string url,
- string target,
- com::sun::star::lang::XEventListener listener )
- raises ( com::sun::star::plugin::PluginException );
Description
requests a notification of completion of the operation on an URL.
Syntax
- void getURL
(
- com::sun::star::plugin::XPlugin plugin,
- string url,
- string target )
- raises ( com::sun::star::plugin::PluginException );
Description
requests an URL to be loaded into the frame target.
Syntax
- void postURLNotify
(
- com::sun::star::plugin::XPlugin plugin,
- string url,
- string target,
- sequence< byte > buf,
- boolean file,
- com::sun::star::lang::XEventListener listener )
- raises ( com::sun::star::plugin::PluginException );
Description
posts data from a buffer or file to an URL and receives a
notification upon completion.
Syntax
- void postURL
(
- com::sun::star::plugin::XPlugin plugin,
- string url,
- string target,
- sequence< byte > buf,
- boolean file )
- raises ( com::sun::star::plugin::PluginException );
Description
posts data from a buffer or file to an URL.
Syntax
- void newStream
(
- com::sun::star::plugin::XPlugin plugin,
- string mimetype,
- string target,
- com::sun::star::io::XActiveDataSource aSource )
- raises ( com::sun::star::plugin::PluginException );
Description
requests a new stream that is created by the plugin and consumed
by the browser.
Syntax
- void displayStatusText
(
- com::sun::star::plugin::XPlugin plugin,
- string message )
- raises ( com::sun::star::plugin::PluginException );
Description
displays a message in the browser status line.
Syntax
- string getUserAgent
(
- com::sun::star::plugin::XPlugin plugin )
- raises ( com::sun::star::plugin::PluginException );
Description
returns an application dependent identification string. This is
the same string that is transmitted by a browser to an http server.
|