<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Verdana
}
--></style>
</head>
<body class='hmmessage'>
Hi All,<br><br>I am developing a Qt4.6 based application that monitors outgoing international calls (by connecting to relevant DBUS signals) and routes<br>them via a calling card number. I have developed a configuration UI widget (QWidget subclass) to enable/disable such routing. <br>The problem is that the UI widget code and DBUS slots code are all in the same class. If I launch the application, the UI widget is shown.<br><br>This is the code in my main.cpp.<br><br><br>#include <QtGui/QApplication><br>#include "eventmonitor.h"<br>#include <QDebug><br><br>int main(int argc, char *argv[])<br>{<br><br> QApplication a(argc, argv); <br> EventMonitor w;<br> w.show();<br> return a.exec();<br>}<br><br><br>EventMonitor is a QWidget subclass which also has functions to connect to DBUS signals. My aim is to separate the functionality into two different classes. The class with DBus slots should be running as a daemon which is invoked on startup.<br>The class with QWidget (config screen) should be invoked when user launches the app from the applications menu. Think on the lines of AutoDisconnect. <br><br>What is the best way to achieve this? Let me know if you want me to post more code.<br><br><br>Thanks & Regards,<br>Sudheer                                            <br /><hr />The New Busy is not the old busy. Search, chat and e-mail from your inbox. <a href='http://www.windowslive.com/campaign/thenewbusy?ocid=PID28326::T:WLMTAGL:ON:WL:en-US:WM_HMP:042010_3' target='_new'>Get started.</a></body>
</html>