/usr/share/pyshared/pyacidobasic/reactifs.py is in python-acidobasic 2.2-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 | #-*- coding: utf-8 -*-
licence="""
file reactifs.py: part of the package pyacidobasic version %s:
Copyright (C) 2010 Georges Khaznadar <georgesk@ofset.org>
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 <http://www.gnu.org/licenses/>.
"""
from PyQt4.QtCore import *
from operator import attrgetter
import re
def setupUi(ui, listeAcidesBases, filtre=""):
"""
met en place une liste de réactifs dans l'interface utilisateur
de pyacidobasic
@param ui, l'interface utilisateur de pyacidobasic
@param listeAcidesBases une liste d'acides et de bases
@param filtre une chaîne pour filtrer les acides et les bases à afficher
"""
filtre=u"%s" %filtre # force QString -> unicode
l=sorted(filter(lambda x: re.search(filtre,u"%s" %x.nom)!=None,
listeAcidesBases),
key=attrgetter('nom'))
ui.listWidgetReactifs.clear()
for ab in l:
ab.c=0.0 # on annule la concentration : elle est indéfinie
ui.listWidgetReactifs.addItem(ab.nom)
ui.listWidgetBecher.listeAcidesBases=listeAcidesBases
ui.listWidgetBurette.listeAcidesBases=listeAcidesBases
|