当前位置: 首页>>代码示例>>Python>>正文


Python Configuration.getProfileList方法代码示例

本文整理汇总了Python中configuration.Configuration.getProfileList方法的典型用法代码示例。如果您正苦于以下问题:Python Configuration.getProfileList方法的具体用法?Python Configuration.getProfileList怎么用?Python Configuration.getProfileList使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在configuration.Configuration的用法示例。


在下文中一共展示了Configuration.getProfileList方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: delCurrentProfile

# 需要导入模块: from configuration import Configuration [as 别名]
# 或者: from configuration.Configuration import getProfileList [as 别名]
	def delCurrentProfile(self):
		i = self.ui.comboProfiles.currentIndex()
		currentProfile = unicode(self.ui.comboProfiles.currentText())
		if i == 0: return
		conf = Configuration()
		profiles = conf.getProfileList()
		profiles = [ p for p in profiles if p != currentProfile ]
		conf.setProfileList(profiles)
		self.refreshProfiles()
		self.ui.comboProfiles.setCurrentIndex(0)
开发者ID:larubbio,项目名称:python-whiteboard,代码行数:12,代码来源:pywhiteboard.py

示例2: refreshProfiles

# 需要导入模块: from configuration import Configuration [as 别名]
# 或者: from configuration.Configuration import getProfileList [as 别名]
	def refreshProfiles(self):
		conf = Configuration()
		self.ui.comboProfiles.clear()
		self.ui.comboProfiles.addItem(self.tr("default"))
		
		for p in conf.getProfileList():
			self.ui.comboProfiles.addItem(p)
		
		self.confDialog.refreshWidgets()
		self.ui.moveOnlyCheck.setChecked( conf.getValueStr('moveonly') == 'Yes' )
开发者ID:larubbio,项目名称:python-whiteboard,代码行数:12,代码来源:pywhiteboard.py

示例3: addProfile

# 需要导入模块: from configuration import Configuration [as 别名]
# 或者: from configuration.Configuration import getProfileList [as 别名]
	def addProfile(self):
		profName, ok = QtGui.QInputDialog.getText(self,
			self.tr("New Profile"), self.tr('Name:'))
		
		profName = unicode(profName)
		if ok and profName != '':
			conf = Configuration()
			profiles = conf.getProfileList()
			for p in profiles:
				if p == profName: return
			profiles.append(profName)
			conf.setProfileList(profiles)
			self.refreshProfiles()
			i = self.ui.comboProfiles.findText(profName)
			self.ui.comboProfiles.setCurrentIndex(i)
开发者ID:larubbio,项目名称:python-whiteboard,代码行数:17,代码来源:pywhiteboard.py


注:本文中的configuration.Configuration.getProfileList方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。