/* -*- Mode: C++; tab-width: 4; 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/. */ #pragma once #include "nsDebug.h" #include "nsThreadUtils.h" #include "nsString.h" #include "nsPoint.h" #include "nsRect.h" #include "mozwrlbase.h" #include #include #include void Log(const wchar_t *fmt, ...); #define WIDEN2(x) L ## x #define WIDEN(x) WIDEN2(x) #define __WFUNCTION__ WIDEN(__FUNCTION__) #define LogFunction() Log(__WFUNCTION__) #define LogThread() Log(L"%s: IsMainThread:%d ThreadId:%X", __WFUNCTION__, NS_IsMainThread(), GetCurrentThreadId()) #define LogThis() Log(L"[%X] %s", this, __WFUNCTION__) #define LogException(e) Log(L"%s Exception:%s", __WFUNCTION__, e->ToString()->Data()) #define LogHRESULT(hr) Log(L"%s hr=%X", __WFUNCTION__, hr) // HRESULT checkers, these warn on failure in debug builds #ifdef DEBUG #define DebugLogHR(hr) LogHRESULT(hr) #else #define DebugLogHR(hr) #endif #define AssertHRESULT(hr) \ if (FAILED(hr)) { \ DebugLogHR(hr); \ return; \ } #define AssertRetHRESULT(hr, res) \ if (FAILED(hr)) { \ DebugLogHR(hr); \ return res; \ } // MS Point helpers #define POINT_CEIL_X(position) (uint32_t)ceil(position.X) #define POINT_CEIL_Y(position) (uint32_t)ceil(position.Y) class nsIBrowserDOMWindow; class nsIDOMWindow; namespace mozilla { namespace widget { namespace winrt { template HRESULT ActivateGenericInstance(wchar_t const (&RuntimeClassName)[size], Microsoft::WRL::ComPtr& aOutObject) { Microsoft::WRL::ComPtr factory; HRESULT hr = ABI::Windows::Foundation::GetActivationFactory(Microsoft::WRL::Wrappers::HStringReference(RuntimeClassName).Get(), factory.GetAddressOf()); if (FAILED(hr)) return hr; Microsoft::WRL::ComPtr inspect; hr = factory->ActivateInstance(inspect.GetAddressOf()); if (FAILED(hr)) return hr; return inspect.As(&aOutObject); } } } } class MetroUtils { typedef ABI::Windows::Foundation::IUriRuntimeClass IUriRuntimeClass; typedef Microsoft::WRL::Wrappers::HString HString; typedef ABI::Windows::UI::ViewManagement::ApplicationViewState ApplicationViewState; typedef ABI::Windows::Foundation::Point Point; typedef ABI::Windows::Foundation::Rect Rect; public: // Functions to convert between logical pixels as used by most Windows APIs // and physical (device) pixels. // See MSDN documentation about DIPs (device independent pixels) for details. static int32_t LogToPhys(FLOAT aValue); static nsIntPoint LogToPhys(const Point& aPt); static nsIntRect LogToPhys(const Rect& aRect); static FLOAT PhysToLog(int32_t aValue); static Point PhysToLog(const nsIntPoint& aPt); static nsresult FireObserver(const char* aMessage, const PRUnichar* aData = nullptr); static HRESULT CreateUri(HSTRING aUriStr, Microsoft::WRL::ComPtr& aUriOut); static HRESULT CreateUri(HString& aHString, Microsoft::WRL::ComPtr& aUriOut); static HRESULT GetViewState(ApplicationViewState& aState); static HRESULT TryUnsnap(bool* aResult = nullptr); static HRESULT ShowSettingsFlyout(); private: static nsresult GetBrowserDOMWindow(nsCOMPtr &aBWin); static nsresult GetMostRecentWindow(const PRUnichar* aType, nsIDOMWindow** aWindow); };