Home
last modified time | relevance | path

Searched refs:strChatText (Results 1 – 10 of 10) sorted by relevance

/dports/audio/jamulus/jamulus-r3_8_1/src/
H A Dchatdlg.cpp109 void CChatDlg::AddChatText ( QString strChatText ) in AddChatText() argument
112 …QAccessible::updateAccessibility ( new QAccessibleValueChangeEvent ( txvChatWindow, strChatText ) … in AddChatText()
117 if ( !strChatText.contains ( QRegExp ( "href\\s*=|src\\s*=" ) ) ) in AddChatText()
121 strChatText.replace ( QRegExp ( "(https?://\\S+)" ), "<a href=\"\\1\">\\1</a>" ); in AddChatText()
125 txvChatWindow->append ( strChatText ); in AddChatText()
H A Dclientdlg.h184 void OnChatTextReceived ( QString strChatText );
192 void OnNewLocalInputText ( QString strChatText ) { pClient->CreateChatTextMes ( strChatText ); } in OnNewLocalInputText() argument
H A Dchannel.h156 …void CreateChatTextMes ( const QString& strChatText ) { Protocol.CreateChatTextMes ( strChatText )… in CreateChatTextMes() argument
278 void ChatTextReceived ( QString strChatText );
H A Dserver.h128 …void OnChatTextReceivedCh ( QString strChatText ) { CreateAndSendChatTextForAllConChannels ( slotI… in OnChatTextReceivedCh() argument
139 …id CreateAndSendChatTextForAllConChannels ( const int iCurChanID, const QString& strChatText ) = 0;
271 …l void CreateAndSendChatTextForAllConChannels ( const int iCurChanID, const QString& strChatText );
H A Dclient.h246 …void CreateChatTextMes ( const QString& strChatText ) { Channel.CreateChatTextMes ( strChatText );… in CreateChatTextMes() argument
396 void ChatTextReceived ( QString strChatText );
H A Dchatdlg.h49 void AddChatText ( QString strChatText );
H A Dprotocol.h122 void CreateChatTextMes ( const QString strChatText );
307 void ChatTextReceived ( QString strChatText );
H A Dprotocol.cpp1339 void CProtocol::CreateChatTextMes ( const QString strChatText ) in CreateChatTextMes() argument
1344 const QByteArray strUTF8ChatText = strChatText.toUtf8(); in CreateChatTextMes()
1365 QString strChatText; in EvaluateChatTextMes() local
1366 if ( GetStringFromStream ( vecData, iPos, MAX_LEN_CHAT_TEXT_PLUS_HTML, strChatText ) ) in EvaluateChatTextMes()
1378 emit ChatTextReceived ( strChatText ); in EvaluateChatTextMes()
H A Dclientdlg.cpp812 void CClientDlg::OnChatTextReceived ( QString strChatText ) in OnChatTextReceived() argument
814 ChatDlg.AddChatText ( strChatText ); in OnChatTextReceived()
820 ShowChatWindow ( ( strChatText.indexOf ( WELCOME_MESSAGE_PREFIX ) == 0 ) ); in OnChatTextReceived()
H A Dserver.cpp1422 …Server::CreateAndSendChatTextForAllConChannels ( const int iCurChanID, const QString& strChatText ) in CreateAndSendChatTextForAllConChannels() argument
1433 … ChanName.toHtmlEscaped() + "</b></font> " + strChatText.toHtmlEscaped(); in CreateAndSendChatTextForAllConChannels()