source: sasview/src/sas/qtgui/Utilities/ObjectLibrary.py @ 20f4857

ESS_GUIESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalc
Last change on this file since 20f4857 was be8f4b0, checked in by Piotr Rozyczko <rozyczko@…>, 6 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
Line 
1import sys
2
3this = sys.modules[__name__]
4
5this._objects = {}
6
7def addObject(obj_name, obj):
8    this._objects[obj_name] = obj
9
10def deleteObjectByRef(obj):
11    for name, object in this._objects.items():
12        if object == obj:
13            del this._objects[name]
14            break
15
16def deleteObjectByName(obj_name):
17    if obj_name in this._objects:
18        del this._objects[obj_name]
19
20def getObject(obj_name):
21    return this._objects[obj_name] if obj_name in this._objects else None
22
23def listObjects():
24    return list(this._objects.keys())
25
26
27
Note: See TracBrowser for help on using the repository browser.