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

系统编程

开发平台:

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 QWSSOCKET_QWS_H
  35. #define QWSSOCKET_QWS_H
  36. #include <QtCore/qconfig.h>
  37. #include <QtGui/qwsutils_qws.h>
  38. #ifndef QT_NO_QWS_MULTIPROCESS
  39. #ifndef QT_NO_SXE
  40. #include <QtCore/qmutex.h>
  41. #include <QtGui/private/qunixsocketserver_p.h>
  42. #include <QtGui/private/qunixsocket_p.h>
  43. #else
  44. #include <QtNetwork/qtcpsocket.h>
  45. #include <QtNetwork/qtcpserver.h>
  46. #endif
  47. QT_BEGIN_HEADER
  48. QT_BEGIN_NAMESPACE
  49. QT_MODULE(Gui)
  50. class QWSSocket : public QWS_SOCK_BASE
  51. {
  52.     Q_OBJECT
  53. public:
  54.     explicit QWSSocket(QObject *parent=0);
  55.     ~QWSSocket();
  56.     bool connectToLocalFile(const QString &file);
  57. #ifndef QT_NO_SXE
  58.     QString errorString();
  59. Q_SIGNALS:
  60.     void connected();
  61.     void disconnected();
  62.     void error(QAbstractSocket::SocketError);
  63. private Q_SLOTS:
  64.     void forwardStateChange(SocketState);
  65. #endif
  66. private:
  67.     Q_DISABLE_COPY(QWSSocket)
  68. };
  69. class QWSServerSocket : public QWS_SOCK_SERVER_BASE
  70. {
  71.     Q_OBJECT
  72. public:
  73.     QWSServerSocket(const QString& file, QObject *parent=0);
  74.     ~QWSServerSocket();
  75. #ifndef QT_NO_SXE
  76.     QWSSocket *nextPendingConnection();
  77. Q_SIGNALS:
  78.     void newConnection();
  79. protected:
  80.     void incomingConnection(int socketDescriptor);
  81. private:
  82.     QMutex ssmx;
  83.     QList<int> inboundConnections;
  84. #endif
  85. private:
  86.     Q_DISABLE_COPY(QWSServerSocket)
  87.     void init(const QString &file);
  88. };
  89. QT_END_NAMESPACE
  90. QT_END_HEADER
  91. #endif // QT_NO_QWS_MULTIPROCESS
  92. #endif // QWSSOCKET_QWS_H