mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-10-31 15:05:46 +00:00
39 lines
1.1 KiB
Plaintext
39 lines
1.1 KiB
Plaintext
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* 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/. */
|
|
|
|
#include "nsISupports.idl"
|
|
#include "nsIClipboard.idl"
|
|
|
|
%{ C++
|
|
#include "nsString.h" // needed for AString -> nsAString, unfortunately
|
|
%}
|
|
|
|
interface nsIDOMDocument;
|
|
|
|
/**
|
|
* helper service for common uses of nsIClipboard.
|
|
*/
|
|
|
|
[scriptable, uuid(438307fd-0c68-4d79-922a-f6cc9550cd02)]
|
|
interface nsIClipboardHelper : nsISupports
|
|
{
|
|
/**
|
|
* copy string to given clipboard
|
|
*
|
|
* @param aString, the string to copy to the clipboard
|
|
* @param aClipboardID, the ID of the clipboard to copy to
|
|
* (eg. kSelectionClipboard -- see nsIClipboard.idl)
|
|
*/
|
|
void copyStringToClipboard(in AString aString, in long aClipboardID);
|
|
|
|
/**
|
|
* copy string to (default) clipboard
|
|
*
|
|
* @param aString, the string to copy to the clipboard
|
|
*/
|
|
void copyString(in AString aString);
|
|
};
|