/usr/include/phonon/phononnamespace.h is in libphonon-dev 4:4.6.0.0-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 | /* This file is part of the KDE project
Copyright (C) 2005-2008 Matthias Kretz <kretz@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) version 3, or any
later version accepted by the membership of KDE e.V. (or its
successor approved by the membership of KDE e.V.), Nokia Corporation
(or its successors, if any) and the KDE Free Qt Foundation, which shall
act as a proxy defined in Section 6 of version 3 of the license.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef PHONONNAMESPACE_H
#define PHONONNAMESPACE_H
#include "phonon_export.h"
/**
* Helper macro that can be used like
* \code
* #if (PHONON_VERSION >= PHONON_VERSION_CHECK(4, 4, 0))
* \endcode
*/
#define PHONON_VERSION_CHECK(major, minor, patch) ((major<<16)|(minor<<8)|(patch))
/**
* PHONON_VERSION is (major << 16) + (minor << 8) + patch.
*/
#define PHONON_VERSION PHONON_VERSION_CHECK(4, 6, 0)
/**
* PHONON_VERSION_STR is "major.minor.patch". E.g. "4.2.1"
*/
#define PHONON_VERSION_STR "4.6.0"
QT_BEGIN_HEADER
QT_BEGIN_NAMESPACE
class QString;
/**
* \brief The %KDE Multimedia classes
*
* In this Namespace you find the classes to access Multimedia functions for
* audio and video playback. Those classes are not dependent
* on any specific framework (like they were in pre KDE4 times) but rather use
* exchangeable backends to do the work.
*
* If you want to write a new backend take a look at \ref phonon_backend_development_page.
*
* \author Matthias Kretz <kretz@kde.org>
*/
namespace Phonon
{
PHONON_EXPORT const char *phononVersion();
/**
* Enum to identify the media discs supported by MediaObject.
*
* \see MediaSource(Phonon::DiscType, const QString &deviceName)
*/
enum DiscType {
/**
* No disc was selected. This is only useful as a return value from
* MediaSource::distType();
*/
NoDisc = -1,
/**
* Identifies Audio CDs.
*/
Cd = 0,
/**
* Identifies DVDs (not arbitrary data DVDs, only movie DVDs).
*/
Dvd = 1,
/**
* Identifies Video CDs.
*/
Vcd = 2
};
/**
* Provided as keys for MediaObject::metaData for convenience, in addition to the strings defined in
* the Ogg Vorbis specification.
*/
enum MetaData {
/**
* The artist generally considered responsible for the work. In popular
* music this is usually the performing band or singer. For classical
* music it would be the composer. For an audio book it would be the
* author of the original text.
*/
ArtistMetaData,
/**
* The collection name to which this track belongs.
*/
AlbumMetaData,
/**
* Track/Work name
*/
TitleMetaData,
/**
* Date the track was recorded
*/
DateMetaData,
/**
* A short text indication of music genre
*/
GenreMetaData,
/**
* The track number of this piece if part of a specific larger
* collection or album
*/
TracknumberMetaData,
/**
* A short text description of the contents
*/
DescriptionMetaData,
MusicBrainzDiscIdMetaData
};
/**
* The state the media producing object is in at the moment.
*
* \see MediaObject
*/
enum State {
/**
* After construction it might take a while before the Player is
* ready to play(). Normally this doesn't happen for local
* files, but can happen for remote files where the asynchronous
* mimetype detection and prebuffering can take a while.
*/
LoadingState,
/**
* The Player has a valid media file loaded and is ready for
* playing.
*/
StoppedState,
/**
* The Player is playing a media file.
*/
PlayingState,
/**
* The Player is waiting for data to be able to continue
* playing.
*/
BufferingState,
/**
* The Player is currently paused.
*/
PausedState,
/**
* An unrecoverable error occurred. The Object is unusable in this state.
*/
ErrorState
};
/**
* Set's the category your program should be listed in in the mixer.
*
* A Jukebox will set this to Music, a VoIP program to Communication, a
* DVD player to video, and so on.
*
* \note These categories can also become useful for an application that
* controls the volumes automatically, like turning down the music when a call
* comes in, or turning down the notifications when the media player knows
* it's playing classical music.
*
* \see AudioOutput::setCategory
*/
enum Category {
/**
* Will make use of the default device.
*/
NoCategory = -1,
/**
* If the sounds produced are notifications (bing, beep and such) you
* should use this category.
*/
NotificationCategory = 0,
/**
* If your application is a music player (like a jukebox or media player
* playing an audio file).
*/
MusicCategory = 1,
/**
* If the sound is the audio channel of a video.
*/
VideoCategory = 2,
/**
* If your applications produces sounds from communication with somebody
* else (VoIP, voice chat).
*/
CommunicationCategory = 3,
/**
* Sound produced by a computer game should go into this category.
*/
GameCategory = 4,
/**
* Sounds produced for accessibility (e.g. Text-To-Speech)
*/
AccessibilityCategory = 5,
/**
* \internal
* Holds the largest value of categories.
*/
LastCategory = AccessibilityCategory
};
/**
* What capture category does an application adhere to. Mainly
* used to decide upon what capture device will be used, depending
* on the global configuration (user preference).
*
* \see MediaObject::setVideoCaptureDevice
* \see MediaObject::setAudioCaptureDevice
* \see AvCapture
*/
enum CaptureCategory {
/**
* Will make use of the default device
*/
NoCaptureCategory = NoCategory,
/**
* For applications that use video or audio capture for communication,
* video conference style. (VoIP, voice chat)
*/
CommunicationCaptureCategory = CommunicationCategory,
/**
* Recording applications, that actually save the data somewhere
*/
RecordingCaptureCategory,
/**
* Voice control. Maybe used for accesibility purpouses too
*/
ControlCaptureCategory = AccessibilityCategory
};
namespace Capture {
/**
* Describes the type of a capture device, audio or video
*/
enum DeviceType {
AudioType,
VideoType
};
}
/**
* Tells your program how to recover from an error.
*
* \see MediaObject::errorType()
*/
enum ErrorType {
/**
* No error. MediaObject::errorType() returns this if
* MediaObject::state() != Phonon::ErrorState.
*/
NoError = 0,
/**
* Playback should work, and trying with another URL should work.
*/
NormalError = 1,
/**
* Something important does not work. Your program cannot continue
* playback or capture or whatever it was trying to do
* without help from the user.
*/
FatalError = 2
};
/**
* Returns a (translated) string to show to the user identifying the given
* Category.
*/
PHONON_EXPORT QString categoryToString(Category c);
/**
* Returns a (translated) string to show to the user identifying the given
* CaptureCategory.
*/
PHONON_EXPORT QString categoryToString(CaptureCategory c);
// TODO: naming
/*enum MediaStreamType {
Audio = 1,
Video = 2,
StillImage = 4,
Subtitle = 8,
AllMedia = 0xFFFFFFFF
};
Q_DECLARE_FLAGS(MediaStreamTypes, MediaStreamType)*/
} // namespace Phonon
//Q_DECLARE_OPERATORS_FOR_FLAGS(Phonon::MediaStreamTypes)
QT_END_NAMESPACE
//X class kdbgstream;
//X #include <kdebug.h>
//X /**
//X * Implements needed operator to use Phonon::State with kDebug
//X */
//X inline PHONON_EXPORT kdbgstream &operator<<(kdbgstream & stream, const Phonon::State state)
//X {
//X switch(state)
//X {
//X case Phonon::ErrorState:
//X stream << "ErrorState";
//X break;
//X case Phonon::LoadingState:
//X stream << "LoadingState";
//X break;
//X case Phonon::StoppedState:
//X stream << "StoppedState";
//X break;
//X case Phonon::PlayingState:
//X stream << "PlayingState";
//X break;
//X case Phonon::BufferingState:
//X stream << "BufferingState";
//X break;
//X case Phonon::PausedState:
//X stream << "PausedState";
//X break;
//X }
//X return stream;
//X }
#include <QtCore/QMetaType>
Q_DECLARE_METATYPE(Phonon::State)
Q_DECLARE_METATYPE(Phonon::ErrorType)
Q_DECLARE_METATYPE(Phonon::Category)
Q_DECLARE_METATYPE(Phonon::CaptureCategory)
QT_END_HEADER
// vim: sw=4 ts=4 tw=80
#endif // PHONONNAMESPACE_H
|