Mercurial > libervia-desktop-kivy
annotate cagou/plugins/plugin_wid_chat.kv @ 167:ffef21fd97a2
chat: allow to scroll using side bar + increased bar size
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 28 Apr 2018 15:40:29 +0200 |
parents | e0985834f8eb |
children | ab3f5173ef5c |
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 |
133
c3aa71daceb8
plugin chat: use bold for nicknames in messages headers
Goffi <goffi@goffi.org>
parents:
132
diff
changeset
|
21 #:import escape kivy.utils.escape_markup |
97
5d2289127bb7
menu (upload): better menu using dedicated widget:
Goffi <goffi@goffi.org>
parents:
86
diff
changeset
|
22 |
44
7819e9efa250
chat: avatar and nick are now displayed, need further aesthetic improvments
Goffi <goffi@goffi.org>
parents:
31
diff
changeset
|
23 |
7819e9efa250
chat: avatar and nick are now displayed, need further aesthetic improvments
Goffi <goffi@goffi.org>
parents:
31
diff
changeset
|
24 <MessAvatar>: |
7819e9efa250
chat: avatar and nick are now displayed, need further aesthetic improvments
Goffi <goffi@goffi.org>
parents:
31
diff
changeset
|
25 size_hint: None, None |
7819e9efa250
chat: avatar and nick are now displayed, need further aesthetic improvments
Goffi <goffi@goffi.org>
parents:
31
diff
changeset
|
26 size: dp(30), dp(30) |
132
7ad965999d47
plugin chat: draw a background for avatars
Goffi <goffi@goffi.org>
parents:
131
diff
changeset
|
27 canvas.before: |
7ad965999d47
plugin chat: draw a background for avatars
Goffi <goffi@goffi.org>
parents:
131
diff
changeset
|
28 Color: |
7ad965999d47
plugin chat: draw a background for avatars
Goffi <goffi@goffi.org>
parents:
131
diff
changeset
|
29 rgba: (0.87,0.87,0.87,1) |
7ad965999d47
plugin chat: draw a background for avatars
Goffi <goffi@goffi.org>
parents:
131
diff
changeset
|
30 RoundedRectangle: |
7ad965999d47
plugin chat: draw a background for avatars
Goffi <goffi@goffi.org>
parents:
131
diff
changeset
|
31 radius: [dp(5)] |
7ad965999d47
plugin chat: draw a background for avatars
Goffi <goffi@goffi.org>
parents:
131
diff
changeset
|
32 pos: self.pos |
7ad965999d47
plugin chat: draw a background for avatars
Goffi <goffi@goffi.org>
parents:
131
diff
changeset
|
33 size: self.size |
44
7819e9efa250
chat: avatar and nick are now displayed, need further aesthetic improvments
Goffi <goffi@goffi.org>
parents:
31
diff
changeset
|
34 |
22 | 35 <MessagesWidget>: |
45 | 36 cols: 1 |
37 padding: dp(10) | |
38 spacing: dp(5) | |
39 size_hint: 1, None | |
40 height: self.minimum_height | |
131
36fc269e2a32
core: changed default background color to white
Goffi <goffi@goffi.org>
parents:
126
diff
changeset
|
41 canvas.before: |
36fc269e2a32
core: changed default background color to white
Goffi <goffi@goffi.org>
parents:
126
diff
changeset
|
42 Color: |
36fc269e2a32
core: changed default background color to white
Goffi <goffi@goffi.org>
parents:
126
diff
changeset
|
43 rgba: 1, 1, 1, 1 |
36fc269e2a32
core: changed default background color to white
Goffi <goffi@goffi.org>
parents:
126
diff
changeset
|
44 Rectangle: |
36fc269e2a32
core: changed default background color to white
Goffi <goffi@goffi.org>
parents:
126
diff
changeset
|
45 pos: self.pos |
36fc269e2a32
core: changed default background color to white
Goffi <goffi@goffi.org>
parents:
126
diff
changeset
|
46 size: self.size |
22 | 47 |
48 <MessageWidget>: | |
24
bc15b55a4114
chat: better bubble and time resizing
Goffi <goffi@goffi.org>
parents:
23
diff
changeset
|
49 size_hint: 1, None |
138 | 50 height: right_part.minimum_height |
45 | 51 on_width: self.widthAdjust() |
47
abb81efef3bb
chat: update avatar following quick frontend improvments
Goffi <goffi@goffi.org>
parents:
45
diff
changeset
|
52 avatar: avatar |
103
c601e3d40342
chat: display delivery receipt (with a green check mark)
Goffi <goffi@goffi.org>
parents:
97
diff
changeset
|
53 delivery: delivery |
138 | 54 mess_xhtml: mess_xhtml |
45 | 55 BoxLayout: |
138 | 56 orientation: 'vertical' |
57 width: avatar.width | |
58 size_hint: None, 1 | |
45 | 59 MessAvatar: |
60 id: avatar | |
138 | 61 Widget: |
62 # use to push the avatar on the top | |
63 size_hint: 1, 1 | |
22 | 64 BoxLayout: |
138 | 65 orientation: 'vertical' |
66 id: right_part | |
67 BoxLayout: | |
68 id: header_box | |
69 size_hint: 1, None | |
70 height: time_label.height if root.mess_data.type != C.MESS_TYPE_INFO else 0 | |
71 opacity: 1 if root.mess_data.type != C.MESS_TYPE_INFO else 0 | |
72 Label: | |
73 id: time_label | |
74 color: (0, 0, 0, 1) if root.mess_data.own_mess else (0.55,0.55,0.55,1) | |
75 text_size: None, None | |
76 size_hint: None, None | |
77 size: self.texture_size | |
78 padding: dp(5), 0 | |
79 markup: True | |
80 valign: 'middle' | |
81 text: u"[b]{}[/b], {}".format(escape(root.mess_data.nick), root.mess_data.time_text) | |
82 Label: | |
83 id: delivery | |
84 text_size: None, None | |
85 size_hint: None, None | |
86 size: self.texture_size | |
87 padding: dp(5), 0 | |
88 # XXX: DejaVuSans font is needed as check mark is not in Roboto | |
89 # this can be removed when Kivy will be able to handle fallback mechanism | |
90 # which will allow us to use fonts with more unicode characters | |
91 font_name: "DejaVuSans" | |
92 text: u'' | |
93 color: 0.4, 0.4, 0.4, 1 | |
57 | 94 SimpleXHTMLWidget: |
95 id: mess_xhtml | |
138 | 96 size_hint: 1, None |
58
7aa2ffff9067
chat: <img/> tag handling first draft:
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
97 height: self.minimum_height |
57 | 98 xhtml: root.message_xhtml or self.escape(root.message or u' ') |
45 | 99 color: (0.74,0.74,0.24,1) if root.mess_data.type == "info" else (0, 0, 0, 1) |
100 padding: root.mess_padding | |
101 bold: True if root.mess_data.type == "info" else False | |
102 | |
86 | 103 <Chat>: |
104 messages_widget: messages_widget | |
105 ScrollView: | |
106 size_hint: 1, 0.8 | |
107 scroll_y: 0 | |
108 do_scroll_x: False | |
167
ffef21fd97a2
chat: allow to scroll using side bar + increased bar size
Goffi <goffi@goffi.org>
parents:
153
diff
changeset
|
109 scroll_type: ['bars', 'content'] |
ffef21fd97a2
chat: allow to scroll using side bar + increased bar size
Goffi <goffi@goffi.org>
parents:
153
diff
changeset
|
110 bar_width: dp(6) |
86 | 111 MessagesWidget: |
112 id: messages_widget | |
113 MessageInputBox: | |
78 | 114 size_hint: 1, None |
86 | 115 height: dp(40) |
116 message_input: message_input | |
117 MessageInputWidget: | |
118 id: message_input | |
119 size_hint: 1, 1 | |
104
663e44f30092
chat: added gettext call for hint_text in input
Goffi <goffi@goffi.org>
parents:
103
diff
changeset
|
120 hint_text: _(u"Enter your message here") |
86 | 121 on_text_validate: root.onSend(args[0]) |
153 | 122 SymbolButton |
97
5d2289127bb7
menu (upload): better menu using dedicated widget:
Goffi <goffi@goffi.org>
parents:
86
diff
changeset
|
123 # transfer button |
153 | 124 symbol: "plus-circled" |
86 | 125 size_hint: None, 1 |
153 | 126 width: dp(30) |
97
5d2289127bb7
menu (upload): better menu using dedicated widget:
Goffi <goffi@goffi.org>
parents:
86
diff
changeset
|
127 on_release: TransferMenu(callback=root.onTransferOK).show(self) |
117 | 128 |
129 <EncryptionButton>: | |
130 size_hint: None, 1 | |
131 width: dp(30) | |
135
091e288838e1
plugin chat: use new Symbol widget to display encryption button
Goffi <goffi@goffi.org>
parents:
133
diff
changeset
|
132 color: self.getColor() |
091e288838e1
plugin chat: use new Symbol widget to display encryption button
Goffi <goffi@goffi.org>
parents:
133
diff
changeset
|
133 symbol: self.getSymbol() |
117 | 134 |
135 <OtrButton@Button>: | |
136 size_hint: None, None | |
137 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
|
138 padding: dp(5), dp(10) |
117 | 139 |
140 <OtrMenu>: | |
141 size_hint_x: None | |
142 width: start_btn.width | |
143 auto_width: False | |
144 canvas.before: | |
145 Color: | |
146 rgba: 0, 0, 0, 1 | |
147 Rectangle: | |
148 pos: self.pos | |
149 size: self.size | |
150 OtrButton: | |
149 | 151 size_hint: 1, None |
117 | 152 id: start_btn |
153 text: _(u"Start/Refresh encrypted session") | |
154 on_release: root.otr_start() | |
155 OtrButton: | |
149 | 156 size_hint: 1, None |
117 | 157 text: _(u"Finish encrypted session") |
158 on_release: root.otr_end() | |
159 OtrButton: | |
149 | 160 size_hint: 1, None |
117 | 161 text: _(u"Authenticate destinee") |
162 on_release: root.otr_authenticate() |