本文整理汇总了Python中control.Control.get_last_regex方法的典型用法代码示例。如果您正苦于以下问题:Python Control.get_last_regex方法的具体用法?Python Control.get_last_regex怎么用?Python Control.get_last_regex使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类control.Control
的用法示例。
在下文中一共展示了Control.get_last_regex方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: event_switch_to_list_view
# 需要导入模块: from control import Control [as 别名]
# 或者: from control.Control import get_last_regex [as 别名]
def event_switch_to_list_view(self, widget, event, data=None):
TixMode.current = TixMode.LIST
self.status_bar.update("- Search: %s" % Control.get_last_regex() if Control.get_last_regex() else "")
if Control.reload_notes:
self.stored_items.load(self.notes_root, self.recursive)
self.create_list()
Control.reload_notes = False
self.vbox.remove(self.editor.get_parent())
self.vbox.pack_start(self.commandline, False, False, 0)
self.vbox.add(self.tree_view.get_parent())
self.tree_view.grab_focus()
self.main_window.show_all()
示例2: filter
# 需要导入模块: from control import Control [as 别名]
# 或者: from control.Control import get_last_regex [as 别名]
def filter(self, function_while_processing=None):
from control import Control
list_modes = self.modes()
current_mode = list_modes[UserMode.current]
nbr_visible = 0
for i, note in enumerate(self.list):
if not note.is_processed: note.process_meta(i)
if (current_mode == UserMode.ALL or current_mode in note.modes) \
and note.is_search_match(Control.get_last_regex()):
note.visible(True)
nbr_visible += 1
else:
note.visible(False)
if function_while_processing and i % 100 == 0:
function_while_processing()
return nbr_visible
示例3: f
# 需要导入模块: from control import Control [as 别名]
# 或者: from control.Control import get_last_regex [as 别名]
def f(sofar, m):
regex = Control.get_last_regex()
if regex and utils.search_regex(regex, m):
return "%s<span background='#ee6' color='#000'> %s </span> " % (sofar, m)
else:
return "%s<span background='#d0ddef' color='#024'> %s </span> " % (sofar, m)