本文整理汇总了Python中idlelib.searchbase.SearchDialogBase.open方法的典型用法代码示例。如果您正苦于以下问题:Python SearchDialogBase.open方法的具体用法?Python SearchDialogBase.open怎么用?Python SearchDialogBase.open使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类idlelib.searchbase.SearchDialogBase
的用法示例。
在下文中一共展示了SearchDialogBase.open方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: open
# 需要导入模块: from idlelib.searchbase import SearchDialogBase [as 别名]
# 或者: from idlelib.searchbase.SearchDialogBase import open [as 别名]
def open(self, text, searchphrase, io=None):
SearchDialogBase.open(self, text, searchphrase)
if io:
path = io.filename or ""
else:
path = ""
dir, base = os.path.split(path)
head, tail = os.path.splitext(base)
if not tail:
tail = ".py"
self.globvar.set(os.path.join(dir, "*" + tail))
示例2: open
# 需要导入模块: from idlelib.searchbase import SearchDialogBase [as 别名]
# 或者: from idlelib.searchbase.SearchDialogBase import open [as 别名]
def open(self, text, searchphrase, io=None):
"Make dialog visible on top of others and ready to use."
SearchDialogBase.open(self, text, searchphrase)
if io:
path = io.filename or ""
else:
path = ""
dir, base = os.path.split(path)
head, tail = os.path.splitext(base)
if not tail:
tail = ".py"
self.globvar.set(os.path.join(dir, "*" + tail))
示例3: open
# 需要导入模块: from idlelib.searchbase import SearchDialogBase [as 别名]
# 或者: from idlelib.searchbase.SearchDialogBase import open [as 别名]
def open(self, text):
"""Display the replace dialog"""
SearchDialogBase.open(self, text)
try:
first = text.index("sel.first")
except TclError:
first = None
try:
last = text.index("sel.last")
except TclError:
last = None
first = first or text.index("insert")
last = last or first
self.show_hit(first, last)
self.ok = 1
示例4: open
# 需要导入模块: from idlelib.searchbase import SearchDialogBase [as 别名]
# 或者: from idlelib.searchbase.SearchDialogBase import open [as 别名]
def open(self, text):
"""Make dialog visible on top of others and ready to use.
Also, highlight the currently selected text and set the
search to include the current selection (self.ok).
Args:
text: Text widget being searched.
"""
SearchDialogBase.open(self, text)
try:
first = text.index("sel.first")
except TclError:
first = None
try:
last = text.index("sel.last")
except TclError:
last = None
first = first or text.index("insert")
last = last or first
self.show_hit(first, last)
self.ok = True