Finalized voice vatlib implementation.

refs #36
- Implemented the rest of the methods
- Added more commands to the voice sample, to login to voice server
- Login successfull. However, no voice yet.

refs #81
This commit is contained in:
Roland Winklmeier
2013-12-01 01:53:26 +01:00
committed by Mathew Sutcliffe
parent f91525b65b
commit 45b9f60444
5 changed files with 304 additions and 61 deletions

View File

@@ -29,12 +29,19 @@ private: //commands
void exit(QTextStream &args);
void runSquelchTest(QTextStream &args);
void runMicTest(QTextStream &args);
void setCallsignCmd(QTextStream &args);
void initiateConnectionCmd(QTextStream &args);
void terminateConnectionCmd(QTextStream &args);
void printLinePrefix();
public slots:
void onSquelchTestFinished();
void onMicTestFinished();
private slots:
void connectionStatusConnected();
void connectionStatusDisconnected();
private:
QMap<QString, std::function<void(QTextStream &)>> m_commands;