]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/socket_callback.h
* src/frontends/qt4/ui/TextLayoutUi.ui:
[lyx.git] / src / frontends / qt4 / socket_callback.h
1 // -*- C++ -*-
2 /**
3  * \file io_callback.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author unknown
8  * \author John Levon
9  * \author João Luis M. Assirati
10  *
11  * Full author contact details are available in file CREDITS.
12  */
13
14 #ifndef SOCKET_CALLBACK_H
15 #define SOCKET_CALLBACK_H
16
17
18 #include <qobject.h>
19 #include <qsocketnotifier.h>
20 #include <boost/scoped_ptr.hpp>
21 #include <boost/function.hpp>
22
23
24 namespace lyx {
25
26
27 /**
28  * socket_callback - a simple wrapper for asynchronous socket notification
29  *
30  * This is used by the lyxsocket to notice the socket is ready to be
31  * connected/read.
32  *
33  * FIXME: this code apparently will not work on Windows.
34  */
35 class socket_callback : public QObject {
36         Q_OBJECT
37 public:
38         /// connect a connection notification from the LyXServerSocket
39         socket_callback(int fd, boost::function<void()> func);
40 public Q_SLOTS:
41         void data_received();
42 private:
43         /// our notifier
44         boost::scoped_ptr<QSocketNotifier> sn_;
45         /// The callback function
46         boost::function<void()> func_;
47 };
48
49
50 } // namespace lyx
51
52 #endif // SOCKET_CALLBACK_H