#include <wx/persist/toplevel.h>
Persistence adapter for wxTopLevelWindow.
This adapter saves and restores the geometry (i.e. position and size) and the state (iconized, maximized or normal) of top level windows. It can be used with both wxFrame and wxDialog.
Note that it does not save nor restore the window visibility.
Public Member Functions | |
wxPersistentTLW (wxTopLevelWindow *book) | |
Constructor. | |
virtual void | Save () const |
Save the current window geometry. | |
virtual bool | Restore () |
Restore the window geometry. | |
Public Member Functions inherited from wxPersistentWindow< wxTopLevelWindow > | |
wxPersistentWindow (WindowType *win) | |
Constructor for a persistent window object. | |
WindowType * | Get () const |
virtual wxString | GetName () const |
Implements the base class pure virtual method using wxWindow::GetName(). | |
Public Member Functions inherited from wxPersistentObject | |
wxPersistentObject (void *obj) | |
Constructor takes the object which we're associated with. | |
virtual | ~wxPersistentObject () |
Trivial but virtual destructor. | |
void * | GetObject () const |
Return the associated object. | |
virtual wxString | GetKind () const =0 |
Returns the string uniquely identifying the objects supported by this adapter. | |
Additional Inherited Members | |
Public Types inherited from wxPersistentWindow< wxTopLevelWindow > | |
typedef wxTopLevelWindow | WindowType |
The type of the associated window. | |
Protected Member Functions inherited from wxPersistentObject | |
template<typename T > | |
bool | SaveValue (const wxString &name, T value) const |
Save the specified value using the given name. | |
template<typename T > | |
bool | RestoreValue (const wxString &name, T *value) |
Restore the value saved by Save(). | |
wxPersistentTLW::wxPersistentTLW | ( | wxTopLevelWindow * | book | ) |
Constructor.
book | The associated window. |
|
virtual |
Restore the window geometry.
Implements wxPersistentObject.
|
virtual |
Save the current window geometry.
Implements wxPersistentObject.