mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-27 19:07:31 +09:00
Issue #1258 - Part 1: Import mailnews, ldap, and mork from comm-esr52.9.1
This commit is contained in:
parent
23e0d82436
commit
e400f4130a
1564 changed files with 510348 additions and 0 deletions
40
mailnews/base/public/nsIMsgPrintEngine.idl
Normal file
40
mailnews/base/public/nsIMsgPrintEngine.idl
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
/* -*- Mode: C++; tab-width: 4; 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 "nsrootidl.idl"
|
||||
#include "nsIMsgStatusFeedback.idl"
|
||||
|
||||
interface mozIDOMWindowProxy;
|
||||
interface nsIPrintSettings;
|
||||
interface nsIObserver;
|
||||
|
||||
[scriptable, uuid(9bdd0812-dd48-4f04-87a9-74dcfc3abadc)]
|
||||
interface nsIMsgPrintEngine : nsISupports {
|
||||
/**
|
||||
* Print/PrintPreview Msg Type
|
||||
*/
|
||||
const short MNAB_START = 0;
|
||||
const short MNAB_PRINT_MSG = 0;
|
||||
const short MNAB_PRINTPREVIEW_MSG = 1;
|
||||
const short MNAB_PRINT_AB_CARD = 2;
|
||||
const short MNAB_PRINTPREVIEW_AB_CARD = 3;
|
||||
const short MNAB_PRINT_ADDRBOOK = 4;
|
||||
const short MNAB_PRINTPREVIEW_ADDRBOOK = 5;
|
||||
const short MNAB_END = 6;
|
||||
|
||||
void setWindow(in mozIDOMWindowProxy ptr);
|
||||
void setParentWindow(in mozIDOMWindowProxy ptr);
|
||||
void showWindow(in boolean aShow);
|
||||
void setStatusFeedback(in nsIMsgStatusFeedback feedback);
|
||||
void setPrintURICount(in int32_t aCount);
|
||||
void addPrintURI(in wstring aURI);
|
||||
void startPrintOperation(in nsIPrintSettings aPS);
|
||||
void setStartupPPObserver(in nsIObserver startupPPObs);
|
||||
void setMsgType(in long aMsgType);
|
||||
|
||||
attribute boolean doPrintPreview;
|
||||
|
||||
};
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue