add new IDL wrapper around searchterms

This commit is contained in:
alecf%netscape.com 2000-05-07 00:39:27 +00:00
Родитель d04e97c083
Коммит e072daebd3
1 изменённых файлов: 74 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,74 @@
/* -*- Mode: IDL; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
* 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 Communicator client code.
*
* The Initial Developer of the Original Code is Netscape Communications
* Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
* Alec Flett <alecf@netscape.com>
*/
#include "nsISupports.idl"
#include "nsMsgSearchCore.idl"
#include "nsIMsgSearchValue.idl"
interface nsIMsgDBHdr;
interface nsIMsgDatabase;
interface nsIMsgSearchScopeTerm;
native nsCStringRef(nsCString&);
[script, uuid(678dc5b8-56f2-40ec-8fd6-0742e8cc6269)]
interface nsIMsgSearchTerm : nsISupports {
readonly attribute nsMsgSearchAttribValue attrib;
readonly attribute nsMsgSearchOpValue op;
readonly attribute nsIMsgSearchValue value;
readonly attribute boolean booleanAnd;
readonly attribute string arbitraryHeader;
boolean matchRfc822String(in string aString, in string charset);
boolean matchString(in string aString, in string charset,
in boolean isBody);
boolean matchDate(in PRTime aTime);
boolean matchStatus(in unsigned long aStatus);
boolean matchPriority(in nsMsgPriorityValue priority);
boolean matchAge(in PRTime days);
boolean matchSize(in unsigned long size);
boolean matchBody(in nsIMsgSearchScopeTerm scopeTerm,
in unsigned long offset,
in unsigned long length,
in string charset,
in nsIMsgDBHdr msg,
in nsIMsgDatabase db);
boolean matchArbitraryHeader(in nsIMsgSearchScopeTerm scopeTerm,
in unsigned long offset,
in unsigned long length,
in string charset,
in nsIMsgDBHdr msg,
in nsIMsgDatabase db,
[array, size_is(headerLength)]
in string headers,
in unsigned long headerLength,
in boolean forFilters);
readonly attribute boolean matchAllBeforeDeciding;
[noscript] void EnStreamNew(in nsCStringRef stream);
};