本文整理汇总了Python中bauble.view.PropertiesExpander类的典型用法代码示例。如果您正苦于以下问题:Python PropertiesExpander类的具体用法?Python PropertiesExpander怎么用?Python PropertiesExpander使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了PropertiesExpander类的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: LocationInfoBox
class LocationInfoBox(InfoBox):
"""
an InfoBox for a Location table row
"""
def __init__(self):
'''
'''
InfoBox.__init__(self)
filename = os.path.join(paths.lib_dir(), "plugins", "garden",
"loc_infobox.glade")
self.widgets = utils.load_widgets(filename)
self.general = GeneralLocationExpander(self.widgets)
self.add_expander(self.general)
self.description = DescriptionExpander(self.widgets)
self.add_expander(self.description)
self.props = PropertiesExpander()
self.add_expander(self.props)
def update(self, row):
'''
'''
self.general.update(row)
self.description.update(row)
self.props.update(row)
示例2: FamilyInfoBox
class FamilyInfoBox(InfoBox):
'''
'''
def __init__(self):
'''
'''
InfoBox.__init__(self)
filename = os.path.join(paths.lib_dir(), 'plugins', 'plants',
'infoboxes.glade')
self.widgets = utils.load_widgets(filename)
self.general = GeneralFamilyExpander(self.widgets)
self.add_expander(self.general)
self.synonyms = SynonymsExpander(self.widgets)
self.add_expander(self.synonyms)
self.links = LinksExpander()
self.add_expander(self.links)
self.props = PropertiesExpander()
self.add_expander(self.props)
if 'GardenPlugin' not in pluginmgr.plugins:
self.widgets.remove_parent('fam_nacc_label')
self.widgets.remove_parent('fam_nacc_data')
self.widgets.remove_parent('fam_nplants_label')
self.widgets.remove_parent('fam_nplants_data')
def update(self, row):
'''
'''
self.general.update(row)
self.synonyms.update(row)
self.links.update(row)
self.props.update(row)
示例3: SpeciesInfoPage
class SpeciesInfoPage(InfoBoxPage):
'''
general info, fullname, common name, num of accessions and clones,
distribution
'''
# others to consider: reference, images, redlist status
def __init__(self):
'''
the constructor
'''
super(SpeciesInfoPage, self).__init__()
filename = os.path.join(paths.lib_dir(), 'plugins', 'plants',
'infoboxes.glade')
# load the widgets directly instead of using load_widgets()
# because the caching that load_widgets() does can mess up
# displaying the SpeciesInfoBox sometimes if you try to show
# the infobox while having a vernacular names selected in
# the search results and then a species name
self.widgets = utils.BuilderWidgets(filename)
self.general = GeneralSpeciesExpander(self.widgets)
self.add_expander(self.general)
self.vernacular = VernacularExpander(self.widgets)
self.add_expander(self.vernacular)
self.synonyms = SynonymsExpander(self.widgets)
self.add_expander(self.synonyms)
self.links = LinksExpander()
self.add_expander(self.links)
self.props = PropertiesExpander()
self.add_expander(self.props)
self.label = _('General')
if 'GardenPlugin' not in pluginmgr.plugins:
self.widgets.remove_parent('sp_nacc_label')
self.widgets.remove_parent('sp_nacc_data')
self.widgets.remove_parent('sp_nplants_label')
self.widgets.remove_parent('sp_nplants_data')
def update(self, row):
'''
update the expanders in this infobox
:param row: the row to get the values from
'''
self.general.update(row)
self.vernacular.update(row)
self.synonyms.update(row)
self.links.update(row)
self.props.update(row)
示例4: PlantInfoBox
class PlantInfoBox(InfoBox):
"""
an InfoBox for a Plants table row
"""
def __init__(self):
'''
'''
InfoBox.__init__(self)
filename = os.path.join(paths.lib_dir(), "plugins", "garden",
"plant_infobox.glade")
self.widgets = utils.load_widgets(filename)
self.general = GeneralPlantExpander(self.widgets)
self.add_expander(self.general)
self.transfers = ChangesExpander(self.widgets)
self.add_expander(self.transfers)
self.propagations = PropagationExpander(self.widgets)
self.add_expander(self.propagations)
self.links = view.LinksExpander('notes')
self.add_expander(self.links)
self.props = PropertiesExpander()
self.add_expander(self.props)
def update(self, row):
'''
'''
# TODO: don't really need a location expander, could just
# use a label in the general section
#loc = self.get_expander("Location")
#loc.update(row.location)
self.general.update(row)
self.transfers.update(row)
self.propagations.update(row)
urls = filter(lambda x: x!=[], \
[utils.get_urls(note.note) for note in row.notes])
if not urls:
self.links.props.visible = False
self.links._sep.props.visible = False
else:
self.links.props.visible = True
self.links._sep.props.visible = True
self.links.update(row)
self.props.update(row)
示例5: __init__
def __init__(self):
"""
the constructor
"""
super(SpeciesInfoPage, self).__init__()
filename = os.path.join(paths.lib_dir(), "plugins", "plants", "infoboxes.glade")
# load the widgets directly instead of using load_widgets()
# because the caching that load_widgets() does can mess up
# displaying the SpeciesInfoBox sometimes if you try to show
# the infobox while having a vernacular names selected in
# the search results and then a species name
self.widgets = utils.BuilderWidgets(filename)
self.general = GeneralSpeciesExpander(self.widgets)
self.add_expander(self.general)
self.vernacular = VernacularExpander(self.widgets)
self.add_expander(self.vernacular)
self.synonyms = SynonymsExpander(self.widgets)
self.add_expander(self.synonyms)
self.links = LinksExpander()
self.add_expander(self.links)
self.props = PropertiesExpander()
self.add_expander(self.props)
self.label = _("General")
if "GardenPlugin" not in pluginmgr.plugins:
self.widgets.remove_parent("sp_nacc_label")
self.widgets.remove_parent("sp_nacc_data")
self.widgets.remove_parent("sp_nplants_label")
self.widgets.remove_parent("sp_nplants_data")
示例6: __init__
def __init__(self):
'''
'''
button_defs = [
{'name': 'IPNIButton', '_base_uri': "http://www.ipni.org/ipni/advPlantNameSearch.do?find_family=%(family)s&find_isAPNIRecord=on& find_isGCIRecord=on&find_isIKRecord=on&output_format=normal", '_space': ' ', 'title': _("Search IPNI"), 'tooltip': _("Search the International Plant Names Index"), },
{'name': 'GoogleButton', '_base_uri': "http://www.google.com/search?q=%s", '_space': '+', 'title': "Search Google", 'tooltip': None, },
{'name': 'GBIFButton', '_base_uri': "http://www.gbif.org/species/search?q=%s", '_space': '+', 'title': _("Search GBIF"), 'tooltip': _("Search the Global Biodiversity Information Facility"), },
{'name': 'ITISButton', '_base_uri': "http://www.itis.gov/servlet/SingleRpt/SingleRpt?search_topic=Scientific_Name&search_value=%s&search_kingdom=Plant&search_span=containing&categories=All&source=html&search_credRating=All", '_space': '%20', 'title': _("Search ITIS"), 'tooltip': _("Search the Intergrated Taxonomic Information System"), },
{'name': 'GRINButton', '_base_uri': "http://www.ars-grin.gov/cgi-bin/npgs/swish/accboth?query=%s&submit=Submit+Text+Query&si=0", '_space': '+', 'title': _("Search NPGS/GRIN"), 'tooltip': _('Search National Plant Germplasm System'), },
{'name': 'ALAButton', '_base_uri': "http://bie.ala.org.au/search?q=%s", '_space': '+', 'title': _("Search ALA"), 'tooltip': _("Search the Atlas of Living Australia"), },
]
InfoBox.__init__(self)
filename = os.path.join(paths.lib_dir(), 'plugins', 'plants',
'infoboxes.glade')
self.widgets = utils.load_widgets(filename)
self.general = GeneralFamilyExpander(self.widgets)
self.add_expander(self.general)
self.synonyms = SynonymsExpander(self.widgets)
self.add_expander(self.synonyms)
self.links = view.LinksExpander('notes', links=button_defs)
self.add_expander(self.links)
self.props = PropertiesExpander()
self.add_expander(self.props)
if 'GardenPlugin' not in pluginmgr.plugins:
self.widgets.remove_parent('fam_nacc_label')
self.widgets.remove_parent('fam_nacc_data')
self.widgets.remove_parent('fam_nplants_label')
self.widgets.remove_parent('fam_nplants_data')
示例7: __init__
def __init__(self):
button_defs = [
{'name': 'GoogleButton', '_base_uri': "http://www.google.com/search?q=%s", '_space': '+', 'title': "Search Google", 'tooltip': None, },
{'name': 'GBIFButton', '_base_uri': "http://www.gbif.org/species/search?q=%s", '_space': '+', 'title': _("Search GBIF"), 'tooltip': _("Search the Global Biodiversity Information Facility"), },
{'name': 'ITISButton', '_base_uri': "http://www.itis.gov/servlet/SingleRpt/SingleRpt?search_topic=Scientific_Name&search_value=%s&search_kingdom=Plant&search_span=containing&categories=All&source=html&search_credRating=All", '_space': '%20', 'title': _("Search ITIS"), 'tooltip': _("Search the Intergrated Taxonomic Information System"), },
{'name': 'GRINButton', '_base_uri': "http://www.ars-grin.gov/cgi-bin/npgs/swish/accboth?query=%s&submit=Submit+Text+Query&si=0", '_space': '+', 'title': _("Search NPGS/GRIN"), 'tooltip': _('Search National Plant Germplasm System'), },
{'name': 'ALAButton', '_base_uri': "http://bie.ala.org.au/search?q=%s", '_space': '+', 'title': _("Search ALA"), 'tooltip': _("Search the Atlas of Living Australia"), },
{'name': 'IPNIButton', '_base_uri': "http://www.ipni.org/ipni/advPlantNameSearch.do?find_genus=%(genus)s&find_isAPNIRecord=on& find_isGCIRecord=on&find_isIKRecord=on&output_format=normal", '_space': ' ', 'title': _("Search IPNI"), 'tooltip': _("Search the International Plant Names Index"), },
{'name': 'BGCIButton', '_base_uri': "http://www.bgci.org/plant_search.php?action=Find&ftrGenus=%(genus)s&ftrRedList=&ftrRedList1997=&ftrEpithet=&ftrCWR=&x=0&y=0#results", '_space': ' ', 'title': _("Search BGCI"), 'tooltip': _("Search Botanic Gardens Conservation International"), },
{'name': 'TPLButton', '_base_uri': "http://www.theplantlist.org/tpl1.1/search?q=%(genus)s", '_space': '+', 'title': _("Search TPL"), 'tooltip': _("Search The Plant List online database"), },
{'name': 'TropicosButton', '_base_uri': "http://tropicos.org/NameSearch.aspx?name=%(genus)s", '_space': '+', 'title': _("Search Tropicos"), 'tooltip': _("Search Tropicos (MissouriBG) online database"), },
]
InfoBox.__init__(self)
filename = os.path.join(paths.lib_dir(), 'plugins', 'plants',
'infoboxes.glade')
self.widgets = utils.load_widgets(filename)
self.general = GeneralGenusExpander(self.widgets)
self.add_expander(self.general)
self.synonyms = SynonymsExpander(self.widgets)
self.add_expander(self.synonyms)
self.links = view.LinksExpander('notes', button_defs)
self.add_expander(self.links)
self.props = PropertiesExpander()
self.add_expander(self.props)
if 'GardenPlugin' not in pluginmgr.plugins:
self.widgets.remove_parent('gen_nacc_label')
self.widgets.remove_parent('gen_nacc_data')
self.widgets.remove_parent('gen_nplants_label')
self.widgets.remove_parent('gen_nplants_data')
示例8: __init__
def __init__(self):
"""
"""
InfoBox.__init__(self)
filename = os.path.join(paths.lib_dir(), "plugins", "garden", "loc_infobox.glade")
self.widgets = utils.load_widgets(filename)
self.general = GeneralLocationExpander(self.widgets)
self.add_expander(self.general)
self.description = DescriptionExpander(self.widgets)
self.add_expander(self.description)
self.props = PropertiesExpander()
self.add_expander(self.props)
示例9: __init__
def __init__(self):
InfoBox.__init__(self)
filename = os.path.join(paths.lib_dir(), 'plugins', 'plants',
'infoboxes.glade')
self.widgets = utils.load_widgets(filename)
self.general = GeneralGenusExpander(self.widgets)
self.add_expander(self.general)
self.synonyms = SynonymsExpander(self.widgets)
self.add_expander(self.synonyms)
self.links = LinksExpander()
self.add_expander(self.links)
self.props = PropertiesExpander()
self.add_expander(self.props)
if 'GardenPlugin' not in pluginmgr.plugins:
self.widgets.remove_parent('gen_nacc_label')
self.widgets.remove_parent('gen_nacc_data')
self.widgets.remove_parent('gen_nplants_label')
self.widgets.remove_parent('gen_nplants_data')
示例10: __init__
def __init__(self):
'''
the constructor
'''
button_defs = [
{'name': 'GoogleButton', '_base_uri': "http://www.google.com/search?q=%s", '_space': '+', 'title': "Search Google", 'tooltip': None, },
{'name': 'GBIFButton', '_base_uri': "http://www.gbif.org/species/search?q=%s", '_space': '+', 'title': _("Search GBIF"), 'tooltip': _("Search the Global Biodiversity Information Facility"), },
{'name': 'ITISButton', '_base_uri': "http://www.itis.gov/servlet/SingleRpt/SingleRpt?search_topic=Scientific_Name&search_value=%s&search_kingdom=Plant&search_span=containing&categories=All&source=html&search_credRating=All", '_space': '%20', 'title': _("Search ITIS"), 'tooltip': _("Search the Intergrated Taxonomic Information System"), },
{'name': 'GRINButton', '_base_uri': "http://www.ars-grin.gov/cgi-bin/npgs/swish/accboth?query=%s&submit=Submit+Text+Query&si=0", '_space': '+', 'title': _("Search NPGS/GRIN"), 'tooltip': _('Search National Plant Germplasm System'), },
{'name': 'ALAButton', '_base_uri': "http://bie.ala.org.au/search?q=%s", '_space': '+', 'title': _("Search ALA"), 'tooltip': _("Search the Atlas of Living Australia"), },
{'name': 'WikipediaButton', '_base_uri': "http://en.wikipedia.org/wiki/%(genus.genus)s_%(sp)s", '_space': '+', 'title': _("Search Wikipedia"), 'tooltip': _("open the wikipedia page about this species"), },
{'name': 'IPNIButton', '_base_uri': "http://www.ipni.org/ipni/advPlantNameSearch.do?find_genus=%(genus.genus)s&find_species=%(sp)s&find_isAPNIRecord=on& find_isGCIRecord=on&find_isIKRecord=on&output_format=normal", '_space': ' ', 'title': _("Search IPNI"), 'tooltip': _("Search the International Plant Names Index"), },
{'name': 'BGCIButton', '_base_uri': "http://www.bgci.org/plant_search.php?action=Find&ftrGenus=%(genus.genus)s&ftrRedList=&ftrSpecies=%(sp)s&ftrRedList1997=&ftrEpithet=&ftrCWR=&x=0&y=0#results", '_space': ' ', 'title': _("Search BGCI"), 'tooltip': _("Search Botanic Gardens Conservation International"), },
{'name': 'TPLButton', '_base_uri': "http://www.theplantlist.org/tpl1.1/search?q=%(genus.genus)s+%(sp)s", '_space': '+', 'title': _("Search TPL"), 'tooltip': _("Search The Plant List online database"), },
{'name': 'TropicosButton', '_base_uri': "http://tropicos.org/NameSearch.aspx?name=%(genus.genus)s+%(sp)s", '_space': '+', 'title': _("Search Tropicos"), 'tooltip': _("Search Tropicos (MissouriBG) online database"), },
]
super(SpeciesInfoPage, self).__init__()
filename = os.path.join(paths.lib_dir(), 'plugins', 'plants',
'infoboxes.glade')
# load the widgets directly instead of using load_widgets()
# because the caching that load_widgets() does can mess up
# displaying the SpeciesInfoBox sometimes if you try to show
# the infobox while having a vernacular names selected in
# the search results and then a species name
self.widgets = utils.BuilderWidgets(filename)
self.general = GeneralSpeciesExpander(self.widgets)
self.add_expander(self.general)
self.vernacular = VernacularExpander(self.widgets)
self.add_expander(self.vernacular)
self.synonyms = SynonymsExpander(self.widgets)
self.add_expander(self.synonyms)
self.links = view.LinksExpander('notes', links=button_defs)
self.add_expander(self.links)
self.props = PropertiesExpander()
self.add_expander(self.props)
self.label = _('General')
if 'GardenPlugin' not in pluginmgr.plugins:
self.widgets.remove_parent('sp_nacc_label')
self.widgets.remove_parent('sp_nacc_data')
self.widgets.remove_parent('sp_nplants_label')
self.widgets.remove_parent('sp_nplants_data')
示例11: __init__
def __init__(self):
"""
"""
InfoBox.__init__(self)
filename = os.path.join(paths.lib_dir(), "plugins", "plants", "infoboxes.glade")
self.widgets = utils.load_widgets(filename)
self.general = GeneralFamilyExpander(self.widgets)
self.add_expander(self.general)
self.synonyms = SynonymsExpander(self.widgets)
self.add_expander(self.synonyms)
self.links = LinksExpander()
self.add_expander(self.links)
self.props = PropertiesExpander()
self.add_expander(self.props)
if "GardenPlugin" not in pluginmgr.plugins:
self.widgets.remove_parent("fam_nacc_label")
self.widgets.remove_parent("fam_nacc_data")
self.widgets.remove_parent("fam_nplants_label")
self.widgets.remove_parent("fam_nplants_data")
示例12: __init__
def __init__(self):
'''
'''
InfoBox.__init__(self)
filename = os.path.join(paths.lib_dir(), "plugins", "garden",
"plant_infobox.glade")
self.widgets = utils.load_widgets(filename)
self.general = GeneralPlantExpander(self.widgets)
self.add_expander(self.general)
self.transfers = ChangesExpander(self.widgets)
self.add_expander(self.transfers)
self.propagations = PropagationExpander(self.widgets)
self.add_expander(self.propagations)
self.links = view.LinksExpander('notes')
self.add_expander(self.links)
self.props = PropertiesExpander()
self.add_expander(self.props)