.. wxPython Phoenix documentation This file was generated by Phoenix's sphinx generator and associated tools, do not edit by hand. Copyright: (c) 2011-2020 by Total Control Software License: wxWindows License .. include:: headings.inc .. currentmodule:: wx.lib.agw.persist.persistencemanager .. highlight:: python .. _wx.lib.agw.persist.persistencemanager.PersistenceManager: ========================================================================================================================================== |phoenix_title| **wx.lib.agw.persist.persistencemanager.PersistenceManager** ========================================================================================================================================== :class:`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 :ref:`persistent-overview` in the `__init__.py` file for its overview. This is a singleton class and its unique instance can be retrieved using :meth:`PersistenceManager.Get() ` method. | |class_hierarchy| Class Hierarchy ================================= .. raw:: html
Inheritance diagram for class PersistenceManager:
| |method_summary| Methods Summary ================================ ========================================================================================= ================================================================================ :meth:`~wx.lib.agw.persist.persistencemanager.PersistenceManager.__init__` Default class constructor. :meth:`~wx.lib.agw.persist.persistencemanager.PersistenceManager.AddBadDefaultName` Adds a name to the ``BAD_DEFAULT_NAMES`` constant. :meth:`~wx.lib.agw.persist.persistencemanager.PersistenceManager.DisableRestoring` Globally disables restoring the persistent properties (enabled by default). :meth:`~wx.lib.agw.persist.persistencemanager.PersistenceManager.DisableSaving` Globally disables saving the persistent properties (enabled by default). :meth:`~wx.lib.agw.persist.persistencemanager.PersistenceManager.DoRestoreValue` Method used by the persistent objects to restore the data. :meth:`~wx.lib.agw.persist.persistencemanager.PersistenceManager.DoSaveValue` Method used by the persistent objects to save the data. :meth:`~wx.lib.agw.persist.persistencemanager.PersistenceManager.EnableRestoring` Globally enables restoring the persistent properties (enabled by default). :meth:`~wx.lib.agw.persist.persistencemanager.PersistenceManager.EnableSaving` Globally enables saving the persistent properties (enabled by default). :meth:`~wx.lib.agw.persist.persistencemanager.PersistenceManager.Find` Checks if the object is registered and return the associated :class:`PersistentObject` :meth:`~wx.lib.agw.persist.persistencemanager.PersistenceManager.GetConfigurationHandler` Returns the persistent configuration handler for :class:`PersistenceManager`. :meth:`~wx.lib.agw.persist.persistencemanager.PersistenceManager.GetKey` Returns a correctly formatted key name for the object `obj` and `keyName` parameters. :meth:`~wx.lib.agw.persist.persistencemanager.PersistenceManager.GetManagerStyle` Returns the :class:`PersistenceManager` style. :meth:`~wx.lib.agw.persist.persistencemanager.PersistenceManager.GetPersistenceDirectory` Returns a default persistent option directory for :class:`PersistenceManager`. :meth:`~wx.lib.agw.persist.persistencemanager.PersistenceManager.GetPersistenceFile` Returns the persistent configuration file for :class:`PersistenceManager`. :meth:`~wx.lib.agw.persist.persistencemanager.PersistenceManager.GetPersistenceKey` Returns the persistent key name inside the configuration file for :class:`PersistenceManager`. :meth:`~wx.lib.agw.persist.persistencemanager.PersistenceManager.HasRestored` This method returns ``True`` if any of the windows managed by :meth:`~wx.lib.agw.persist.persistencemanager.PersistenceManager.Register` Register an object with the manager. :meth:`~wx.lib.agw.persist.persistencemanager.PersistenceManager.RegisterAndRestore` Combines both :meth:`~PersistenceManager.Register` and :meth:`~PersistenceManager.Restore` calls. :meth:`~wx.lib.agw.persist.persistencemanager.PersistenceManager.RegisterAndRestoreAll` Recursively registers and restore the state of the input `window` and of :meth:`~wx.lib.agw.persist.persistencemanager.PersistenceManager.Restore` Restores the state of an object. :meth:`~wx.lib.agw.persist.persistencemanager.PersistenceManager.RestoreAll` Recursively restore the state of the input `window` and of :meth:`~wx.lib.agw.persist.persistencemanager.PersistenceManager.RestoreCtrlValue` Check if we should restore the widget value, if so pass it to :meth:`~PersistenceManager.DoRestoreValue`, :meth:`~wx.lib.agw.persist.persistencemanager.PersistenceManager.RestoreValue` Convenience method, all the action is done in :meth:`~PersistenceManager.DoRestoreValue`. :meth:`~wx.lib.agw.persist.persistencemanager.PersistenceManager.Save` Saves the state of an object. :meth:`~wx.lib.agw.persist.persistencemanager.PersistenceManager.SaveAndUnregister` Combines both :meth:`~PersistenceManager.Save` and :meth:`~PersistenceManager.Unregister` calls. :meth:`~wx.lib.agw.persist.persistencemanager.PersistenceManager.SaveCtrlValue` Check if we persist the widget value, if so pass it to :meth:`~PersistenceManager.DoSaveValue`, :meth:`~wx.lib.agw.persist.persistencemanager.PersistenceManager.SaveValue` Convenience method, all the action is done in :meth:`~PersistenceManager.DoSaveValue`. :meth:`~wx.lib.agw.persist.persistencemanager.PersistenceManager.SetConfigurationHandler` Sets the persistent configuration handler for :class:`PersistenceManager`. :meth:`~wx.lib.agw.persist.persistencemanager.PersistenceManager.SetManagerStyle` Sets the :class:`PersistenceManager` style. :meth:`~wx.lib.agw.persist.persistencemanager.PersistenceManager.SetPersistenceFile` Sets the persistent configuration file for :class:`PersistenceManager`. :meth:`~wx.lib.agw.persist.persistencemanager.PersistenceManager.SetPersistenceKey` Sets the persistent key name inside the configuration file for :class:`PersistenceManager`. :meth:`~wx.lib.agw.persist.persistencemanager.PersistenceManager.Unregister` Unregister the object, this is called by :class:`PersistenceManager` itself so there is ========================================================================================= ================================================================================ | |property_summary| Properties Summary ===================================== ================================================================================= ================================================================================ :attr:`~wx.lib.agw.persist.persistencemanager.PersistenceManager.HasRestoredProp` This property returns ``True`` if any of the windows managed by ================================================================================= ================================================================================ | |api| Class API =============== .. class:: PersistenceManager(object) :class:`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 :ref:`persistent-overview` in the `__init__.py` file for its overview. This is a singleton class and its unique instance can be retrieved using :meth:`PersistenceManager.Get() ` method. .. method:: __init__(self) Default class constructor. This method should **not** be called directly: you should use the object obtained by :meth:`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 :class:`PersistenceManager`, a custom file name to which :class:`FileConfig` will access to store and retrieve UI settings; - `configKey`: the persistent key name inside the configuration file for :class:`PersistenceManager`; - `customConfigHandler`: the persistent configuration handler for :class:`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:: An individual window can also set the variable `persistValue` to indicate that its value should be saved/restored even so the style `PM_PERSIST_CONTROL_VALUE` is not set. .. 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. .. method:: AddBadDefaultName(self, name) Adds a name to the ``BAD_DEFAULT_NAMES`` constant. :param `name`: a string specifying the control's default name. .. method:: DisableRestoring(self) Globally disables restoring the persistent properties (enabled by default). .. note:: By default, restoring properties in :meth:`~PersistenceManager.Restore` is enabled but this function allows to disable it. This is mostly useful for testing. .. method:: DisableSaving(self) Globally disables saving the persistent properties (enabled by default). .. note:: By default, saving properties in :meth:`~PersistenceManager.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. .. method:: DoRestoreValue(self, obj, keyName) Method used by the persistent objects to restore the data. By default this method simply use :class:`FileConfig` but this behaviour may be overridden by passing a custom config handler in the PersistenceManager constructor. :param `obj`: an instance of :class:`PersistentObject`; :param `keyName`: a string specifying the key name. .. method:: DoSaveValue(self, obj, keyName, value) Method used by the persistent objects to save the data. By default this method simply use :class:`FileConfig` but this behaviour may be overridden by passing a custom configuration handler in the :class:`PersistenceManager` constructor. :param `obj`: an instance of :class:`PersistentObject`; :param `keyName`: a string specifying the key name; :param `value`: the value to store in the configuration file. .. method:: EnableRestoring(self) Globally enables restoring the persistent properties (enabled by default). .. note:: By default, restoring properties in :meth:`~PersistenceManager.Restore` is enabled but this function allows to disable it. This is mostly useful for testing. .. method:: EnableSaving(self) Globally enables saving the persistent properties (enabled by default). .. note:: By default, saving properties in :meth:`~PersistenceManager.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. .. method:: Find(self, window) Checks if the object is registered and return the associated :class:`PersistentObject` if it is or ``None`` otherwise. :param `window`: an instance of :class:`wx.Window`. .. method:: GetConfigurationHandler(self) Returns the persistent configuration handler for :class:`PersistenceManager`. .. method:: GetKey(self, obj, keyName) Returns a correctly formatted key name for the object `obj` and `keyName` parameters. :param `obj`: an instance of :class:`PersistentObject`; :param `keyName`: a string specifying the key name. .. method:: GetManagerStyle(self) Returns the :class:`PersistenceManager` style. .. seealso:: :meth:`~PersistenceManager.SetManagerStyle` for a list of possible styles. .. method:: GetPersistenceDirectory(self) Returns a default persistent option directory for :class:`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 :class:`FileConfig`. .. method:: GetPersistenceFile(self) Returns the persistent configuration file for :class:`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...). .. method:: GetPersistenceKey(self) Returns the persistent key name inside the configuration file for :class:`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...). .. method:: HasRestored(self) This method returns ``True`` if any of the windows managed by :class:`PersistenceManager` has had its settings restored. :returns: ``True`` if any window was restored, ``False`` otherwise. .. versionadded:: 0.9.7 .. method:: Register(self, window, persistenceHandler=None) Register an object with the manager. :param `window`: an instance of :class:`wx.Window`; :param `persistenceHandler`: if not ``None``, this should a custom handler derived from :class:`~wx.lib.agw.persist.persist_handlers.AbstractHandler`. .. note:: Note that registering the object doesn't do anything except allowing to call :meth:`~PersistenceManager.Restore` for it later. If you want to register the object and restore its properties, use :meth:`~PersistenceManager.RegisterAndRestore`. .. note:: The manager takes ownership of the :class:`PersistentObject` and will delete it when it is unregistered. .. method:: RegisterAndRestore(self, window) Combines both :meth:`~PersistenceManager.Register` and :meth:`~PersistenceManager.Restore` calls. :param `window`: an instance of :class:`wx.Window`. .. method:: RegisterAndRestoreAll(self, window, children=None) Recursively registers and restore the state of the input `window` and of all of its children. :param `window`: an instance of :class:`wx.Window`; :param `children`: list of children of the input `window`, on first call it is equal to ``None``. .. method:: Restore(self, window) Restores the state of an object. :param `window`: an instance of :class:`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 :meth:`~PersistenceManager.DisableRestoring` was called. .. method:: RestoreAll(self, window, children=None) Recursively restore the state of the input `window` and of all of its children. :param `window`: an instance of :class:`wx.Window`; :param `children`: list of children of the input `window`, on first call it is equal to ``None``. .. method:: RestoreCtrlValue(self, obj, keyName) Check if we should restore the widget value, if so pass it to :meth:`~PersistenceManager.DoRestoreValue`, this method checks the style `PM_PERSIST_CONTROL_VALUE` and if if it is not set it will also check the variable `persistValue` of the individual window. :param `obj`: an instance of :class:`PersistentObject`; :param `keyName`: a string specifying the key name. .. method:: RestoreValue(self, obj, keyName) Convenience method, all the action is done in :meth:`~PersistenceManager.DoRestoreValue`. :param `obj`: an instance of :class:`PersistentObject`; :param `keyName`: a string specifying the key name. .. method:: Save(self, window) Saves the state of an object. :param `window`: an instance of :class:`wx.Window`. .. note:: This methods does nothing if :meth:`~PersistenceManager.DisableSaving` was called. .. method:: SaveAndUnregister(self, window=None) Combines both :meth:`~PersistenceManager.Save` and :meth:`~PersistenceManager.Unregister` calls. :param `window`: an instance of :class:`wx.Window`. If it is ``None``, all the windows previously registered are saved and then unregistered. .. method:: SaveCtrlValue(self, obj, keyName, value) Check if we persist the widget value, if so pass it to :meth:`~PersistenceManager.DoSaveValue`, this method checks the style `PM_PERSIST_CONTROL_VALUE` and if it is not set it will also check the variable `persistValue` of the individual window. :param `obj`: an instance of :class:`PersistentObject`; :param `keyName`: a string specifying the key name; :param `value`: the value to store in the configuration file. .. method:: SaveValue(self, obj, keyName, value) Convenience method, all the action is done in :meth:`~PersistenceManager.DoSaveValue`. :param `obj`: an instance of :class:`PersistentObject`; :param `keyName`: a string specifying the key name; :param `value`: the value to store in the configuration file. .. method:: SetConfigurationHandler(self, handler) Sets the persistent configuration handler for :class:`PersistenceManager`. :param `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. .. method:: SetManagerStyle(self, style) Sets the :class:`PersistenceManager` style. :param `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``. ======================================== ================================== .. method:: SetPersistenceFile(self, fileName) Sets the persistent configuration file for :class:`PersistenceManager`. :param `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...). .. method:: SetPersistenceKey(self, key) Sets the persistent key name inside the configuration file for :class:`PersistenceManager`. :param `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...). .. method:: Unregister(self, window) Unregister the object, this is called by :class:`PersistenceManager` itself so there is usually no need to do it explicitly. :param `window`: an instance of :class:`wx.Window`, which must have been previously registered with :meth:`~PersistenceManager.Register`. .. note:: For the persistent windows this is done automatically (via :meth:`~PersistenceManager.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 :class:`PersistentObject`. .. attribute:: HasRestoredProp This property returns ``True`` if any of the windows managed by :class:`PersistenceManager` has had its settings restored. :returns: ``True`` if any window was restored, ``False`` otherwise. .. versionadded:: 0.9.7