|
6 | 6 | from typing import IO, Any
|
7 | 7 | from libs import *
|
8 | 8 | from cmd import Cmd
|
9 |
| -from keyword import kwlist |
10 | 9 |
|
11 | 10 | __name__ = "开发者命令行"
|
12 | 11 | __author__ = "此程序开发者"
|
13 |
| -__version__ = "1.1.0" |
| 12 | +__version__ = "1.2.0" |
14 | 13 |
|
15 | 14 | public = {"info": "这是一个公共字典,可以在其中存储变量"}
|
16 | 15 |
|
@@ -41,10 +40,11 @@ def do_exec(self, args: str):
|
41 | 40 | """
|
42 | 41 | 运行代码。
|
43 | 42 |
|
44 |
| - 用法:exec [[-l command] | -i] |
| 43 | + 用法:exec [-l command] [-i] [-p attr] |
45 | 44 |
|
46 | 45 | -l command 运行单行代码。
|
47 | 46 | -i 启动多行输入模式,运行多段代码。
|
| 47 | + -p attr 输出指定的属性。 |
48 | 48 |
|
49 | 49 | 多行输入模式命令: [#run] [#rewrite line] [#show] [#exit]
|
50 | 50 |
|
@@ -103,32 +103,40 @@ def do_exec(self, args: str):
|
103 | 103 | for i in e.args[1:]:
|
104 | 104 | print(i)
|
105 | 105 | print()
|
| 106 | + elif args[0] == "-p": |
| 107 | + print(eval(args[1])) |
106 | 108 | else:
|
107 | 109 | print("无效参数%s。"%args[0])
|
108 | 110 |
|
109 |
| - def get_widget_names(self, widget): |
| 111 | + def get_ui_attr(self, widget): |
110 | 112 | names = []
|
111 |
| - for child in widget.children(): |
112 |
| - names.append("calculator.ui." + child.objectName()) |
113 |
| - if isinstance(child, QWidget): |
114 |
| - names.extend(self.get_widget_names(child)) |
| 113 | + for i in dir(widget): |
| 114 | + if not i.startswith("__"): |
| 115 | + names.append("calculator.ui." + i) |
| 116 | + for i in names: |
| 117 | + try: |
| 118 | + for j in dir(eval(i)): |
| 119 | + if not j.startswith("__"): |
| 120 | + names.append(i + "." + j) |
| 121 | + except: |
| 122 | + break |
115 | 123 | return names
|
116 | 124 |
|
117 |
| - def get_class_functions(self, _class): |
| 125 | + def get_class_attr(self, _class): |
118 | 126 | functions = []
|
119 | 127 | for i in dir(_class):
|
120 | 128 | if not i.startswith("_"):
|
121 | 129 | functions.append("calculator." + i)
|
122 | 130 | return functions
|
123 | 131 |
|
124 | 132 | def complete_exec(self, text: str, line: str, begidx: int, endidx: int):
|
125 |
| - if line.startswith("exec -l"): |
126 |
| - widgets = self.get_widget_names(calculator) |
127 |
| - functions = self.get_class_functions(calculator) |
| 133 | + if line.startswith("exec -l") or line.startswith("exec -p"): |
| 134 | + widgets = self.get_ui_attr(calculator.ui) |
| 135 | + functions = self.get_class_attr(calculator) |
128 | 136 | complete = widgets + functions
|
129 |
| - return [i for i in complete if i.lower().startswith(text)] |
| 137 | + return [i for i in complete if i.startswith(text)] |
130 | 138 | if line.startswith("exec"):
|
131 |
| - return ["-l", "-i"] |
| 139 | + return ["-l", "-i", "-p"] |
132 | 140 |
|
133 | 141 | debuggerCmd = DebuggerCmd()
|
134 | 142 |
|
|
0 commit comments