Wed, 31 Dec 2014 06:55:50 +0100
Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2
michael@0 | 1 | /* -*- Mode: c++; tab-width: 2; indent-tabs-mode: nil; -*- */ |
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 | #include "nsIMacDockSupport.h" |
michael@0 | 7 | #include "nsIStandaloneNativeMenu.h" |
michael@0 | 8 | #include "nsITaskbarProgress.h" |
michael@0 | 9 | #include "nsITimer.h" |
michael@0 | 10 | #include "nsCOMPtr.h" |
michael@0 | 11 | #include "nsString.h" |
michael@0 | 12 | #include "nsNativeThemeCocoa.h" |
michael@0 | 13 | |
michael@0 | 14 | class nsMacDockSupport : public nsIMacDockSupport, public nsITaskbarProgress |
michael@0 | 15 | { |
michael@0 | 16 | public: |
michael@0 | 17 | nsMacDockSupport(); |
michael@0 | 18 | virtual ~nsMacDockSupport(); |
michael@0 | 19 | |
michael@0 | 20 | NS_DECL_ISUPPORTS |
michael@0 | 21 | NS_DECL_NSIMACDOCKSUPPORT |
michael@0 | 22 | NS_DECL_NSITASKBARPROGRESS |
michael@0 | 23 | |
michael@0 | 24 | protected: |
michael@0 | 25 | nsCOMPtr<nsIStandaloneNativeMenu> mDockMenu; |
michael@0 | 26 | nsString mBadgeText; |
michael@0 | 27 | |
michael@0 | 28 | NSImage *mAppIcon, *mProgressBackground; |
michael@0 | 29 | |
michael@0 | 30 | HIRect mProgressBounds; |
michael@0 | 31 | nsTaskbarProgressState mProgressState; |
michael@0 | 32 | double mProgressFraction; |
michael@0 | 33 | nsCOMPtr<nsITimer> mProgressTimer; |
michael@0 | 34 | nsRefPtr<nsNativeThemeCocoa> mTheme; |
michael@0 | 35 | |
michael@0 | 36 | static void RedrawIconCallback(nsITimer* aTimer, void* aClosure); |
michael@0 | 37 | |
michael@0 | 38 | bool InitProgress(); |
michael@0 | 39 | nsresult RedrawIcon(); |
michael@0 | 40 | }; |