// Modified by:
// Created: 04/01/98
// RCS-ID: $Id$
-// Copyright: (c) Julian Smart and Markus Holzem
-// Licence: wxWindows license
+// Copyright: (c) Julian Smart
+// Licence: wxWindows license
/////////////////////////////////////////////////////////////////////////////
#ifdef __GNUG__
#define __DOCSAMPLEH__
#include "wx/docview.h"
+#include "wx/cmdproc.h"
// Plots a line from one point to the other
class DoodleLine: public wxObject
{
public:
- long x1;
- long y1;
- long x2;
- long y2;
+ wxInt32 x1;
+ wxInt32 y1;
+ wxInt32 x2;
+ wxInt32 y2;
};
// Contains a list of lines: represents a mouse-down doodle
~DoodleSegment(void);
void Draw(wxDC *dc);
- ostream& SaveObject(ostream& stream);
- istream& LoadObject(istream& stream);
+
+#if wxUSE_STD_IOSTREAM
+ wxSTD ostream& SaveObject(wxSTD ostream& text_stream);
+ wxSTD istream& LoadObject(wxSTD istream& text_stream);
+#else
+ wxOutputStream& SaveObject(wxOutputStream& stream);
+ wxInputStream& LoadObject(wxInputStream& stream);
+#endif
};
class DrawingDocument: public wxDocument
DrawingDocument(void);
~DrawingDocument(void);
- ostream& SaveObject(ostream& stream);
- istream& LoadObject(istream& stream);
+#if wxUSE_STD_IOSTREAM
+ wxSTD ostream& SaveObject(wxSTD ostream& text_stream);
+ wxSTD istream& LoadObject(wxSTD istream& text_stream);
+#else
+ wxOutputStream& SaveObject(wxOutputStream& stream);
+ wxInputStream& LoadObject(wxInputStream& stream);
+#endif
inline wxList& GetDoodleSegments(void) const { return (wxList&) doodleSegments; };
};
private:
public:
/*
- ostream& SaveObject(ostream& stream);
- istream& LoadObject(istream& stream);
+ wxSTD ostream& SaveObject(wxSTD ostream& stream);
+ wxSTD istream& LoadObject(wxSTD istream& stream);
*/
virtual bool OnSaveDocument(const wxString& filename);
virtual bool OnOpenDocument(const wxString& filename);