Mercurial > libervia-desktop-kivy
annotate cagou/plugins/plugin_wid_chat.kv @ 132:7ad965999d47
plugin chat: draw a background for avatars
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 06 Apr 2018 16:13:08 +0200 |
parents | 36fc269e2a32 |
children | c3aa71daceb8 |
rev | line source |
---|---|
22 | 1 # Cagou: desktop/mobile frontend for Salut à Toi XMPP client |
126 | 2 # Copyright (C) 2016-2018 Jérôme Poisson (goffi@goffi.org) |
22 | 3 |
4 # This program is free software: you can redistribute it and/or modify | |
5 # it under the terms of the GNU Affero General Public License as published by | |
6 # the Free Software Foundation, either version 3 of the License, or | |
7 # (at your option) any later version. | |
8 | |
9 # This program is distributed in the hope that it will be useful, | |
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 # GNU Affero General Public License for more details. | |
13 | |
14 # You should have received a copy of the GNU Affero General Public License | |
15 # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
16 | |
97
5d2289127bb7
menu (upload): better menu using dedicated widget:
Goffi <goffi@goffi.org>
parents:
86
diff
changeset
|
17 #:import TransferMenu cagou.core.menu.TransferMenu |
106
9909ed7a7a20
moved SimpleXHTMLWidget to a dedicated module
Goffi <goffi@goffi.org>
parents:
105
diff
changeset
|
18 #:import SimpleXHTMLWidget cagou.core.simple_xhtml.SimpleXHTMLWidget |
104
663e44f30092
chat: added gettext call for hint_text in input
Goffi <goffi@goffi.org>
parents:
103
diff
changeset
|
19 #:import _ sat.core.i18n._ |
116
8576d70ff803
chat: message header is hidden for info messages
Goffi <goffi@goffi.org>
parents:
106
diff
changeset
|
20 #:import C cagou.core.constants.Const |
97
5d2289127bb7
menu (upload): better menu using dedicated widget:
Goffi <goffi@goffi.org>
parents:
86
diff
changeset
|
21 |
44
7819e9efa250
chat: avatar and nick are now displayed, need further aesthetic improvments
Goffi <goffi@goffi.org>
parents:
31
diff
changeset
|
22 |
7819e9efa250
chat: avatar and nick are now displayed, need further aesthetic improvments
Goffi <goffi@goffi.org>
parents:
31
diff
changeset
|
23 <MessAvatar>: |
7819e9efa250
chat: avatar and nick are now displayed, need further aesthetic improvments
Goffi <goffi@goffi.org>
parents:
31
diff
changeset
|
24 size_hint: None, None |
7819e9efa250
chat: avatar and nick are now displayed, need further aesthetic improvments
Goffi <goffi@goffi.org>
parents:
31
diff
changeset
|
25 size: dp(30), dp(30) |
132
7ad965999d47
plugin chat: draw a background for avatars
Goffi <goffi@goffi.org>
parents:
131
diff
changeset
|
26 canvas.before: |
7ad965999d47
plugin chat: draw a background for avatars
Goffi <goffi@goffi.org>
parents:
131
diff
changeset
|
27 Color: |
7ad965999d47
plugin chat: draw a background for avatars
Goffi <goffi@goffi.org>
parents:
131
diff
changeset
|
28 rgba: (0.87,0.87,0.87,1) |
7ad965999d47
plugin chat: draw a background for avatars
Goffi <goffi@goffi.org>
parents:
131
diff
changeset
|
29 RoundedRectangle: |
7ad965999d47
plugin chat: draw a background for avatars
Goffi <goffi@goffi.org>
parents:
131
diff
changeset
|
30 radius: [dp(5)] |
7ad965999d47
plugin chat: draw a background for avatars
Goffi <goffi@goffi.org>
parents:
131
diff
changeset
|
31 pos: self.pos |
7ad965999d47
plugin chat: draw a background for avatars
Goffi <goffi@goffi.org>
parents:
131
diff
changeset
|
32 size: self.size |
44
7819e9efa250
chat: avatar and nick are now displayed, need further aesthetic improvments
Goffi <goffi@goffi.org>
parents:
31
diff
changeset
|
33 |
22 | 34 <MessagesWidget>: |
45 | 35 cols: 1 |
36 padding: dp(10) | |
37 spacing: dp(5) | |
38 size_hint: 1, None | |
39 height: self.minimum_height | |
131
36fc269e2a32
core: changed default background color to white
Goffi <goffi@goffi.org>
parents:
126
diff
changeset
|
40 canvas.before: |
36fc269e2a32
core: changed default background color to white
Goffi <goffi@goffi.org>
parents:
126
diff
changeset
|
41 Color: |
36fc269e2a32
core: changed default background color to white
Goffi <goffi@goffi.org>
parents:
126
diff
changeset
|
42 rgba: 1, 1, 1, 1 |
36fc269e2a32
core: changed default background color to white
Goffi <goffi@goffi.org>
parents:
126
diff
changeset
|
43 Rectangle: |
36fc269e2a32
core: changed default background color to white
Goffi <goffi@goffi.org>
parents:
126
diff
changeset
|
44 pos: self.pos |
36fc269e2a32
core: changed default background color to white
Goffi <goffi@goffi.org>
parents:
126
diff
changeset
|
45 size: self.size |
22 | 46 |
47 <MessageWidget>: | |
45 | 48 cols: 1 |
57 | 49 mess_xhtml: mess_xhtml |
45 | 50 padding: dp(10) |
51 spacing: dp(5) | |
24
bc15b55a4114
chat: better bubble and time resizing
Goffi <goffi@goffi.org>
parents:
23
diff
changeset
|
52 size_hint: 1, None |
45 | 53 height: self.minimum_height |
54 on_width: self.widthAdjust() | |
47
abb81efef3bb
chat: update avatar following quick frontend improvments
Goffi <goffi@goffi.org>
parents:
45
diff
changeset
|
55 avatar: avatar |
103
c601e3d40342
chat: display delivery receipt (with a green check mark)
Goffi <goffi@goffi.org>
parents:
97
diff
changeset
|
56 delivery: delivery |
45 | 57 BoxLayout: |
58 id: header_box | |
59 size_hint: 1, None | |
116
8576d70ff803
chat: message header is hidden for info messages
Goffi <goffi@goffi.org>
parents:
106
diff
changeset
|
60 height: avatar.height if root.mess_data.type != C.MESS_TYPE_INFO else 0 |
8576d70ff803
chat: message header is hidden for info messages
Goffi <goffi@goffi.org>
parents:
106
diff
changeset
|
61 opacity: 1 if root.mess_data.type != C.MESS_TYPE_INFO else 0 |
45 | 62 MessAvatar: |
63 id: avatar | |
44
7819e9efa250
chat: avatar and nick are now displayed, need further aesthetic improvments
Goffi <goffi@goffi.org>
parents:
31
diff
changeset
|
64 Label: |
7819e9efa250
chat: avatar and nick are now displayed, need further aesthetic improvments
Goffi <goffi@goffi.org>
parents:
31
diff
changeset
|
65 id: time_label |
131
36fc269e2a32
core: changed default background color to white
Goffi <goffi@goffi.org>
parents:
126
diff
changeset
|
66 color: (0, 0, 0, 1) if root.mess_data.own_mess else (0.55,0.55,0.55,1) |
44
7819e9efa250
chat: avatar and nick are now displayed, need further aesthetic improvments
Goffi <goffi@goffi.org>
parents:
31
diff
changeset
|
67 text_size: None, None |
45 | 68 size_hint: None, None |
69 size: self.texture_size | |
70 padding: dp(5), 0 | |
71 text: u"{}, {}".format(root.mess_data.nick, root.mess_data.time_text) | |
103
c601e3d40342
chat: display delivery receipt (with a green check mark)
Goffi <goffi@goffi.org>
parents:
97
diff
changeset
|
72 Label: |
c601e3d40342
chat: display delivery receipt (with a green check mark)
Goffi <goffi@goffi.org>
parents:
97
diff
changeset
|
73 id: delivery |
c601e3d40342
chat: display delivery receipt (with a green check mark)
Goffi <goffi@goffi.org>
parents:
97
diff
changeset
|
74 text_size: None, None |
c601e3d40342
chat: display delivery receipt (with a green check mark)
Goffi <goffi@goffi.org>
parents:
97
diff
changeset
|
75 size_hint: None, None |
c601e3d40342
chat: display delivery receipt (with a green check mark)
Goffi <goffi@goffi.org>
parents:
97
diff
changeset
|
76 size: self.texture_size |
c601e3d40342
chat: display delivery receipt (with a green check mark)
Goffi <goffi@goffi.org>
parents:
97
diff
changeset
|
77 padding: dp(5), 0 |
c601e3d40342
chat: display delivery receipt (with a green check mark)
Goffi <goffi@goffi.org>
parents:
97
diff
changeset
|
78 # XXX: DejaVuSans font is needed as check mark is not in Roboto |
c601e3d40342
chat: display delivery receipt (with a green check mark)
Goffi <goffi@goffi.org>
parents:
97
diff
changeset
|
79 # this can be removed when Kivy will be able to handle fallback mechanism |
c601e3d40342
chat: display delivery receipt (with a green check mark)
Goffi <goffi@goffi.org>
parents:
97
diff
changeset
|
80 # which will allow us to use fonts with more unicode characters |
c601e3d40342
chat: display delivery receipt (with a green check mark)
Goffi <goffi@goffi.org>
parents:
97
diff
changeset
|
81 font_name: "DejaVuSans" |
c601e3d40342
chat: display delivery receipt (with a green check mark)
Goffi <goffi@goffi.org>
parents:
97
diff
changeset
|
82 text: u'' |
c601e3d40342
chat: display delivery receipt (with a green check mark)
Goffi <goffi@goffi.org>
parents:
97
diff
changeset
|
83 color: 0, 1, 0, 1 |
22 | 84 BoxLayout: |
45 | 85 # BoxLayout is needed here, else GridLayout won't let the Label choose its width |
86 size_hint: 1, None | |
57 | 87 height: mess_xhtml.height |
45 | 88 on_size: root.widthAdjust() |
57 | 89 SimpleXHTMLWidget: |
90 id: mess_xhtml | |
58
7aa2ffff9067
chat: <img/> tag handling first draft:
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
91 size_hint: 0.8, None |
7aa2ffff9067
chat: <img/> tag handling first draft:
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
92 height: self.minimum_height |
57 | 93 xhtml: root.message_xhtml or self.escape(root.message or u' ') |
45 | 94 color: (0.74,0.74,0.24,1) if root.mess_data.type == "info" else (0, 0, 0, 1) |
95 padding: root.mess_padding | |
96 bold: True if root.mess_data.type == "info" else False | |
97 | |
86 | 98 <Chat>: |
99 messages_widget: messages_widget | |
100 ScrollView: | |
101 size_hint: 1, 0.8 | |
102 scroll_y: 0 | |
103 do_scroll_x: False | |
104 MessagesWidget: | |
105 id: messages_widget | |
106 MessageInputBox: | |
78 | 107 size_hint: 1, None |
86 | 108 height: dp(40) |
109 message_input: message_input | |
110 MessageInputWidget: | |
111 id: message_input | |
112 size_hint: 1, 1 | |
104
663e44f30092
chat: added gettext call for hint_text in input
Goffi <goffi@goffi.org>
parents:
103
diff
changeset
|
113 hint_text: _(u"Enter your message here") |
86 | 114 on_text_validate: root.onSend(args[0]) |
115 IconButton | |
97
5d2289127bb7
menu (upload): better menu using dedicated widget:
Goffi <goffi@goffi.org>
parents:
86
diff
changeset
|
116 # transfer button |
86 | 117 source: app.expand("{media}/icons/tango/actions/32/list-add.png") |
118 allow_stretch: True | |
119 size_hint: None, 1 | |
120 width: max(self.texture_size[0], dp(40)) | |
97
5d2289127bb7
menu (upload): better menu using dedicated widget:
Goffi <goffi@goffi.org>
parents:
86
diff
changeset
|
121 on_release: TransferMenu(callback=root.onTransferOK).show(self) |
117 | 122 |
123 <EncryptionButton>: | |
124 size_hint: None, 1 | |
125 width: dp(30) | |
122
dcd6fbb3f010
chat: handle new OTR state signal and change encryption icon consequently
Goffi <goffi@goffi.org>
parents:
117
diff
changeset
|
126 allow_stretch: True |
dcd6fbb3f010
chat: handle new OTR state signal and change encryption icon consequently
Goffi <goffi@goffi.org>
parents:
117
diff
changeset
|
127 source: self.getIconSource() |
117 | 128 |
129 <OtrButton@Button>: | |
130 size_hint: None, None | |
131 size: self.texture_size | |
122
dcd6fbb3f010
chat: handle new OTR state signal and change encryption icon consequently
Goffi <goffi@goffi.org>
parents:
117
diff
changeset
|
132 padding: dp(5), dp(10) |
117 | 133 |
134 <OtrMenu>: | |
135 size_hint_x: None | |
136 width: start_btn.width | |
137 auto_width: False | |
138 canvas.before: | |
139 Color: | |
140 rgba: 0, 0, 0, 1 | |
141 Rectangle: | |
142 pos: self.pos | |
143 size: self.size | |
144 OtrButton: | |
145 id: start_btn | |
146 text: _(u"Start/Refresh encrypted session") | |
147 on_release: root.otr_start() | |
148 OtrButton: | |
149 text: _(u"Finish encrypted session") | |
150 on_release: root.otr_end() | |
151 OtrButton: | |
152 text: _(u"Authenticate destinee") | |
153 on_release: root.otr_authenticate() |