ESS_GUIESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalc
Last change
on this file since 62c6dc0 was
be8f4b0,
checked in by Piotr Rozyczko <rozyczko@…>, 7 years ago
|
Context menus for tab and constraint list widgets.
Dynamic bindings of add/remove for FPs and the C&S widget
|
-
Property mode set to
100644
|
File size:
548 bytes
|
Rev | Line | |
---|
[0215e0a] | 1 | import sys |
---|
| 2 | |
---|
| 3 | this = sys.modules[__name__] |
---|
| 4 | |
---|
| 5 | this._objects = {} |
---|
| 6 | |
---|
| 7 | def addObject(obj_name, obj): |
---|
| 8 | this._objects[obj_name] = obj |
---|
| 9 | |
---|
[61a92d4] | 10 | def deleteObjectByRef(obj): |
---|
[b3e8629] | 11 | for name, object in this._objects.items(): |
---|
[61a92d4] | 12 | if object == obj: |
---|
| 13 | del this._objects[name] |
---|
| 14 | break |
---|
| 15 | |
---|
| 16 | def deleteObjectByName(obj_name): |
---|
[0215e0a] | 17 | if obj_name in this._objects: |
---|
| 18 | del this._objects[obj_name] |
---|
| 19 | |
---|
| 20 | def getObject(obj_name): |
---|
| 21 | return this._objects[obj_name] if obj_name in this._objects else None |
---|
| 22 | |
---|
| 23 | def listObjects(): |
---|
[b3e8629] | 24 | return list(this._objects.keys()) |
---|
[0215e0a] | 25 | |
---|
| 26 | |
---|
| 27 | |
---|
Note: See
TracBrowser
for help on using the repository browser.