本文整理汇总了Python中tactic.ui.input.TextInputWdg.set_readonly方法的典型用法代码示例。如果您正苦于以下问题:Python TextInputWdg.set_readonly方法的具体用法?Python TextInputWdg.set_readonly怎么用?Python TextInputWdg.set_readonly使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tactic.ui.input.TextInputWdg
的用法示例。
在下文中一共展示了TextInputWdg.set_readonly方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get_display
# 需要导入模块: from tactic.ui.input import TextInputWdg [as 别名]
# 或者: from tactic.ui.input.TextInputWdg import set_readonly [as 别名]
#.........这里部分代码省略.........
table = Table()
rules_div.add(table)
table.add_color("color", "color")
from tactic.ui.input.text_input_wdg import TextInputWdg
# add the title
table.add_row()
td = table.add_cell()
td.add("Title: ")
td = table.add_cell()
text = TextInputWdg(name="title")
td.add(text)
if title:
text.set_value(title)
text.add_class("spt_title")
text.add_style("width: 400px")
#text.add_color("background", "background", -10)
# add the optional code
table.add_row()
td = table.add_cell()
td.add("Code (optional): ")
td = table.add_cell()
text = TextInputWdg(name="code")
td.add(text)
if code:
text.set_value(code)
text.set_readonly()
text.add_color("background", "background", -10)
text.add_class("spt_code")
text.add_style("width: 400px")
table.add_row()
td = table.add_cell()
td.add_style("height: 10px")
td.add("<hr/>")
table.add_row()
td = table.add_cell()
td.add("<b>Scan:</b><br/>")
td.add("The following information will be used to find the paths that will be operated on by the ingestion process<br/><br/>")
# add a scan type
table.add_row()
td = table.add_cell()
td.add("Type: ")
select = SelectWdg("scan_type")
select.add_class("spt_scan_type")
td = table.add_cell()
td.add(select)
select.set_value( self.get_value("action") )
labels = ['Simple List', 'Rule', 'Script']
values = ['list', 'rule', 'script']
select.set_option("values", values)