summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/search/src/nsMsgFilterService.h
diff options
context:
space:
mode:
Diffstat (limited to 'comm/mailnews/search/src/nsMsgFilterService.h')
-rw-r--r--comm/mailnews/search/src/nsMsgFilterService.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/comm/mailnews/search/src/nsMsgFilterService.h b/comm/mailnews/search/src/nsMsgFilterService.h
new file mode 100644
index 0000000000..7089c8362f
--- /dev/null
+++ b/comm/mailnews/search/src/nsMsgFilterService.h
@@ -0,0 +1,44 @@
+/* -*- 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/. */
+
+#ifndef _nsMsgFilterService_H_
+#define _nsMsgFilterService_H_
+
+#include "nsIMsgFilterService.h"
+#include "nsIFile.h"
+#include "nsTArray.h"
+
+class nsIMsgWindow;
+class nsIStringBundle;
+
+// The filter service is used to acquire and manipulate filter lists.
+
+class nsMsgFilterService : public nsIMsgFilterService {
+ public:
+ nsMsgFilterService();
+
+ NS_DECL_ISUPPORTS
+ NS_DECL_NSIMSGFILTERSERVICE
+ // clients call OpenFilterList to get a handle to a FilterList, of existing
+ // nsMsgFilter. These are manipulated by the front end as a result of user
+ // interaction with dialog boxes. To apply the new list call
+ // MSG_CloseFilterList.
+
+ nsresult BackUpFilterFile(nsIFile* aFilterFile, nsIMsgWindow* aMsgWindow);
+ nsresult AlertBackingUpFilterFile(nsIMsgWindow* aMsgWindow);
+ nsresult ThrowAlertMsg(const char* aMsgName, nsIMsgWindow* aMsgWindow);
+ nsresult GetStringFromBundle(const char* aMsgName, nsAString& aResult);
+ nsresult GetFilterStringBundle(nsIStringBundle** aBundle);
+
+ protected:
+ virtual ~nsMsgFilterService();
+
+ // defined custom action list
+ nsTArray<RefPtr<nsIMsgFilterCustomAction>> mCustomActions;
+ // defined custom term list
+ nsTArray<RefPtr<nsIMsgSearchCustomTerm>> mCustomTerms;
+};
+
+#endif // _nsMsgFilterService_H_