/usr/lib/python2.7/dist-packages/Wammu/Select.py is in wammu 0.44-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 | # -*- coding: UTF-8 -*-
#
# Copyright © 2003 - 2018 Michal Čihař <michal@cihar.com>
#
# This file is part of Wammu <https://wammu.eu/>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
'''
Wammu - Phone manager
Contact and phone number select dialogs
'''
from __future__ import unicode_literals
import wx
import Wammu.Utils
from Wammu.Locales import StrConv
from Wammu.Locales import ugettext as _
def SortName(item1, item2):
'''
Comparator function for sorting by name.
'''
return cmp(item1['Name'], item2['Name'])
def SelectContact(parent, contactlist, index=False):
'''
Dialog for selecting contact.
'''
contactlist.sort(SortName)
choices = []
for entry in contactlist:
if entry['Name'] == '':
choices.append(StrConv(entry['Number']))
else:
choices.append(StrConv(entry['Name']))
dlg = wx.SingleChoiceDialog(
parent,
_('Select contact from below list'),
_('Select contact'),
choices,
wx.CHOICEDLG_STYLE | wx.RESIZE_BORDER)
if dlg.ShowModal() == wx.ID_OK and len(choices) > 0:
result = dlg.GetSelection()
if not index:
result = contactlist[result]['Location']
else:
result = -1
del dlg
return result
def SelectNumber(parent, contactlist):
'''
Allows user to select number from phone list. First it asks for contact
and then which number to use.
'''
i = SelectContact(parent, contactlist, True)
if i == -1:
return None
return SelectContactNumber(parent, contactlist[i])
def SelectContactNumber(parent, item):
'''
Selects number of chosen contact. If it has single number, it returns it
directly, otherwise user has to select which number to use.
'''
numbers = []
texts = []
for i in range(len(item['Entries'])):
if Wammu.Utils.GetItemType(item['Entries'][i]['Type']) == 'phone':
numbers.append(item['Entries'][i]['Value'])
texts.append(StrConv('%s : %s' % (
item['Entries'][i]['Type'],
item['Entries'][i]['Value'])))
if len(numbers) == 0:
return None
elif len(numbers) == 1:
return numbers[0]
dlg = wx.SingleChoiceDialog(
parent,
_('Select number for selected contact'),
_('Select phone number'),
texts,
wx.CHOICEDLG_STYLE | wx.RESIZE_BORDER)
if dlg.ShowModal() == wx.ID_OK:
result = numbers[dlg.GetSelection()]
else:
result = None
del dlg
return result
|