fune/widget/windows/WindowsUIUtils.h
Kagami Sascha Rosylight 04aefdcc4e Bug 1573029 - Add WindowsShare API r=marcosc,agashlin
Currently WindowsUIUtils::ShareUrl only support sharing a URL and a title and then ignores what the user actually do with it. This patch adds text sharing support and returns MozPromise to resolve or reject as the user wants.

Differential Revision: https://phabricator.services.mozilla.com/D42484

--HG--
extra : moz-landing-system : lando
2020-02-06 11:12:55 +00:00

34 lines
1,010 B
C++

/* -*- 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 mozilla_widget_WindowsUIUtils_h__
#define mozilla_widget_WindowsUIUtils_h__
#include "nsIWindowsUIUtils.h"
#include "nsString.h"
#include "mozilla/MozPromise.h"
typedef mozilla::MozPromise<bool, nsresult, /* IsExclusive */ true>
SharePromise;
enum TabletModeState { eTabletModeUnknown = 0, eTabletModeOff, eTabletModeOn };
class WindowsUIUtils final : public nsIWindowsUIUtils {
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIWINDOWSUIUTILS
WindowsUIUtils();
static RefPtr<SharePromise> Share(nsAutoString aTitle, nsAutoString aText,
nsAutoString aUrl);
protected:
~WindowsUIUtils();
TabletModeState mInTabletMode;
};
#endif // mozilla_widget_WindowsUIUtils_h__