S60: Add startup logic for Bluetooth to the project/run configuration

Prepare trk::Launcher to deal with a shared trkdevice.
Add encapsulation for the rfcomm listener process and helper
classes for prompting the user to connect the Bluetooth
device. Add a command line prompt to the trklauncher test.
This commit is contained in:
Friedemann Kleint
2009-10-23 18:00:20 +02:00
parent d35dcd8dbe
commit 1af61fefa8
19 changed files with 1132 additions and 83 deletions

View File

@@ -82,3 +82,14 @@ void MessageManager::printToOutputPane(const QString &text, bool bringToForegrou
m_messageOutputWindow->popup(false);
m_messageOutputWindow->append(text);
}
void MessageManager::printToOutputPanePopup(const QString &text)
{
printToOutputPane(text, true);
}
void MessageManager::printToOutputPane(const QString &text)
{
printToOutputPane(text, false);
}