Dekko
MailUtils.qml
1 /* Copyright (C) 2016 - 2017 Dan Chapman <dpniel@ubuntu.com>
2 
3  This file is part of Dekko email client for Ubuntu devices
4 
5  This program is free software; you can redistribute it and/or
6  modify it under the terms of the GNU General Public License as
7  published by the Free Software Foundation; either version 2 of
8  the License or (at your option) version 3
9 
10  This program is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  GNU General Public License for more details.
14 
15  You should have received a copy of the GNU General Public License
16  along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18 pragma Singleton
19 import QtQuick 2.4
20 import Dekko.Mail 1.0
21 
22 QtObject {
23 
24  function recipientTypeToString(type) {
25  switch (type) {
26  case RecipientType.To:
27  return qsTr("To")
28  case RecipientType.Cc:
29  return qsTr("Cc")
30  case RecipientType.Bcc:
31  return qsTr("Bcc")
32  }
33  }
34 
35 }
36 
Dekko
Definition: Dekko.qml:30