From 6bf0a5cb5034a7e684dcc3500e841785237ce2dd Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 19:32:43 +0200 Subject: Adding upstream version 1:115.7.0. Signed-off-by: Daniel Baumann --- comm/mail/components/search/public/moz.build | 10 ++++ .../search/public/nsIMailWinSearchHelper.idl | 58 ++++++++++++++++++++++ 2 files changed, 68 insertions(+) create mode 100644 comm/mail/components/search/public/moz.build create mode 100644 comm/mail/components/search/public/nsIMailWinSearchHelper.idl (limited to 'comm/mail/components/search/public') diff --git a/comm/mail/components/search/public/moz.build b/comm/mail/components/search/public/moz.build new file mode 100644 index 0000000000..e920335704 --- /dev/null +++ b/comm/mail/components/search/public/moz.build @@ -0,0 +1,10 @@ +# vim: set filetype=python: +# 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/. + +XPIDL_SOURCES += [ + "nsIMailWinSearchHelper.idl", +] + +XPIDL_MODULE = "mailwinsearch" diff --git a/comm/mail/components/search/public/nsIMailWinSearchHelper.idl b/comm/mail/components/search/public/nsIMailWinSearchHelper.idl new file mode 100644 index 0000000000..1c1d03a07f --- /dev/null +++ b/comm/mail/components/search/public/nsIMailWinSearchHelper.idl @@ -0,0 +1,58 @@ +/* -*- Mode: C++; tab-width: 2; 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 "nsISupports.idl" + +interface nsIFile; + +[scriptable, uuid(a65307b3-64f8-49fc-96a7-2cfc7d1f18ee)] +interface nsIMailWinSearchHelper : nsISupports +{ + /** + * Whether the Windows Search service is installed and running. + * + * @exception NS_ERROR_NOT_AVAILABLE if the Windows Search service is + * not installed + */ + readonly attribute boolean serviceRunning; + + /** + * Whether the Mail, ImapMail, and News folders are in the crawl scope. + * + * @exception NS_ERROR_NOT_AVAILABLE if the Windows Search service is not + * installed or running + */ + readonly attribute boolean foldersInCrawlScope; + + /** + * Sets the File Attribute Not Content Indexed bit. For proper operation + * of the indexer, this bit must be set to 0/false. + * + * @param aFile the file or directory for which this bit is supposed to be set + * @param aBit false if the content is to be indexed, true if not + * @param aRecurse whether this bit is to be set recursively for all subdirectories + * and files inside a directory + */ + void setFANCIBit(in nsIFile aFile, in boolean aBit, in boolean aRecurse); + + /** + * Returns whether the .wdseml file association has been set to Thunderbird or not. + */ + readonly attribute boolean isFileAssociationSet; + + /** + * Sets the .wdseml file association. + */ + void setFileAssociation(); + + /** + * Runs the setup application using ShellExecute, passing the profile directory as + * a parameter. + * + * @param aEnable true to enable, false to disable + */ + void runSetup(in boolean aEnable); +}; -- cgit v1.2.3