mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-06 10:15:38 +08:00
[AFV] Ref T731, Ref T739 model/view for audio device info
This commit is contained in:
committed by
Mat Sutcliffe
parent
8a89b8f261
commit
80725e96dc
36
src/blackgui/models/audiodeviceinfolistmodel.cpp
Normal file
36
src/blackgui/models/audiodeviceinfolistmodel.cpp
Normal file
@@ -0,0 +1,36 @@
|
||||
/* Copyright (C) 2019
|
||||
* Swift Project Community / Contributors
|
||||
*
|
||||
* This file is part of swift Project. It is subject to the license terms in the LICENSE file found in the top-level
|
||||
* directory of this distribution. No part of swift project, including this file, may be copied, modified, propagated,
|
||||
* or distributed except according to the terms contained in the LICENSE file.
|
||||
*/
|
||||
|
||||
#include "blackgui/models/audiodeviceinfolistmodel.h"
|
||||
#include "blackgui/models/columnformatters.h"
|
||||
#include "blackgui/models/columns.h"
|
||||
|
||||
#include <Qt>
|
||||
#include <QtGlobal>
|
||||
|
||||
using namespace BlackMisc;
|
||||
using namespace BlackMisc::Audio;
|
||||
|
||||
namespace BlackGui
|
||||
{
|
||||
namespace Models
|
||||
{
|
||||
CAudioDeviceInfoListModel::CAudioDeviceInfoListModel(QObject *parent) :
|
||||
CListModelBase("AudioDeviceInfoListModel", parent)
|
||||
{
|
||||
m_columns.addColumn(CColumn::standardString("type", CAudioDeviceInfo::IndexDeviceTypeAsString));
|
||||
m_columns.addColumn(CColumn::standardString("name", CAudioDeviceInfo::IndexName));
|
||||
m_columns.addColumn(CColumn::standardString("machine", { CAudioDeviceInfo::IndexIdentifier, CIdentifier::IndexMachineName }));
|
||||
m_columns.addColumn(CColumn::standardString("process", { CAudioDeviceInfo::IndexIdentifier, CIdentifier::IndexProcessName }));
|
||||
|
||||
// default sort order
|
||||
this->setSortColumnByPropertyIndex(CAudioDeviceInfo::IndexName);
|
||||
m_sortOrder = Qt::AscendingOrder;
|
||||
}
|
||||
} // ns
|
||||
} // ns
|
||||
Reference in New Issue
Block a user