Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 2 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | |
michael@0 | 6 | #ifndef __JumpListBuilder_h__ |
michael@0 | 7 | #define __JumpListBuilder_h__ |
michael@0 | 8 | |
michael@0 | 9 | #include <windows.h> |
michael@0 | 10 | |
michael@0 | 11 | #undef NTDDI_VERSION |
michael@0 | 12 | #define NTDDI_VERSION NTDDI_WIN7 |
michael@0 | 13 | // Needed for various com interfaces |
michael@0 | 14 | #include <shobjidl.h> |
michael@0 | 15 | #undef LogSeverity // SetupAPI.h #defines this as DWORD |
michael@0 | 16 | |
michael@0 | 17 | #include "nsString.h" |
michael@0 | 18 | #include "nsIMutableArray.h" |
michael@0 | 19 | |
michael@0 | 20 | #include "nsIJumpListBuilder.h" |
michael@0 | 21 | #include "nsIJumpListItem.h" |
michael@0 | 22 | #include "JumpListItem.h" |
michael@0 | 23 | #include "nsIObserver.h" |
michael@0 | 24 | #include "mozilla/Attributes.h" |
michael@0 | 25 | |
michael@0 | 26 | namespace mozilla { |
michael@0 | 27 | namespace widget { |
michael@0 | 28 | |
michael@0 | 29 | class JumpListBuilder : public nsIJumpListBuilder, |
michael@0 | 30 | public nsIObserver |
michael@0 | 31 | { |
michael@0 | 32 | public: |
michael@0 | 33 | NS_DECL_ISUPPORTS |
michael@0 | 34 | NS_DECL_NSIJUMPLISTBUILDER |
michael@0 | 35 | NS_DECL_NSIOBSERVER |
michael@0 | 36 | |
michael@0 | 37 | JumpListBuilder(); |
michael@0 | 38 | virtual ~JumpListBuilder(); |
michael@0 | 39 | |
michael@0 | 40 | protected: |
michael@0 | 41 | static bool sBuildingList; |
michael@0 | 42 | |
michael@0 | 43 | private: |
michael@0 | 44 | nsRefPtr<ICustomDestinationList> mJumpListMgr; |
michael@0 | 45 | uint32_t mMaxItems; |
michael@0 | 46 | bool mHasCommit; |
michael@0 | 47 | nsCOMPtr<nsIThread> mIOThread; |
michael@0 | 48 | |
michael@0 | 49 | bool IsSeparator(nsCOMPtr<nsIJumpListItem>& item); |
michael@0 | 50 | nsresult TransferIObjectArrayToIMutableArray(IObjectArray *objArray, nsIMutableArray *removedItems); |
michael@0 | 51 | nsresult RemoveIconCacheForItems(nsIMutableArray *removedItems); |
michael@0 | 52 | nsresult RemoveIconCacheForAllItems(); |
michael@0 | 53 | |
michael@0 | 54 | friend class WinTaskbar; |
michael@0 | 55 | }; |
michael@0 | 56 | |
michael@0 | 57 | } // namespace widget |
michael@0 | 58 | } // namespace mozilla |
michael@0 | 59 | |
michael@0 | 60 | #endif /* __JumpListBuilder_h__ */ |
michael@0 | 61 |