# Cagou: desktop/mobile frontend for Salut à Toi XMPP client # Copyright (C) 2016 Jérôme Poisson (goffi@goffi.org) # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, either version 3 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 Affero General Public License for more details. # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . : size_hint: None, None size: dp(30), dp(30) : spacing: self._spacing padding: self._padding : size_hint: 1,None height: 40 hint_text: "Enter your message here" : mess_label: mess_label mess_box: mess_box size_hint: 1, None height: time_label.height + mess_label.height on_height: if root.parent: root.parent.sizeAdjust() on_width: self.sizeAdjust() FloatLayout: Label: id: time_label text_size: None, None size_hint: 1, None height: self.texture_size[1] pos_hint: {'x':0, 'y':0} text: root.mess_data.time_text halign: "center" Label: size_hint: 1, 1 text_size: self.size pos_hint: {'x':0, 'y':0} text: root.mess_data.nick halign: "left" if root.mess_data.own_mess else "right" BoxLayout: id: mess_box size_hint: None,None size: sum([c.width for c in self.children]), mess_label.height pos_hint: {'x': 0} if root.mess_data.own_mess else {'right': 1} Label: canvas.before: Color: rgba: 1, 1, 1, 1 BorderImage: source: app.expand("{media}/misc/borders/{}.jpg", "blue" if root.mess_data.own_mess else "gray") pos: self.pos size: self.size id: mess_label color: 0, 0, 0, 1 padding: 5, 5 text_size: None, None size_hint: None, None size: self.texture_size text: root.message or u' ' on_texture_size: root.sizeAdjust()