AGW Logo

agw_title PersistenceManager

PersistenceManager: global aspects of persistent windows.

Provides support for automatically saving and restoring object properties to persistent storage.

This class is the central element of wxPython persistence framework, see the Persistent Object Overview in the __init__.py file for its overview.

This is a singleton class and its unique instance can be retrieved using Get method.

hierarchy Inheritance Diagram

Inheritance diagram for: PersistenceManager

Inheritance diagram of PersistenceManager


method_summary Methods Summary

__init__Default class constructor.
AddBadDefaultNameAdds a name to the BAD_DEFAULT_NAMES constant.
DisableRestoringGlobally disables restoring the persistent properties (enabled by default).
DisableSavingGlobally disables saving the persistent properties (enabled by default).
DoRestoreValueMethod used by the persistent objects to restore the data.
DoSaveValueMethod used by the persistent objects to save the data.
EnableRestoringGlobally enables restoring the persistent properties (enabled by default).
EnableSavingGlobally enables saving the persistent properties (enabled by default).
FindChecks if the object is registered and return the associated PersistentObject
FreeDestructor for the unique persistence manager object.
GetAccessor to the unique persistence manager object.
GetConfigurationHandlerReturns the persistent configuration handler for PersistenceManager.
GetKeyReturns a correctly formatted key name for the object obj and keyName parameters.
GetManagerStyleReturns the PersistenceManager style.
GetPersistenceDirectoryReturns a default persistent option directory for PersistenceManager.
GetPersistenceFileReturns the persistent configuration file for PersistenceManager.
GetPersistenceKeyReturns the persistent key name inside the configuration file for PersistenceManager.
RegisterRegister an object with the manager.
RegisterAndRestoreCombines both Register and Restore calls.
RegisterAndRestoreAllRecursively registers and restore the state of the input window and of all of its children.
RestoreRestores the state of an object.
RestoreCtrlValueCheck if we persist the widget value, if so pass it to DoRestoreValue.
RestoreValueConvenience method, all the action is done in DoRestoreValue.
SaveSaves the state of an object.
SaveAndUnregisterCombines both Save and Unregister calls.
SaveCtrlValueCheck if we persist the widget value, if so pass it to DoSaveValue.
SaveValueConvenience method, all the action is done in DoSaveValue.
SetConfigurationHandlerSets the persistent configuration handler for PersistenceManager.
SetManagerStyleSets the PersistenceManager style.
SetPersistenceFileSets the persistent configuration file for PersistenceManager.
SetPersistenceKeySets the persistent key name inside the configuration file for PersistenceManager.
UnregisterUnregister the object, this is called by PersistentObject itself so there is

API Class API

class PersistenceManager(object)[source]

PersistenceManager: global aspects of persistent windows.

Provides support for automatically saving and restoring object properties to persistent storage.

This class is the central element of wxPython persistence framework, see the Persistent Object Overview in the __init__.py file for its overview.

This is a singleton class and its unique instance can be retrieved using PersistenceManager.Get() method.



__init__()[source]

Default class constructor.

This method should not be called directly: you should use the object obtained by PersistenceManager.Get() and assign manager styles, custom configuration files and custom configuration handlers using the appropriate methods in this class.

Interesting attributes you can set for this class are:

  • configFile: the persistent configuration file for PersistenceManager, a custom file name to which wx.FileConfig will access to store and retrieve UI settings;

  • configKey: the persistent key name inside the configuration file for PersistenceManager;

  • customConfigHandler: the persistent configuration handler for PersistenceManager; this attribute is an object capable of saving/restoring UI settings. This can be a cPickle object or a ConfigObj one, for example.

  • style: a combination of the following values:


    Flag name

    Description

    PM_SAVE_RESTORE_AUI_PERSPECTIVES

    If a toplevel window has an AUI manager associated, the manager will save and restore its AUI perspective

    PM_SAVE_RESTORE_TREE_LIST_SELECTIONS

    If set, the manager will save items selections in list and tree controls

    PM_PERSIST_CONTROL_VALUE

    If set, control values will be persisted. This is handy for e.g. applications using a database, where the data (control value) is persisted in the database and persisting it with PM again would only cause confusion.

    PM_DEFAULT_STYLE

    Same as PM_SAVE_RESTORE_AUI_PERSPECTIVES

Note

UI settings are stored as dictionaries key <=> tuple: the tuple value contains two items. The first is the value type (i.e., float, int, bool etc...) while the second is the actual key value.



AddBadDefaultName(name)[source]

Adds a name to the BAD_DEFAULT_NAMES constant.

Parameters:name – a string specifying the control’s default name.


DisableRestoring()[source]

Globally disables restoring the persistent properties (enabled by default).

Note

By default, restoring properties in Restore is enabled but this function allows to disable it. This is mostly useful for testing.



DisableSaving()[source]

Globally disables saving the persistent properties (enabled by default).

Note

By default, saving properties in Save is enabled but the program may wish to disable if, for example, it detects that it is running on a system which shouldn’t be modified in any way and so configuration file (or Windows registry) shouldn’t be written to.



DoRestoreValue(obj, keyName)[source]

Method used by the persistent objects to restore the data.

By default this method simply use wx.FileConfig but this behaviour may be overridden by passing a custom config handler in the PersistenceManager constructor.

Parameters:
  • obj – an instance of PersistentObject;
  • keyName – a string specifying the key name.


DoSaveValue(obj, keyName, value)[source]

Method used by the persistent objects to save the data.

By default this method simply use wx.FileConfig but this behaviour may be overridden by passing a custom configuration handler in the PersistenceManager constructor.

Parameters:
  • obj – an instance of PersistentObject;
  • keyName – a string specifying the key name;
  • value – the value to store in the configuration file.


EnableRestoring()[source]

Globally enables restoring the persistent properties (enabled by default).

Note

By default, restoring properties in Restore is enabled but this function allows to disable it. This is mostly useful for testing.



EnableSaving()[source]

Globally enables saving the persistent properties (enabled by default).

Note

By default, saving properties in Save is enabled but the program may wish to disable if, for example, it detects that it is running on a system which shouldn’t be modified in any way and so configuration file (or Windows registry) shouldn’t be written to.



Find(window)[source]

Checks if the object is registered and return the associated PersistentObject if it is or None otherwise.

Parameters:window – an instance of wx.Window.


classmethod Free()[source]

Destructor for the unique persistence manager object.



classmethod Get()[source]

Accessor to the unique persistence manager object.



GetConfigurationHandler()[source]

Returns the persistent configuration handler for PersistenceManager.



GetKey(obj, keyName)[source]

Returns a correctly formatted key name for the object obj and keyName parameters.

Parameters:
  • obj – an instance of PersistentObject;
  • keyName – a string specifying the key name.


GetManagerStyle()[source]

Returns the PersistenceManager style.

See also

SetManagerStyle for a list of possible styles.



GetPersistenceDirectory()[source]

Returns a default persistent option directory for PersistenceManager.

Note

The return value of this method is not used if you are using your own custom configuration handler (i.e., by using ConfigObj/ConfigParser/cPickle etc...) or if you have specified a custom configuration file to use with wx.FileConfig.



GetPersistenceFile()[source]

Returns the persistent configuration file for PersistenceManager.

Note

The return value of this method is not used if you are using your own custom configuration handler (i.e., by using ConfigObj/ConfigParser/cPickle etc...).



GetPersistenceKey()[source]

Returns the persistent key name inside the configuration file for PersistenceManager.

Note

The return value of this method is not used if you are using your own custom configuration handler (i.e., by using ConfigObj/ConfigParser/cPickle etc...).



Register(window, persistenceHandler=None)[source]

Register an object with the manager.

Parameters:
  • window – an instance of wx.Window;

  • persistenceHandler – if not None, this should a custom handler derived from AbstractHandler.

Note

Note that registering the object doesn’t do anything except allowing to call Restore for it later. If you want to register the object and restore its properties, use RegisterAndRestore.

Note

The manager takes ownership of the PersistentObject and will delete it when it is unregistered.



RegisterAndRestore(window)[source]

Combines both Register and Restore calls.

Parameters:window – an instance of wx.Window.



RegisterAndRestoreAll(window, children=None)[source]

Recursively registers and restore the state of the input window and of all of its children.

Parameters:
  • window – an instance of wx.Window;

  • children – list of children of the input window, on first call it is equal to None.


Restore(window)[source]

Restores the state of an object.

Parameters:window – an instance of wx.Window.

Returns:True if the object properties were restored or False if nothing was found to restore or the saved settings were invalid.

Note

This methods does nothing if DisableRestoring was called.



RestoreCtrlValue(obj, keyName)[source]

Check if we persist the widget value, if so pass it to DoRestoreValue.

Parameters:
  • obj – an instance of PersistentObject;
  • keyName – a string specifying the key name.


RestoreValue(obj, keyName)[source]

Convenience method, all the action is done in DoRestoreValue.

Parameters:
  • obj – an instance of PersistentObject;
  • keyName – a string specifying the key name.


Save(window)[source]

Saves the state of an object.

Parameters:window – an instance of wx.Window.

Note

This methods does nothing if DisableSaving was called.



SaveAndUnregister(window=None)[source]

Combines both Save and Unregister calls.

Parameters:window – an instance of wx.Window. If it is None, all the windows previously registered are saved and then unregistered.



SaveCtrlValue(obj, keyName, value)[source]

Check if we persist the widget value, if so pass it to DoSaveValue.

Parameters:
  • obj – an instance of PersistentObject;
  • keyName – a string specifying the key name;
  • value – the value to store in the configuration file.


SaveValue(obj, keyName, value)[source]

Convenience method, all the action is done in DoSaveValue.

Parameters:
  • obj – an instance of PersistentObject;
  • keyName – a string specifying the key name;
  • value – the value to store in the configuration file.


SetConfigurationHandler(handler)[source]

Sets the persistent configuration handler for PersistenceManager.

Parameters:handler – an object capable of saving/restoring UI settings. This can be a cPickle object or a ConfigObj one, for example.

Note

UI settings are stored as dictionaries key <=> tuple: the tuple value contains two items. The first is the value type (i.e., float, int, bool etc...) while the second is the actual key value.



SetManagerStyle(style)[source]

Sets the PersistenceManager style.

Parameters:style – a combination of the following values:

Flag name Description
PM_SAVE_RESTORE_AUI_PERSPECTIVES If a toplevel window has an AUI manager associated, the manager will save and restore its AUI perspective
PM_SAVE_RESTORE_TREE_LIST_SELECTIONS If set, the manager will save items selections in list and tree controls
PM_PERSIST_CONTROL_VALUE If set, control values will be persisted. This is handy for e.g. applications using a database, where the data (control value) is persisted in the database and persisting it with PM again would only cause confusion.
PM_DEFAULT_STYLE Same as PM_SAVE_RESTORE_AUI_PERSPECTIVES.


SetPersistenceFile(fileName)[source]

Sets the persistent configuration file for PersistenceManager.

Parameters:fileName – the file name where to store the persistent options.

Note

Calling this method has no influence if you are using your own custom configuration handler (i.e., by using ConfigObj/ConfigParser/cPickle etc...).



SetPersistenceKey(key)[source]

Sets the persistent key name inside the configuration file for PersistenceManager.

Parameters:key – a short meaningful name for your unique preferences key.

Note

Calling this method has no influence if you are using your own custom configuration handler (i.e., by using ConfigObj/ConfigParser/cPickle etc...).



Unregister(window)[source]

Unregister the object, this is called by PersistentObject itself so there is usually no need to do it explicitly.

Parameters:window – an instance of wx.Window, which must have been previously registered with Register.

Note

For the persistent windows this is done automatically (via SaveAndUnregister) when the window is destroyed so you only need to call this function explicitly if you are using custom persistent objects or if you want to prevent the object properties from being saved.

Note

This deletes the associated PersistentObject.

Tree

Table Of Contents

Previous topic

persist.persistencemanager

Next topic

PersistentObject