本文整理匯總了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)