diff options
Diffstat (limited to 'examples/network/remotecontrol/startup.cpp')
-rw-r--r-- | examples/network/remotecontrol/startup.cpp | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/examples/network/remotecontrol/startup.cpp b/examples/network/remotecontrol/startup.cpp new file mode 100644 index 000000000..f555499b7 --- /dev/null +++ b/examples/network/remotecontrol/startup.cpp @@ -0,0 +1,45 @@ +#include "startup.h" +#include "remotectrlimpl.h" +#include "maindialog.h" +#include "ipcserver.h" + +#include <qsocket.h> +#include <qlabel.h> + +static const Q_UINT16 ipcPort = 54923; + +StartUp::StartUp() +{ + remoteCtrl = 0; + mainDialog = 0; + + socket = new TQSocket( this ); + connect( socket, SIGNAL(connected()), SLOT(startRemoteCtrl()) ); + connect( socket, SIGNAL(error(int)), SLOT(startMainDialog()) ); + socket->connectToHost( "localhost", ipcPort ); +} + +StartUp::~StartUp() +{ + delete remoteCtrl; + delete mainDialog; +} + +void StartUp::startRemoteCtrl() +{ + remoteCtrl = new RemoteCtrlImpl( socket ); + remoteCtrl->show(); +} + +void StartUp::startMainDialog() +{ + mainDialog = new MainDialog(); + mainDialog->show(); + + IpcServer *server = new IpcServer( ipcPort, this ); + + connect( server, SIGNAL(receivedText(const TQString&)), + mainDialog->description, SLOT(setText(const TQString&)) ); + connect( server, SIGNAL(receivedPixmap(const TQPixmap&)), + mainDialog->image, SLOT(setPixmap(const TQPixmap&)) ); +} |