|
- /*
- ==============================================================================
-
- This file is part of the JUCE library.
- Copyright (c) 2020 - Raw Material Software Limited
-
- JUCE is an open source library subject to commercial or open-source
- licensing.
-
- By using JUCE, you agree to the terms of both the JUCE 6 End-User License
- Agreement and JUCE Privacy Policy (both effective as of the 16th June 2020).
-
- End User License Agreement: www.juce.com/juce-6-licence
- Privacy Policy: www.juce.com/juce-privacy-policy
-
- Or: You may also use this code under the terms of the GPL v3 (see
- www.gnu.org/licenses).
-
- JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
- EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
- DISCLAIMED.
-
- ==============================================================================
- */
-
- namespace juce
- {
-
- namespace VariantHelpers
- {
- inline void clear (VARIANT* variant)
- {
- variant->vt = VT_EMPTY;
- }
-
- inline void setInt (int value, VARIANT* variant)
- {
- variant->vt = VT_I4;
- variant->lVal = value;
- }
-
- inline void setBool (bool value, VARIANT* variant)
- {
- variant->vt = VT_BOOL;
- variant->boolVal = value ? -1 : 0;
- }
-
- inline void setString (const String& value, VARIANT* variant)
- {
- variant->vt = VT_BSTR;
- variant->bstrVal = SysAllocString ((const OLECHAR*) value.toWideCharPointer());
- }
-
- inline void setDouble (double value, VARIANT* variant)
- {
- variant->vt = VT_R8;
- variant->dblVal = value;
- }
- }
-
- JUCE_COMRESULT addHandlersToArray (const std::vector<const AccessibilityHandler*>& handlers, SAFEARRAY** pRetVal)
- {
- auto numHandlers = handlers.size();
-
- *pRetVal = SafeArrayCreateVector (VT_UNKNOWN, 0, (ULONG) numHandlers);
-
- if (pRetVal != nullptr)
- {
- for (LONG i = 0; i < (LONG) numHandlers; ++i)
- {
- auto* handler = handlers[i];
-
- if (handler == nullptr)
- continue;
-
- ComSmartPtr<IRawElementProviderSimple> provider;
- handler->getNativeImplementation()->QueryInterface (IID_PPV_ARGS (provider.resetAndGetPointerAddress()));
-
- auto hr = SafeArrayPutElement (*pRetVal, &i, provider);
-
- if (FAILED (hr))
- return E_FAIL;
- }
- }
-
- return S_OK;
- }
-
- template <typename Value, typename Object, typename Callback>
- JUCE_COMRESULT withCheckedComArgs (Value* pRetVal, Object& handle, Callback&& callback)
- {
- if (pRetVal == nullptr)
- return E_INVALIDARG;
-
- *pRetVal = Value{};
-
- if (! handle.isElementValid())
- return UIA_E_ELEMENTNOTAVAILABLE;
-
- return callback();
- }
-
- } // namespace juce
|