Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vmj-qt
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
vmj-qt
Commits
294595b3
Commit
294595b3
authored
Jun 08, 2022
by
Tijmen de Mes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed text for starting chat session
parent
cb06b58f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
chatwindow.py
blink/chatwindow.py
+1
-1
contacts.py
blink/contacts.py
+4
-4
No files found.
blink/chatwindow.py
View file @
294595b3
...
@@ -1662,7 +1662,7 @@ class ChatWindow(base_class, ui_class, ColorHelperMixin):
...
@@ -1662,7 +1662,7 @@ class ChatWindow(base_class, ui_class, ColorHelperMixin):
self
.
control_menu
=
QMenu
(
self
.
control_button
)
self
.
control_menu
=
QMenu
(
self
.
control_button
)
self
.
control_button
.
setMenu
(
self
.
control_menu
)
self
.
control_button
.
setMenu
(
self
.
control_menu
)
self
.
control_button
.
actions
=
ContextMenuActions
()
self
.
control_button
.
actions
=
ContextMenuActions
()
self
.
control_button
.
actions
.
connect
=
QAction
(
"Start
MSRP
chat session"
,
self
,
triggered
=
self
.
_AH_Connect
)
self
.
control_button
.
actions
.
connect
=
QAction
(
"Start
real time
chat session"
,
self
,
triggered
=
self
.
_AH_Connect
)
self
.
control_button
.
actions
.
connect_with_audio
=
QAction
(
"Start audio call"
,
self
,
triggered
=
self
.
_AH_ConnectWithAudio
)
self
.
control_button
.
actions
.
connect_with_audio
=
QAction
(
"Start audio call"
,
self
,
triggered
=
self
.
_AH_ConnectWithAudio
)
self
.
control_button
.
actions
.
connect_with_video
=
QAction
(
"Start video call"
,
self
,
triggered
=
self
.
_AH_ConnectWithVideo
)
self
.
control_button
.
actions
.
connect_with_video
=
QAction
(
"Start video call"
,
self
,
triggered
=
self
.
_AH_ConnectWithVideo
)
self
.
control_button
.
actions
.
disconnect
=
QAction
(
"Disconnect"
,
self
,
triggered
=
self
.
_AH_Disconnect
)
self
.
control_button
.
actions
.
disconnect
=
QAction
(
"Disconnect"
,
self
,
triggered
=
self
.
_AH_Disconnect
)
...
...
blink/contacts.py
View file @
294595b3
...
@@ -3122,7 +3122,7 @@ class ContactListView(QListView):
...
@@ -3122,7 +3122,7 @@ class ContactListView(QListView):
self
.
actions
.
undo_last_delete
=
QAction
(
"Undo Last Delete"
,
self
,
triggered
=
self
.
_AH_UndoLastDelete
)
self
.
actions
.
undo_last_delete
=
QAction
(
"Undo Last Delete"
,
self
,
triggered
=
self
.
_AH_UndoLastDelete
)
self
.
actions
.
start_audio_call
=
QAction
(
"Start Audio Call"
,
self
,
triggered
=
self
.
_AH_StartAudioCall
)
self
.
actions
.
start_audio_call
=
QAction
(
"Start Audio Call"
,
self
,
triggered
=
self
.
_AH_StartAudioCall
)
self
.
actions
.
start_video_call
=
QAction
(
"Start Video Call"
,
self
,
triggered
=
self
.
_AH_StartVideoCall
)
self
.
actions
.
start_video_call
=
QAction
(
"Start Video Call"
,
self
,
triggered
=
self
.
_AH_StartVideoCall
)
self
.
actions
.
start_chat_session
=
QAction
(
"Start
MSRP
Chat Session"
,
self
,
triggered
=
self
.
_AH_StartChatSession
)
self
.
actions
.
start_chat_session
=
QAction
(
"Start
Real Time
Chat Session"
,
self
,
triggered
=
self
.
_AH_StartChatSession
)
self
.
actions
.
send_sms
=
QAction
(
"Send Messages"
,
self
,
triggered
=
self
.
_AH_SendSMS
)
self
.
actions
.
send_sms
=
QAction
(
"Send Messages"
,
self
,
triggered
=
self
.
_AH_SendSMS
)
self
.
actions
.
send_files
=
QAction
(
"Send File(s)..."
,
self
,
triggered
=
self
.
_AH_SendFiles
)
self
.
actions
.
send_files
=
QAction
(
"Send File(s)..."
,
self
,
triggered
=
self
.
_AH_SendFiles
)
self
.
actions
.
request_screen
=
QAction
(
"Request Screen"
,
self
,
triggered
=
self
.
_AH_RequestScreen
)
self
.
actions
.
request_screen
=
QAction
(
"Request Screen"
,
self
,
triggered
=
self
.
_AH_RequestScreen
)
...
@@ -3225,7 +3225,7 @@ class ContactListView(QListView):
...
@@ -3225,7 +3225,7 @@ class ContactListView(QListView):
call_item
.
triggered
.
connect
(
partial
(
self
.
_AH_SendSMS
,
uri
))
call_item
.
triggered
.
connect
(
partial
(
self
.
_AH_SendSMS
,
uri
))
call_submenu
.
addAction
(
call_item
)
call_submenu
.
addAction
(
call_item
)
call_submenu
=
menu
.
addMenu
(
'Start
MSRP
Chat Session'
)
call_submenu
=
menu
.
addMenu
(
'Start
Real Time
Chat Session'
)
for
uri
in
contact
.
uris
:
for
uri
in
contact
.
uris
:
uri_text
=
'
%
s (
%
s)'
%
(
uri
.
uri
,
uri
.
type
)
if
uri
.
type
not
in
(
'SIP'
,
'Other'
)
else
uri
.
uri
uri_text
=
'
%
s (
%
s)'
%
(
uri
.
uri
,
uri
.
type
)
if
uri
.
type
not
in
(
'SIP'
,
'Other'
)
else
uri
.
uri
call_item
=
QAction
(
uri_text
,
self
)
call_item
=
QAction
(
uri_text
,
self
)
...
@@ -3659,7 +3659,7 @@ class ContactSearchListView(QListView):
...
@@ -3659,7 +3659,7 @@ class ContactSearchListView(QListView):
self
.
actions
.
undo_last_delete
=
QAction
(
"Undo Last Delete"
,
self
,
triggered
=
self
.
_AH_UndoLastDelete
)
self
.
actions
.
undo_last_delete
=
QAction
(
"Undo Last Delete"
,
self
,
triggered
=
self
.
_AH_UndoLastDelete
)
self
.
actions
.
start_audio_call
=
QAction
(
"Start Audio Call"
,
self
,
triggered
=
self
.
_AH_StartAudioCall
)
self
.
actions
.
start_audio_call
=
QAction
(
"Start Audio Call"
,
self
,
triggered
=
self
.
_AH_StartAudioCall
)
self
.
actions
.
start_video_call
=
QAction
(
"Start Video Call"
,
self
,
triggered
=
self
.
_AH_StartVideoCall
)
self
.
actions
.
start_video_call
=
QAction
(
"Start Video Call"
,
self
,
triggered
=
self
.
_AH_StartVideoCall
)
self
.
actions
.
start_chat_session
=
QAction
(
"Start
MSRP
Chat Session"
,
self
,
triggered
=
self
.
_AH_StartChatSession
)
self
.
actions
.
start_chat_session
=
QAction
(
"Start
Real Time
Chat Session"
,
self
,
triggered
=
self
.
_AH_StartChatSession
)
self
.
actions
.
send_sms
=
QAction
(
"Send Messages"
,
self
,
triggered
=
self
.
_AH_SendSMS
)
self
.
actions
.
send_sms
=
QAction
(
"Send Messages"
,
self
,
triggered
=
self
.
_AH_SendSMS
)
self
.
actions
.
send_files
=
QAction
(
"Send File(s)..."
,
self
,
triggered
=
self
.
_AH_SendFiles
)
self
.
actions
.
send_files
=
QAction
(
"Send File(s)..."
,
self
,
triggered
=
self
.
_AH_SendFiles
)
self
.
actions
.
request_screen
=
QAction
(
"Request Screen"
,
self
,
triggered
=
self
.
_AH_RequestScreen
)
self
.
actions
.
request_screen
=
QAction
(
"Request Screen"
,
self
,
triggered
=
self
.
_AH_RequestScreen
)
...
@@ -4006,7 +4006,7 @@ class ContactDetailView(QListView):
...
@@ -4006,7 +4006,7 @@ class ContactDetailView(QListView):
self
.
actions
.
make_uri_default
=
QAction
(
"Set Address As Default"
,
self
,
triggered
=
self
.
_AH_MakeURIDefault
)
self
.
actions
.
make_uri_default
=
QAction
(
"Set Address As Default"
,
self
,
triggered
=
self
.
_AH_MakeURIDefault
)
self
.
actions
.
start_audio_call
=
QAction
(
"Start Audio Call"
,
self
,
triggered
=
self
.
_AH_StartAudioCall
)
self
.
actions
.
start_audio_call
=
QAction
(
"Start Audio Call"
,
self
,
triggered
=
self
.
_AH_StartAudioCall
)
self
.
actions
.
start_video_call
=
QAction
(
"Start Video Call"
,
self
,
triggered
=
self
.
_AH_StartVideoCall
)
self
.
actions
.
start_video_call
=
QAction
(
"Start Video Call"
,
self
,
triggered
=
self
.
_AH_StartVideoCall
)
self
.
actions
.
start_chat_session
=
QAction
(
"Start
MSRP
Chat Session"
,
self
,
triggered
=
self
.
_AH_StartChatSession
)
self
.
actions
.
start_chat_session
=
QAction
(
"Start
Real Time
Chat Session"
,
self
,
triggered
=
self
.
_AH_StartChatSession
)
self
.
actions
.
send_sms
=
QAction
(
"Send Messages"
,
self
,
triggered
=
self
.
_AH_SendSMS
)
self
.
actions
.
send_sms
=
QAction
(
"Send Messages"
,
self
,
triggered
=
self
.
_AH_SendSMS
)
self
.
actions
.
send_files
=
QAction
(
"Send File(s)..."
,
self
,
triggered
=
self
.
_AH_SendFiles
)
self
.
actions
.
send_files
=
QAction
(
"Send File(s)..."
,
self
,
triggered
=
self
.
_AH_SendFiles
)
self
.
actions
.
request_screen
=
QAction
(
"Request Screen"
,
self
,
triggered
=
self
.
_AH_RequestScreen
)
self
.
actions
.
request_screen
=
QAction
(
"Request Screen"
,
self
,
triggered
=
self
.
_AH_RequestScreen
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment