2013-06-23 20:48:24 +04:00
|
|
|
/* -*- 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/. */
|
2014-06-19 04:56:02 +04:00
|
|
|
|
2013-06-23 20:48:24 +04:00
|
|
|
#ifndef nsColorPicker_h__
|
|
|
|
#define nsColorPicker_h__
|
2014-06-19 04:56:02 +04:00
|
|
|
|
2013-06-23 20:48:24 +04:00
|
|
|
#include <windows.h>
|
|
|
|
#include <commdlg.h>
|
2014-06-19 04:56:02 +04:00
|
|
|
|
2013-06-23 20:48:24 +04:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsIColorPicker.h"
|
|
|
|
#include "nsThreadUtils.h"
|
2014-06-19 04:56:02 +04:00
|
|
|
|
2013-06-23 20:48:24 +04:00
|
|
|
class nsIWidget;
|
2014-06-19 04:56:02 +04:00
|
|
|
|
2013-06-23 20:48:24 +04:00
|
|
|
class AsyncColorChooser : public mozilla::Runnable {
|
|
|
|
public:
|
2014-08-25 23:17:41 +04:00
|
|
|
AsyncColorChooser(COLORREF aInitialColor, nsIWidget* aParentWidget,
|
2014-01-11 21:46:20 +04:00
|
|
|
nsIColorPickerShownCallback* aCallback);
|
2015-03-21 19:28:04 +03:00
|
|
|
NS_IMETHOD Run() override;
|
2014-06-19 04:56:02 +04:00
|
|
|
|
2013-06-23 20:48:24 +04:00
|
|
|
private:
|
2014-08-25 23:17:45 +04:00
|
|
|
void Update(COLORREF aColor);
|
|
|
|
|
|
|
|
static UINT_PTR CALLBACK HookProc(HWND aDialog, UINT aMsg, WPARAM aWParam,
|
|
|
|
LPARAM aLParam);
|
|
|
|
|
2014-08-25 23:17:41 +04:00
|
|
|
COLORREF mInitialColor;
|
|
|
|
COLORREF mColor;
|
2013-06-23 20:48:24 +04:00
|
|
|
nsCOMPtr<nsIWidget> mParentWidget;
|
|
|
|
nsCOMPtr<nsIColorPickerShownCallback> mCallback;
|
|
|
|
};
|
2014-06-19 04:56:02 +04:00
|
|
|
|
2013-06-23 20:48:24 +04:00
|
|
|
class nsColorPicker : public nsIColorPicker {
|
2014-07-16 00:37:58 +04:00
|
|
|
virtual ~nsColorPicker();
|
|
|
|
|
2013-06-23 20:48:24 +04:00
|
|
|
public:
|
|
|
|
nsColorPicker();
|
2014-06-19 04:56:02 +04:00
|
|
|
|
2013-06-23 20:48:24 +04:00
|
|
|
NS_DECL_ISUPPORTS
|
2014-06-19 04:56:02 +04:00
|
|
|
|
2016-01-30 20:05:36 +03:00
|
|
|
NS_IMETHOD Init(mozIDOMWindowProxy* parent, const nsAString& title,
|
2014-01-11 21:46:20 +04:00
|
|
|
const nsAString& aInitialColor);
|
2017-11-06 06:37:28 +03:00
|
|
|
NS_IMETHOD Open(nsIColorPickerShownCallback* aCallback) override;
|
2014-06-19 04:56:02 +04:00
|
|
|
|
2014-08-25 23:17:41 +04:00
|
|
|
private:
|
|
|
|
COLORREF mInitialColor;
|
2013-06-23 20:48:24 +04:00
|
|
|
nsCOMPtr<nsIWidget> mParentWidget;
|
|
|
|
};
|
2014-06-19 04:56:02 +04:00
|
|
|
|
2013-06-23 20:48:24 +04:00
|
|
|
#endif // nsColorPicker_h__
|