mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
128 lines
5.9 KiB
Plaintext
128 lines
5.9 KiB
Plaintext
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
|
|
*
|
|
* The contents of this file are subject to the Netscape 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/NPL/
|
|
*
|
|
* 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 mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is
|
|
* Netscape Communications Corporation.
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Lorenzo Colitti <lorenzo@colitti.com>
|
|
*
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
* use your version of this file under the terms of the NPL, indicate your
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
* the provisions above, a recipient may use your version of this file under
|
|
* the terms of any one of the NPL, the GPL or the LGPL.
|
|
*
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
#include "nsISupports.idl"
|
|
#include "nsIMsgFolder.idl"
|
|
|
|
interface nsIMsgWindow;
|
|
interface nsIImapIncomingServer;
|
|
interface nsIMsgParseMailMsgState;
|
|
|
|
// this is a simple interface which allows the imap folder to update some values
|
|
// that the folder props js code will use to update the sharing and quota tabs in the folder props.
|
|
|
|
[scriptable, uuid(239472a2-6e8f-46f0-9507-887998da49e5)]
|
|
interface nsIMsgImapFolderProps : nsISupports {
|
|
|
|
void setFolderType(in wstring folderType);
|
|
void setFolderTypeDescription(in wstring folderTypeDescription);
|
|
void setFolderPermissions(in wstring permissions);
|
|
void serverDoesntSupportACL();
|
|
|
|
/**
|
|
* Toggles the display of quota information in the Quota tab of the folder properties.
|
|
* If on, the quota root, usage, and percentage used are displayed.
|
|
* If off, a status message is displayed. The status message can be set with setQuotaStatus().
|
|
* @param showData If true, display the quota root, usage information and usage percentage bar.
|
|
* If false, display the status message.
|
|
*/
|
|
void showQuotaData(in boolean showData);
|
|
|
|
/**
|
|
* Sets the status string displayed in the Quota tab of the folder properties if quota
|
|
* information is not visible.
|
|
*/
|
|
void setQuotaStatus(in AString folderQuotaStatus);
|
|
|
|
/**
|
|
* Updates the quota data displayed in the Quota tab.
|
|
*/
|
|
void setQuotaData(in ACString quotaroot, in unsigned long usedKB, in unsigned long maxKB);
|
|
};
|
|
|
|
|
|
[scriptable, uuid(FBFEBE79-C1DD-11d2-8A40-0060B0FC04D2)]
|
|
interface nsIMsgImapMailFolder : nsISupports {
|
|
void removeSubFolder(in nsIMsgFolder folder);
|
|
void createClientSubfolderInfo(in string folderName, in wchar hierarchyDelimiter, in long flags, in boolean suppressNotification);
|
|
void list();
|
|
void renameLocal(in string newname, in nsIMsgFolder parent);
|
|
void prepareToRename();
|
|
void performExpand(in nsIMsgWindow aMsgWindow);
|
|
void recursiveCloseActiveConnections(in nsIImapIncomingServer aImapServer);
|
|
void renameClient(in nsIMsgWindow msgWindow, in nsIMsgFolder msgFolder, in string oldName, in string newName);
|
|
|
|
// these are used for offline synchronization
|
|
void storeImapFlags(in long flags, in boolean addFlags, [array, size_is (numKeys)] in nsMsgKey keysToFlag, in unsigned long numKeys);
|
|
void setImapFlags(in string uids, in long flags, out nsIURI url);
|
|
void replayOfflineMoveCopy([array, size_is (numKeys)] in nsMsgKey keys, in unsigned long numKeys, in boolean isMove, in nsIMsgFolder aDstFolder,
|
|
in nsIUrlListener aUrlListener, in nsIMsgWindow aWindow);
|
|
void playbackOfflineFolderCreate(in wstring folderName, in nsIMsgWindow aWindow, out nsIURI url);
|
|
void liteSelect(in nsIUrlListener aUrlListener);
|
|
void fillInFolderProps(in nsIMsgImapFolderProps aFolderProps);
|
|
void resetNamespaceReferences();
|
|
void folderPrivileges(in nsIMsgWindow aWindow);
|
|
nsIMsgImapMailFolder findOnlineSubFolder(in string onlineName);
|
|
void addFolderRights(in string userName, in string rights);
|
|
void refreshFolderRights();
|
|
|
|
void updateStatus(in nsIUrlListener aListener, in nsIMsgWindow aMsgWindow);
|
|
// this is used to issue an arbitrary imap command on the passed in msgs.
|
|
// It assumes the command needs to be run in the selected state.
|
|
nsIURI issueCommandOnMsgs(in string command, in string uids, in nsIMsgWindow aWindow);
|
|
nsIURI fetchCustomMsgAttribute(in string msgAttribute, in string uids, in nsIMsgWindow aWindow);
|
|
nsIURI storeCustomKeywords(in nsIMsgWindow aMsgWindow,
|
|
in string aFlagsToAdd,
|
|
in string aFlagsToSubtract,
|
|
[array, size_is (aNumKeys)] in nsMsgKey aKeysToStore,
|
|
in unsigned long aNumKeys);
|
|
|
|
attribute boolean verifiedAsOnlineFolder;
|
|
attribute boolean explicitlyVerify;
|
|
attribute wchar hierarchyDelimiter;
|
|
attribute long boxFlags;
|
|
attribute string onlineName;
|
|
attribute boolean isNamespace;
|
|
readonly attribute boolean canIOpenThisFolder;
|
|
attribute string adminUrl;
|
|
readonly attribute boolean hasAdminUrl;
|
|
attribute boolean performingBiff;
|
|
readonly attribute nsIMsgParseMailMsgState hdrParser;
|
|
};
|
|
|