summaryrefslogtreecommitdiffstats
path: root/examples/network/remotecontrol/startup.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-11-08 12:31:36 -0600
committerTimothy Pearson <[email protected]>2011-11-08 12:31:36 -0600
commitd796c9dd933ab96ec83b9a634feedd5d32e1ba3f (patch)
tree6e3dcca4f77e20ec8966c666aac7c35bd4704053 /examples/network/remotecontrol/startup.cpp
downloadtqt3-d796c9dd933ab96ec83b9a634feedd5d32e1ba3f.tar.gz
tqt3-d796c9dd933ab96ec83b9a634feedd5d32e1ba3f.zip
Test conversion to TQt3 from Qt3 8c6fc1f8e35fd264dd01c582ca5e7549b32ab731
Diffstat (limited to 'examples/network/remotecontrol/startup.cpp')
-rw-r--r--examples/network/remotecontrol/startup.cpp45
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&)) );
+}