mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
d2b2aa8124
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14277 a592a061-630c-0410-9148-cb99ea01b6c8
47 lines
1.0 KiB
C++
47 lines
1.0 KiB
C++
// -*- 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ã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
|