| [0] | 1 | /* |
|---|
| [123] | 2 | * QuteCom, a voice over Internet phone |
|---|
| [125] | 3 | * Copyright (C) 2004-2010 Mbdsys |
|---|
| [0] | 4 | * |
|---|
| 5 | * This program is free software; you can redistribute it and/or modify |
|---|
| 6 | * it under the terms of the GNU General Public License as published by |
|---|
| 7 | * the Free Software Foundation; either version 2 of the License, or |
|---|
| 8 | * (at your option) any later version. |
|---|
| 9 | * |
|---|
| 10 | * This program is distributed in the hope that it will be useful, |
|---|
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 13 | * GNU General Public License for more details. |
|---|
| 14 | * |
|---|
| 15 | * You should have received a copy of the GNU General Public License |
|---|
| 16 | * along with this program; if not, write to the Free Software |
|---|
| 17 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|---|
| 18 | */ |
|---|
| 19 | |
|---|
| 20 | #ifndef OWENUMDEVICETYPE_H |
|---|
| 21 | #define OWENUMDEVICETYPE_H |
|---|
| 22 | |
|---|
| 23 | #include <util/NonCopyable.h> |
|---|
| 24 | |
|---|
| 25 | #include <string> |
|---|
| 26 | |
|---|
| 27 | /** |
|---|
| 28 | * Kind of audio mixer device to deal with. |
|---|
| 29 | * |
|---|
| 30 | * @author Tanguy Krotoff |
|---|
| 31 | */ |
|---|
| 32 | class EnumDeviceType : NonCopyable { |
|---|
| 33 | public: |
|---|
| 34 | |
|---|
| 35 | enum DeviceType { |
|---|
| 36 | //MIXERLINE_COMPONENTTYPE_DST_SPEAKERS |
|---|
| 37 | DeviceTypeMasterVolume, |
|---|
| 38 | |
|---|
| 39 | //MIXERLINE_COMPONENTTYPE_SRC_WAVEOUT |
|---|
| 40 | DeviceTypeWaveOut, |
|---|
| 41 | |
|---|
| 42 | //MIXERLINE_COMPONENTTYPE_DST_WAVEIN |
|---|
| 43 | DeviceTypeWaveIn, |
|---|
| 44 | |
|---|
| 45 | //MIXERLINE_COMPONENTTYPE_SRC_COMPACTDISC |
|---|
| 46 | DeviceTypeCDOut, |
|---|
| 47 | |
|---|
| 48 | //MIXERLINE_COMPONENTTYPE_SRC_MICROPHONE |
|---|
| 49 | DeviceTypeMicrophoneOut, |
|---|
| 50 | |
|---|
| 51 | //MIXERLINE_COMPONENTTYPE_DST_WAVEIN + MIXERLINE_COMPONENTTYPE_SRC_MICROPHONE |
|---|
| 52 | DeviceTypeMicrophoneIn |
|---|
| 53 | }; |
|---|
| 54 | |
|---|
| 55 | static std::string toString(DeviceType deviceType); |
|---|
| 56 | |
|---|
| 57 | static DeviceType toDeviceType(const std::string & deviceType); |
|---|
| 58 | }; |
|---|
| 59 | |
|---|
| 60 | #endif //OWENUMDEVICETYPE_H |
|---|