-
Notifications
You must be signed in to change notification settings - Fork 244
Expand file tree
/
Copy pathchatdlg.cpp
More file actions
169 lines (143 loc) · 7.11 KB
/
chatdlg.cpp
File metadata and controls
169 lines (143 loc) · 7.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
/******************************************************************************\
* Copyright (c) 2004-2026
*
* Author(s):
* Volker Fischer
*
******************************************************************************
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*
\******************************************************************************/
#include "chatdlg.h"
/* Implementation *************************************************************/
CChatDlg::CChatDlg ( QWidget* parent ) : CBaseDlg ( parent, Qt::Window ) // use Qt::Window to get min/max window buttons
{
setupUi ( this );
// Add help text to controls -----------------------------------------------
// chat window
txvChatWindow->setWhatsThis ( "<b>" + tr ( "Chat Window" ) + ":</b> " + tr ( "The chat window shows a history of all chat messages." ) );
txvChatWindow->setAccessibleName ( tr ( "Chat history" ) );
// input message text
edtLocalInputText->setWhatsThis ( "<b>" + tr ( "Input Message Text" ) + ":</b> " +
tr ( "Enter the chat message text in the edit box and press enter to send the "
"message to the server which distributes the message to all connected "
"clients. Your message will then show up in the chat window." ) );
edtLocalInputText->setAccessibleName ( tr ( "New chat text edit box" ) );
// clear chat window and edit line
txvChatWindow->clear();
edtLocalInputText->clear();
// we do not want to show a cursor in the chat history
txvChatWindow->setCursorWidth ( 0 );
// set a placeholder text to make sure where to type the message in (#384)
edtLocalInputText->setPlaceholderText ( tr ( "Type a message here" ) );
// Menu -------------------------------------------------------------------
QMenuBar* pMenu = new QMenuBar ( this );
QMenu* pEditMenu = new QMenu ( tr ( "&Edit" ), this );
pEditMenu->addAction ( tr ( "Cl&ear Chat History" ), this, SLOT ( OnClearChatHistory() ), QKeySequence ( Qt::CTRL + Qt::Key_E ) );
pMenu->addMenu ( pEditMenu );
#if defined( Q_OS_IOS )
QAction* closeAction = pMenu->addAction ( tr ( "&Close" ) );
#endif
#if defined( ANDROID ) || defined( Q_OS_ANDROID )
pEditMenu->addAction ( tr ( "&Close" ), this, SLOT ( OnCloseClicked() ), QKeySequence ( Qt::CTRL + Qt::Key_W ) );
#endif
// Now tell the layout about the menu
layout()->setMenuBar ( pMenu );
// Connections -------------------------------------------------------------
QObject::connect ( edtLocalInputText, &QLineEdit::textChanged, this, &CChatDlg::OnLocalInputTextTextChanged );
QObject::connect ( butSend, &QPushButton::clicked, this, &CChatDlg::OnSendText );
QObject::connect ( txvChatWindow, &QTextBrowser::anchorClicked, this, &CChatDlg::OnAnchorClicked );
#if defined( Q_OS_IOS )
QObject::connect ( closeAction, &QAction::triggered, this, &CChatDlg::OnCloseClicked );
#endif
}
void CChatDlg::OnLocalInputTextTextChanged ( const QString& strNewText )
{
// check and correct length
if ( strNewText.length() > MAX_LEN_CHAT_TEXT )
{
// text is too long, update control with shortened text
edtLocalInputText->setText ( strNewText.left ( MAX_LEN_CHAT_TEXT ) );
}
}
void CChatDlg::OnSendText()
{
// send new text and clear line afterwards, do not send an empty message
if ( !edtLocalInputText->text().isEmpty() )
{
emit NewLocalInputText ( edtLocalInputText->text() );
edtLocalInputText->clear();
}
}
void CChatDlg::OnClearChatHistory()
{
// clear chat window
txvChatWindow->clear();
}
void CChatDlg::AddChatText ( QString strChatText )
{
// notify accessibility plugin that text has changed
QAccessible::updateAccessibility ( new QAccessibleValueChangeEvent ( txvChatWindow, strChatText ) );
// analyze strChatText to check if hyperlink (limit ourselves to http(s)://) but do not
// replace the hyperlinks if any HTML code for a hyperlink was found (the user has done the HTML
// coding hisself and we should not mess with that)
if ( !strChatText.contains ( QRegularExpression ( "href\\s*=|src\\s*=" ) ) )
{
// searches for all occurrences of http(s) and cuts until a space (\S matches any non-white-space
// character and the + means that matches the previous element one or more times.)
// This regex now contains three parts:
// - https?://\\S+ matches as much non-whitespace as possible after the http:// or https://,
// subject to the next two parts, which exclude terminating punctuation
// - (?<![!\"'()+,.:;<=>?\\[\\]{}]) is a negative look-behind assertion that disallows the match
// from ending with one of the characters !"'()+,.:;<=>?[]{}
// - (?<!\\?[!\"'()+,.:;<=>?\\[\\]{}]) is a negative look-behind assertion that disallows the match
// from ending with a ? followed by one of the characters !"'()+,.:;<=>?[]{}
// These last two parts must be separate, as a look-behind assertion must be fixed length.
#define PUNCT_NOEND_URL "[!\"'()+,.:;<=>?\\[\\]{}]"
strChatText.replace ( QRegularExpression ( "(https?://\\S+(?<!" PUNCT_NOEND_URL ")(?<!\\?" PUNCT_NOEND_URL "))" ),
"<a href=\"\\1\">\\1</a>" );
}
// add new text in chat window
txvChatWindow->append ( strChatText );
}
void CChatDlg::OnAnchorClicked ( const QUrl& Url )
{
// only allow http(s) URLs to be opened in an external browser
if ( Url.scheme() == QLatin1String ( "https" ) || Url.scheme() == QLatin1String ( "http" ) )
{
if ( QMessageBox::question ( this,
APP_NAME,
tr ( "Do you want to open the link '%1' in your browser?" ).arg ( "<b>" + Url.toString() + "</b>" ),
QMessageBox::Yes | QMessageBox::No ) == QMessageBox::Yes )
{
QDesktopServices::openUrl ( Url );
}
}
}
#if defined( Q_OS_IOS ) || defined( ANDROID ) || defined( Q_OS_ANDROID )
void CChatDlg::OnCloseClicked()
{
// on mobile add a close button or menu entry
# if defined( Q_OS_IOS )
// On Qt6, iOS crashes if we call close() due to unknown reasons, therefore we just hide() the dialog. A Qt bug is suspected.
// Checkout https://github.com/jamulussoftware/jamulus/pull/3413
hide();
# endif
# if defined( ANDROID ) || defined( Q_OS_ANDROID )
close();
# endif
}
#endif