git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58604
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
defined for the objects of this class.
*/
template <class T>
defined for the objects of this class.
*/
template <class T>
- wxPersistentObject *Register(T *obj)
- {
- return Register(obj, wxCreatePersistentObject(obj));
- }
+ wxPersistentObject *Register(T *obj);
/**
Register an object with the manager.
/**
Register an object with the manager.
@see SaveAndUnregister()
*/
void Save(void *obj);
@see SaveAndUnregister()
*/
void Save(void *obj);
/**
Restore the object properties previously saved by Save().
/**
Restore the object properties previously saved by Save().
@true if the value was saved or @false if an error occurred.
*/
template <typename T>
@true if the value was saved or @false if an error occurred.
*/
template <typename T>
- bool SaveValue(const wxString& name, T value) const
- {
- return wxPersistenceManager::Get().SaveValue(*this, name, value);
- }
+ bool SaveValue(const wxString& name, T value) const;
/**
Restore the value saved by Save().
/**
Restore the value saved by Save().
found or an error occurred.
*/
template <typename T>
found or an error occurred.
*/
template <typename T>
- bool RestoreValue(const wxString& name, T *value)
- {
- return wxPersistenceManager::Get().RestoreValue(*this, name, value);
- }
+ bool RestoreValue(const wxString& name, T *value);
The returned pointer may be @NULL. It must not be deleted by the
caller, call @c reset(NULL) instead.
*/
The returned pointer may be @NULL. It must not be deleted by the
caller, call @c reset(NULL) instead.
*/
- T *get() const { return m_array; }
/// Swaps the contents of this array with another one.
/// Swaps the contents of this array with another one.
- void swap(wxScopedArray &other)
- {
- T * const tmp = other.m_array;
- other.m_array = m_array;
- m_array = tmp;
- }
+ void swap(wxScopedArray &other);
characters of the @a val string.
*/
template<bool (T)(const wxUniChar& c)>
characters of the @a val string.
*/
template<bool (T)(const wxUniChar& c)>
- inline bool wxStringCheck(const wxString& val)
- {
- for ( wxString::const_iterator i = val.begin();
- i != val.end();
- ++i )
- if (T(*i) == 0)
- return false;
- return true;
- }
+ inline bool wxStringCheck(const wxString& val);
@note Currently this function is wxMSW-only.
*/
@note Currently this function is wxMSW-only.
*/
- static void SetMaxWidth(int width) { ms_maxWidth = width; }
+ static void SetMaxWidth(int width);
/**
Set the delay between subsequent tooltips to appear.
/**
Set the delay between subsequent tooltips to appear.