gecko-dev/mailnews/base/search/public/nsIMsgSearchValidityTable.idl

59 строки
2.3 KiB
Plaintext

/* -*- 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.org 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"
interface nsISupportsArray;
[scriptable, uuid(b07f1cb6-fae9-4d92-9edb-03f9ad249c66)]
interface nsIMsgSearchValidityTable : nsISupports {
void setAvailable(in nsMsgSearchAttribValue attrib,
in nsMsgSearchOpValue op, in boolean active);
void setEnabled(in nsMsgSearchAttribValue attrib,
in nsMsgSearchOpValue op, in boolean enabled);
void setValidButNotShown(in nsMsgSearchAttribValue attrib,
in nsMsgSearchOpValue op, in boolean valid);
boolean getAvailable(in nsMsgSearchAttribValue attrib,
in nsMsgSearchOpValue op);
boolean getEnabled(in nsMsgSearchAttribValue attrib,
in nsMsgSearchOpValue op);
boolean getValidButNotShown(in nsMsgSearchAttribValue attrib,
in nsMsgSearchOpValue op);
[noscript] void validateTerms(in nsISupportsArray terms);
readonly attribute long numAvailAttribs;
void getAvailableAttributes(out unsigned long length,
[retval, array, size_is(length)]
out nsMsgSearchAttribValue attrs);
void getAvailableOperators(in nsMsgSearchAttribValue attrib,
out unsigned long length,
[retval, array, size_is(length)]
out nsMsgSearchOpValue operators);
};