1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/widget/windows/nsColorPicker.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,54 @@ 1.4 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- 1.5 + * 1.6 + * This Source Code Form is subject to the terms of the Mozilla Public 1.7 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.8 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.9 + 1.10 +#ifndef nsColorPicker_h__ 1.11 +#define nsColorPicker_h__ 1.12 + 1.13 +#include <windows.h> 1.14 +#include <commdlg.h> 1.15 + 1.16 +#include "nsCOMPtr.h" 1.17 +#include "nsIColorPicker.h" 1.18 +#include "nsString.h" 1.19 +#include "nsThreadUtils.h" 1.20 + 1.21 +class nsIWidget; 1.22 + 1.23 +class AsyncColorChooser : 1.24 + public nsRunnable 1.25 +{ 1.26 +public: 1.27 + AsyncColorChooser(const nsAString& aInitialColor, 1.28 + nsIWidget* aParentWidget, 1.29 + nsIColorPickerShownCallback* aCallback); 1.30 + NS_IMETHOD Run() MOZ_OVERRIDE; 1.31 + 1.32 +private: 1.33 + nsString mInitialColor; 1.34 + nsCOMPtr<nsIWidget> mParentWidget; 1.35 + nsCOMPtr<nsIColorPickerShownCallback> mCallback; 1.36 + nsString mColor; 1.37 +}; 1.38 + 1.39 +class nsColorPicker : 1.40 + public nsIColorPicker 1.41 +{ 1.42 +public: 1.43 + nsColorPicker(); 1.44 + virtual ~nsColorPicker(); 1.45 + 1.46 + NS_DECL_ISUPPORTS 1.47 + 1.48 + NS_IMETHOD Init(nsIDOMWindow* parent, const nsAString& title, 1.49 + const nsAString& aInitialColor); 1.50 + NS_IMETHOD Open(nsIColorPickerShownCallback* aCallback); 1.51 + 1.52 +protected: 1.53 + nsString mInitialColor; 1.54 + nsCOMPtr<nsIWidget> mParentWidget; 1.55 +}; 1.56 + 1.57 +#endif // nsColorPicker_h__