/**************************************************************************** ** ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include #include #include "dsvideodevicecontrol.h" #include "dscamerasession.h" #include #include #include #include #include #include extern const CLSID CLSID_VideoInputDeviceCategory; QT_BEGIN_NAMESPACE DSVideoDeviceControl::DSVideoDeviceControl(QObject *parent) : QVideoDeviceSelectorControl(parent) { m_session = qobject_cast(parent); enumerateDevices(&m_devices, &m_descriptions); selected = 0; } int DSVideoDeviceControl::deviceCount() const { return m_devices.count(); } QString DSVideoDeviceControl::deviceName(int index) const { if (index >= 0 && index <= m_devices.count()) return QString::fromUtf8(m_devices.at(index).constData()); return QString(); } QString DSVideoDeviceControl::deviceDescription(int index) const { if (index >= 0 && index <= m_descriptions.count()) return m_descriptions.at(index); return QString(); } int DSVideoDeviceControl::defaultDevice() const { return 0; } int DSVideoDeviceControl::selectedDevice() const { return selected; } void DSVideoDeviceControl::enumerateDevices(QList *devices, QStringList *descriptions) { devices->clear(); descriptions->clear(); CoInitialize(NULL); ICreateDevEnum* pDevEnum = NULL; IEnumMoniker* pEnum = NULL; // Create the System device enumerator HRESULT hr = CoCreateInstance(CLSID_SystemDeviceEnum, NULL, CLSCTX_INPROC_SERVER, IID_ICreateDevEnum, reinterpret_cast(&pDevEnum)); if (SUCCEEDED(hr)) { // Create the enumerator for the video capture category hr = pDevEnum->CreateClassEnumerator( CLSID_VideoInputDeviceCategory, &pEnum, 0); if (S_OK == hr) { pEnum->Reset(); // go through and find all video capture devices IMoniker* pMoniker = NULL; IMalloc *mallocInterface = 0; CoGetMalloc(1, (LPMALLOC*)&mallocInterface); while (pEnum->Next(1, &pMoniker, NULL) == S_OK) { BSTR strName = 0; hr = pMoniker->GetDisplayName(NULL, NULL, &strName); if (SUCCEEDED(hr)) { QString output(QString::fromWCharArray(strName)); mallocInterface->Free(strName); devices->append(output.toUtf8().constData()); IPropertyBag *pPropBag; hr = pMoniker->BindToStorage(0, 0, IID_IPropertyBag, (void**)(&pPropBag)); if (SUCCEEDED(hr)) { // Find the description VARIANT varName; varName.vt = VT_BSTR; hr = pPropBag->Read(L"FriendlyName", &varName, 0); if (SUCCEEDED(hr)) { output = QString::fromWCharArray(varName.bstrVal); } pPropBag->Release(); } descriptions->append(output); } pMoniker->Release(); } mallocInterface->Release(); pEnum->Release(); } pDevEnum->Release(); } CoUninitialize(); } void DSVideoDeviceControl::setSelectedDevice(int index) { if (index >= 0 && index <= m_devices.count()) { if (m_session) { QString device = m_devices.at(index); if (device.startsWith("ds:")) device.remove(0,3); m_session->setDevice(device); } selected = index; } } QT_END_NAMESPACE