]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/docview/doc.h
more readable argument names for wxDC::DrawArc
[wxWidgets.git] / samples / docview / doc.h
index 8365009d5cde04a245451558c2d32f72e007dc6f..fbe0101a7969b6c383b9fdb93210e4c6a7d25af4 100644 (file)
@@ -16,6 +16,7 @@
 #include "wx/docview.h"
 #include "wx/cmdproc.h"
 #include "wx/vector.h"
+#include "wx/image.h"
 
 // This sample is written to build both with wxUSE_STD_IOSTREAM==0 and 1, which
 // somewhat complicates its code but is necessary in order to support building
@@ -164,6 +165,9 @@ class wxTextDocument : public wxDocument
 {
 public:
     wxTextDocument() : wxDocument() { }
+
+    virtual bool OnCreate(const wxString& path, long flags); 
+
     virtual wxTextCtrl* GetTextCtrl() const = 0;
 
     virtual bool IsModified() const;
@@ -173,6 +177,8 @@ protected:
     virtual bool DoSaveDocument(const wxString& filename);
     virtual bool DoOpenDocument(const wxString& filename);
 
+    void OnTextChange(wxCommandEvent& event);
+
     wxDECLARE_NO_COPY_CLASS(wxTextDocument);
     DECLARE_CLASS(wxTextDocument)
 };
@@ -191,4 +197,25 @@ public:
     DECLARE_DYNAMIC_CLASS(TextEditDocument)
 };
 
+// ----------------------------------------------------------------------------
+// A document class representing an image
+// ----------------------------------------------------------------------------
+
+class ImageDocument : public wxDocument
+{
+public:
+    ImageDocument() : wxDocument() { }
+
+    wxImage GetImage() const { return m_image; }
+
+protected:
+    virtual bool DoOpenDocument(const wxString& file);
+
+private:
+    wxImage m_image;
+
+    wxDECLARE_NO_COPY_CLASS(ImageDocument);
+    DECLARE_DYNAMIC_CLASS(ImageDocument)
+};
+
 #endif // _WX_SAMPLES_DOCVIEW_DOC_H_