本文整理汇总了Python中calibre.gui2.convert.Widget.get_value_handler方法的典型用法代码示例。如果您正苦于以下问题:Python Widget.get_value_handler方法的具体用法?Python Widget.get_value_handler怎么用?Python Widget.get_value_handler使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类calibre.gui2.convert.Widget
的用法示例。
在下文中一共展示了Widget.get_value_handler方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get_value_handler
# 需要导入模块: from calibre.gui2.convert import Widget [as 别名]
# 或者: from calibre.gui2.convert.Widget import get_value_handler [as 别名]
def get_value_handler(self, g):
if g is self.opt_change_justification:
ans = unicode(g.itemData(g.currentIndex()).toString())
return ans
if g is self.opt_filter_css:
ans = set()
for key, item in self.FILTER_CSS.iteritems():
w = getattr(self, 'filter_css_%s'%key)
if w.isChecked():
ans = ans.union(item)
ans = ans.union(set([x.strip().lower() for x in
unicode(self.filter_css_others.text()).split(',')]))
return ','.join(ans) if ans else None
return Widget.get_value_handler(self, g)
示例2: get_value_handler
# 需要导入模块: from calibre.gui2.convert import Widget [as 别名]
# 或者: from calibre.gui2.convert.Widget import get_value_handler [as 别名]
def get_value_handler(self, g):
if g is self.opt_change_justification:
ans = unicode(g.itemData(g.currentIndex()) or '')
return ans
if g is self.opt_filter_css:
ans = set()
for key, item in self.FILTER_CSS.iteritems():
w = getattr(self, 'filter_css_%s'%key)
if w.isChecked():
ans = ans.union(item)
ans = ans.union(set([x.strip().lower() for x in
unicode(self.filter_css_others.text()).split(',')]))
return ','.join(ans) if ans else None
if g is self.opt_font_size_mapping:
val = unicode(g.text()).strip()
val = [x.strip() for x in val.split(',' if ',' in val else ' ') if x.strip()]
return ', '.join(val) or None
if g is self.opt_transform_css_rules:
return json.dumps(g.rules)
return Widget.get_value_handler(self, g)
示例3: get_value_handler
# 需要导入模块: from calibre.gui2.convert import Widget [as 别名]
# 或者: from calibre.gui2.convert.Widget import get_value_handler [as 别名]
def get_value_handler(self, g):
if g in (self.opt_input_profile, self.opt_output_profile):
idx = g.currentIndex().row()
return g.model().profiles[idx].short_name
return Widget.get_value_handler(self, g)
示例4: get_value_handler
# 需要导入模块: from calibre.gui2.convert import Widget [as 别名]
# 或者: from calibre.gui2.convert.Widget import get_value_handler [as 别名]
def get_value_handler(self, g):
if g is not self.opt_markdown_extensions:
return Widget.get_value_handler(self, g)
return ', '.join(unicode(i.data(Qt.UserRole) or '') for i in self.md_map.itervalues() if i.checkState())