qsoundqss_qws.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:5k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
  4. ** Contact: Qt Software Information (qt-info@nokia.com)
  5. **
  6. ** This file is part of the QtGui module of the Qt Toolkit.
  7. **
  8. ** Commercial Usage
  9. ** Licensees holding valid Qt Commercial licenses may use this file in
  10. ** accordance with the Qt Commercial License Agreement provided with the
  11. ** Software or, alternatively, in accordance with the terms contained in
  12. ** a written agreement between you and Nokia.
  13. **
  14. **
  15. ** GNU General Public License Usage
  16. ** Alternatively, this file may be used under the terms of the GNU
  17. ** General Public License versions 2.0 or 3.0 as published by the Free
  18. ** Software Foundation and appearing in the file LICENSE.GPL included in
  19. ** the packaging of this file.  Please review the following information
  20. ** to ensure GNU General Public Licensing requirements will be met:
  21. ** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
  22. ** http://www.gnu.org/copyleft/gpl.html.
  23. **
  24. ** Qt for Windows(R) Licensees
  25. ** As a special exception, Nokia, as the sole copyright holder for Qt
  26. ** Designer, grants users of the Qt/Eclipse Integration plug-in the
  27. ** right for the Qt/Eclipse Integration to link to functionality
  28. ** provided by Qt Designer and its related libraries.
  29. **
  30. ** If you are unsure which license is appropriate for your use, please
  31. ** contact the sales department at qt-sales@nokia.com.
  32. **
  33. ****************************************************************************/
  34. #ifndef QSOUNDQSS_QWS_H
  35. #define QSOUNDQSS_QWS_H
  36. #include <QtCore/qglobal.h>
  37. #ifndef QT_NO_SOUND
  38. #include <QtNetwork/qtcpserver.h>
  39. #include <QtNetwork/qtcpsocket.h>
  40. #include <QtGui/qwssocket_qws.h>
  41. QT_BEGIN_HEADER
  42. QT_BEGIN_NAMESPACE
  43. QT_MODULE(Gui)
  44. #if defined(QT_NO_NETWORK) || defined(QT_NO_DNS)
  45. #define QT_NO_QWS_SOUNDSERVER
  46. #endif
  47. #ifndef Q_OS_MAC
  48. class QWSSoundServerPrivate;
  49. class Q_GUI_EXPORT QWSSoundServer : public QObject {
  50.     Q_OBJECT
  51. public:
  52.     explicit QWSSoundServer(QObject *parent=0);
  53.     ~QWSSoundServer();
  54.     void playFile( int id, const QString& filename );
  55.     void stopFile( int id );
  56.     void pauseFile( int id );
  57.     void resumeFile( int id );
  58.     
  59. Q_SIGNALS:
  60.     void soundCompleted( int );
  61.     
  62. private Q_SLOTS:
  63.     void translateSoundCompleted( int, int );
  64. private:
  65.     QWSSoundServerPrivate* d;
  66. };
  67. #ifndef QT_NO_QWS_SOUNDSERVER
  68. class Q_GUI_EXPORT QWSSoundClient : public QWSSocket {
  69.     Q_OBJECT
  70. public:
  71.     enum SoundFlags {
  72. Priority = 0x01,
  73. Streaming = 0x02  // currently ignored, but but could set up so both Raw and non raw can be done streaming or not.
  74.     };
  75.     enum DeviceErrors {
  76. ErrOpeningAudioDevice = 0x01,
  77. ErrOpeningFile = 0x02,
  78. ErrReadingFile = 0x04
  79.     };
  80.     explicit QWSSoundClient(QObject* parent=0);
  81.     ~QWSSoundClient( );
  82.     void reconnect();
  83.     void play( int id, const QString& filename );
  84.     void play( int id, const QString& filename, int volume, int flags = 0 );
  85.     void playRaw( int id, const QString&, int, int, int, int flags = 0 );
  86.     void pause( int id );
  87.     void stop( int id );
  88.     void resume( int id );
  89.     void setVolume( int id, int left, int right );
  90.     void setMute( int id, bool m );
  91.     
  92.     // to be used by server only, to protect phone conversation/rings.
  93.     void playPriorityOnly(bool);
  94.     // If silent, tell sound server to release audio device
  95.     // Otherwise, allow sound server to regain audio device
  96.     void setSilent(bool);
  97.     
  98. Q_SIGNALS:
  99.     void soundCompleted(int);
  100.     void deviceReady(int id);
  101.     void deviceError(int id, QWSSoundClient::DeviceErrors);
  102. private Q_SLOTS:
  103.     void tryReadCommand();
  104.     void emitConnectionRefused();
  105.     
  106. private:
  107.     void sendServerMessage(QString msg);
  108. };
  109. class QWSSoundServerSocket : public QWSServerSocket {
  110.     Q_OBJECT
  111. public:
  112.     explicit QWSSoundServerSocket(QObject *parent=0);
  113. public Q_SLOTS:    
  114.     void newConnection();
  115. #ifdef QT3_SUPPORT
  116. public:
  117.     QT3_SUPPORT_CONSTRUCTOR QWSSoundServerSocket(QObject *parent, const char *name);
  118. #endif
  119. Q_SIGNALS:
  120.     void playFile(int, int, const QString&);
  121.     void playFile(int, int, const QString&, int, int);
  122.     void playRawFile(int, int, const QString&, int, int, int, int);
  123.     void pauseFile(int, int);
  124.     void stopFile(int, int);
  125.     void resumeFile(int, int);
  126.     void setVolume(int, int, int, int);
  127.     void setMute(int, int, bool);
  128.     void stopAll(int);
  129.     void playPriorityOnly(bool);
  130.     void setSilent(bool);
  131.     void soundFileCompleted(int, int);
  132.     void deviceReady(int, int);
  133.     void deviceError(int, int, int);
  134. };
  135. #endif
  136. #endif // Q_OS_MAC
  137. QT_END_NAMESPACE
  138. QT_END_HEADER
  139. #endif // QT_NO_SOUND
  140. #endif // QSOUNDQSS_QWS_H