Skip to content

Commit

Permalink
initial checkin of idl files for header files that are already used (…
Browse files Browse the repository at this point in the history
…but not generated)

in the build.  These idl files are NOT hooked up to the build yet.
  • Loading branch information
buster%netscape.com committed Dec 15, 1999
1 parent 911b963 commit dbfb2d7
Show file tree
Hide file tree
Showing 2 changed files with 95 additions and 0 deletions.
46 changes: 46 additions & 0 deletions docshell/base/nsIContentViewerEdit.idl
@@ -0,0 +1,46 @@
/* -*- Mode: IDL; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Mozilla Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code is the Mozilla browser.
*
* The Initial Developer of the Original Code is Netscape
* Communications, Inc. Portions created by Netscape are
* Copyright (C) 1999, Mozilla. All Rights Reserved.
*
* Contributor(s):
* Travis Bogard <travis@netscape.com>
*/

#include "nsISupports.idl"

/**
* The nsIDocShellFile
*/

[scriptable, uuid(42d5215c-9bc7-11d3-bccc-0060b0fc76bd)]
interface nsIContentViewerEdit : nsISupports
{
void Search();
readonly attribute boolean searchable;

void ClearSelection();
void SelectAll();

void CopySelection();
readonly attribute boolean copyable;

void CutSelection();
readonly attribute boolean cutable;

void Paste();
readonly attribute boolean pasteable;
};
49 changes: 49 additions & 0 deletions docshell/base/nsIContentViewerFile.idl
@@ -0,0 +1,49 @@
/* -*- Mode: IDL; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Mozilla Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code is the Mozilla browser.
*
* The Initial Developer of the Original Code is Netscape
* Communications, Inc. Portions created by Netscape are
* Copyright (C) 1999, Mozilla. All Rights Reserved.
*
* Contributor(s):
* Travis Bogard <travis@netscape.com>
*/

#include "nsISupports.idl"


%{ C++
#include "nsIDeviceContext.h"
#include "nsIWebShell.h"
%}

[ptr] native nsIDeviceContext(nsIDeviceContext);
[ptr] native nsIWebShell(nsIWebShell);

/**
* The nsIDocShellFile
*/

[scriptable, uuid(6317f32c-9bc7-11d3-bccc-0060b0fc76bd)]
interface nsIContentViewerFile : nsISupports
{
void Save();
readonly attribute boolean saveable;

void Print();
readonly attribute boolean printable;

[noscript] void PrintContent(in nsIWebShell parent, in nsIDeviceContext DContext);
};

0 comments on commit dbfb2d7

Please sign in to comment.