lyx_mirror/src/frontends/qt4/socket_callback.h

47 lines
1.0 KiB
C
Raw Normal View History

// -*- C++ -*-
/**
* \file io_callback.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author unknown
* \author John Levon
* \author Jo<EFBFBD>o Luis M. Assirati
*
* Full author contact details are available in file CREDITS.
*/
#ifndef SOCKET_CALLBACK_H
#define SOCKET_CALLBACK_H
#include <qobject.h>
#include <qsocketnotifier.h>
#include <boost/scoped_ptr.hpp>
#include <boost/function.hpp>
/**
* socket_callback - a simple wrapper for asynchronous socket notification
*
* This is used by the lyxsocket to notice the socket is ready to be
* connected/read.
*
* FIXME: this code apparently will not work on Windows.
*/
class socket_callback : public QObject {
Q_OBJECT
public:
/// connect a connection notification from the LyXServerSocket
socket_callback(int fd, boost::function<void()> func);
public Q_SLOTS:
void data_received();
private:
/// our notifier
boost::scoped_ptr<QSocketNotifier> sn_;
/// The callback function
boost::function<void()> func_;
};
#endif // SOCKET_CALLBACK_H