2006-03-05 17:24:44 +00:00
|
|
|
|
// -*- 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>
|
|
|
|
|
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
|
/**
|
|
|
|
|
* 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);
|
2006-06-30 14:37:33 +00:00
|
|
|
|
public Q_SLOTS:
|
2006-04-05 23:56:29 +00:00
|
|
|
|
void data_received();
|
2006-03-05 17:24:44 +00:00
|
|
|
|
private:
|
|
|
|
|
/// our notifier
|
|
|
|
|
boost::scoped_ptr<QSocketNotifier> sn_;
|
|
|
|
|
/// The callback function
|
|
|
|
|
boost::function<void()> func_;
|
|
|
|
|
};
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
|
#endif // SOCKET_CALLBACK_H
|