summaryrefslogtreecommitdiffstats
path: root/widget/windows/LegacyJumpListBuilder.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--widget/windows/LegacyJumpListBuilder.h71
1 files changed, 71 insertions, 0 deletions
diff --git a/widget/windows/LegacyJumpListBuilder.h b/widget/windows/LegacyJumpListBuilder.h
new file mode 100644
index 0000000000..1d96773c47
--- /dev/null
+++ b/widget/windows/LegacyJumpListBuilder.h
@@ -0,0 +1,71 @@
+/* -*- 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/. */
+
+#ifndef __LegacyJumpListBuilder_h__
+#define __LegacyJumpListBuilder_h__
+
+#include <windows.h>
+
+// Needed for various com interfaces
+#include <shobjidl.h>
+#undef LogSeverity // SetupAPI.h #defines this as DWORD
+
+#include "nsString.h"
+
+#include "nsILegacyJumpListBuilder.h"
+#include "nsILegacyJumpListItem.h"
+#include "LegacyJumpListItem.h"
+#include "nsIObserver.h"
+#include "nsTArray.h"
+#include "mozilla/Attributes.h"
+#include "mozilla/LazyIdleThread.h"
+#include "mozilla/mscom/AgileReference.h"
+#include "mozilla/ReentrantMonitor.h"
+
+namespace mozilla {
+namespace widget {
+
+namespace detail {
+class DoneCommitListBuildCallback;
+} // namespace detail
+
+class LegacyJumpListBuilder : public nsILegacyJumpListBuilder,
+ public nsIObserver {
+ virtual ~LegacyJumpListBuilder();
+
+ public:
+ NS_DECL_THREADSAFE_ISUPPORTS
+ NS_DECL_NSILEGACYJUMPLISTBUILDER
+ NS_DECL_NSIOBSERVER
+
+ LegacyJumpListBuilder();
+
+ protected:
+ static Atomic<bool> sBuildingList;
+
+ private:
+ mscom::AgileReference<ICustomDestinationList> mJumpListMgr
+ MOZ_GUARDED_BY(mMonitor);
+ uint32_t mMaxItems MOZ_GUARDED_BY(mMonitor);
+ bool mHasCommit;
+ RefPtr<LazyIdleThread> mIOThread;
+ ReentrantMonitor mMonitor;
+ nsString mAppUserModelId;
+
+ bool IsSeparator(nsCOMPtr<nsILegacyJumpListItem>& item);
+ void RemoveIconCacheAndGetJumplistShortcutURIs(IObjectArray* aObjArray,
+ nsTArray<nsString>& aURISpecs);
+ void DeleteIconFromDisk(const nsAString& aPath);
+ nsresult RemoveIconCacheForAllItems();
+ void DoCommitListBuild(RefPtr<detail::DoneCommitListBuildCallback> aCallback);
+ void DoInitListBuild(RefPtr<dom::Promise>&& aPromise);
+
+ friend class WinTaskbar;
+};
+
+} // namespace widget
+} // namespace mozilla
+
+#endif /* __LegacyJumpListBuilder_h__ */