本文整理汇总了Python中pychess.ic.ICLogon.get_user_names方法的典型用法代码示例。如果您正苦于以下问题:Python ICLogon.get_user_names方法的具体用法?Python ICLogon.get_user_names怎么用?Python ICLogon.get_user_names使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pychess.ic.ICLogon
的用法示例。
在下文中一共展示了ICLogon.get_user_names方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: user_name_get_value
# 需要导入模块: from pychess.ic import ICLogon [as 别名]
# 或者: from pychess.ic.ICLogon import get_user_names [as 别名]
def user_name_get_value(entry):
names = ICLogon.get_user_names()
if as_guest.get_active():
text = "%s|%s" % (names[0], entry.get_text())
else:
text = "%s|%s" % (entry.get_text(), names[1])
return text
示例2: user_name_set_value
# 需要导入模块: from pychess.ic import ICLogon [as 别名]
# 或者: from pychess.ic.ICLogon import get_user_names [as 别名]
def user_name_set_value(entry, value):
names = ICLogon.get_user_names(value=value)
if as_guest.get_active():
entry.set_text(names[1])
else:
entry.set_text(names[0])
示例3: asGuestCallback
# 需要导入模块: from pychess.ic import ICLogon [as 别名]
# 或者: from pychess.ic.ICLogon import get_user_names [as 别名]
def asGuestCallback(check):
names = ICLogon.get_user_names()
self.widgets["usernameEntry"].set_text(names[1] \
if check.get_active() else names[0])
self.widgets["passwordLabel"].set_sensitive(not check.get_active())
self.widgets["passwordEntry"].set_sensitive(not check.get_active())