#pragma hdrstop
#endif
+#ifndef WX_PRECOMP
#include "wx/hash.h"
+#include "wx/objstrm.h"
+#endif
#include <string.h>
#include <assert.h>
-#if (DEBUG && USE_MEMORY_TRACING) || USE_DEBUG_CONTEXT
+#if (WXDEBUG && USE_MEMORY_TRACING) || USE_DEBUG_CONTEXT
#include "wx/memory.h"
#endif
-#if DEBUG || USE_DEBUG_CONTEXT
+#if WXDEBUG || USE_DEBUG_CONTEXT
// for wxObject::Dump
#include <iostream.h>
#endif
return FALSE;
}
-#if DEBUG || USE_DEBUG_CONTEXT
+#if WXDEBUG || USE_DEBUG_CONTEXT
void wxObject::Dump(ostream& str)
{
if (GetClassInfo() && GetClassInfo()->GetClassName())
}
#endif
-#if DEBUG && USE_MEMORY_TRACING
+#if WXDEBUG && USE_MEMORY_TRACING
#ifdef new
#undef new
* Class info: provides run-time class type information.
*/
-#ifdef USE_STORABLE_CLASSES
-
-wxClassInfo::wxClassInfo(char *cName, char *baseName1, char *baseName2, int sz, wxObjectConstructorFn fn,
- wxStorableConstructorFn stoFn )
-{
- className = cName;
- baseClassName1 = baseName1;
- baseClassName2 = baseName2;
-
- objectSize = sz;
- objectConstructor = fn;
- storableConstructor = stoFn;
-
- next = first;
- first = this;
-
- baseInfo1 = NULL;
- baseInfo2 = NULL;
-}
-
-wxObject* wxClassInfo::CreateObject( istream &stream, char *data )
-{
- if (storableConstructor)
- return (wxObject *)(*storableConstructor)( stream, data );
- else
- return NULL;
-}
-
-#else
-
wxClassInfo::wxClassInfo(char *cName, char *baseName1, char *baseName2, int sz, wxObjectConstructorFn constr)
{
className = cName;
baseInfo2 = NULL;
}
-#endif
-
wxObject *wxClassInfo::CreateObject(void)
{
if (objectConstructor)
#ifdef USE_STORABLE_CLASSES
-wxObject* wxCreateStoredObject( char *name, istream &stream, char *data )
+#include "wx/serbase.h"
+#include "wx/dynlib.h"
+#include "wx/msgdlg.h"
+
+wxObject* wxCreateStoredObject( wxInputStream &stream )
{
- wxClassInfo *info = wxClassInfo::first;
- while (info)
- {
- if (info->className && strcmp(info->className, name) == 0)
- return info->CreateObject( stream, data );
- info = info->next;
- }
- return NULL;
+ wxObjectInputStream obj_s(stream);
+ return obj_s.LoadObject();
};
+void wxObject::StoreObject( wxObjectOutputStream& stream )
+{
+ wxString obj_name = wxString(GetClassInfo()->GetClassName()) + "_Serialize";
+ wxLibrary *lib = wxTheLibraries.LoadLibrary("wxserial");
+ WXSERIAL(wxObject) *serial =
+ (WXSERIAL(wxObject) *)lib->CreateObject( obj_name );
+
+ if (!serial) {
+ wxString message;
+
+ message.Printf("Can't find the serialization object (%s) for the object %s",
+ WXSTRINGCAST obj_name, WXSTRINGCAST GetClassInfo()->GetClassName());
+ wxMessageBox(message, "Alert !");
+ return;
+ }
+
+ serial->SetObject(this);
+ serial->StoreObject(stream);
+}
+
+void wxObject::LoadObject( wxObjectInputStream& stream )
+{
+ wxString obj_name = wxString(GetClassInfo()->GetClassName()) + "_Serialize";
+ wxLibrary *lib = wxTheLibraries.LoadLibrary("wxserial");
+ WXSERIAL(wxObject) *serial =
+ (WXSERIAL(wxObject) *)lib->CreateObject( obj_name );
+
+ if (!serial) {
+ wxString message;
+
+ message.Printf("Can't find the serialization object (%s) for the object %s",
+ WXSTRINGCAST obj_name,
+ WXSTRINGCAST GetClassInfo()->GetClassName());
+ wxMessageBox(message, "Alert !");
+ return;
+ }
+
+ serial->SetObject(this);
+ serial->LoadObject(stream);
+}
+
#endif
/*