]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/docview/doc.cpp
Add a test of precisely sized status bar fields.
[wxWidgets.git] / samples / docview / doc.cpp
index f43bbb1c13c93ebc10bc67c8923567b2ab682178..4892856fe09fbb4203cb849f21431f1a5c70a77a 100644 (file)
@@ -176,6 +176,24 @@ DocumentIstream& DoodleSegment::LoadObject(DocumentIstream& istream)
 
 IMPLEMENT_CLASS(wxTextDocument, wxDocument)
 
+bool wxTextDocument::OnCreate(const wxString& path, long flags)
+{
+    if ( !wxDocument::OnCreate(path, flags) )
+        return false;
+
+    // subscribe to changes in the text control to update the document state
+    // when it's modified
+    GetTextCtrl()->Connect
+    (
+        wxEVT_COMMAND_TEXT_UPDATED,
+        wxCommandEventHandler(wxTextDocument::OnTextChange),
+        NULL,
+        this
+    );
+
+    return true;
+}
+
 // Since text windows have their own method for saving to/loading from files,
 // we override DoSave/OpenDocument instead of Save/LoadObject
 bool wxTextDocument::DoSaveDocument(const wxString& filename)
@@ -185,7 +203,13 @@ bool wxTextDocument::DoSaveDocument(const wxString& filename)
 
 bool wxTextDocument::DoOpenDocument(const wxString& filename)
 {
-    return GetTextCtrl()->LoadFile(filename);
+    if ( !GetTextCtrl()->LoadFile(filename) )
+        return false;
+
+    // we're not modified by the user yet
+    Modify(false);
+
+    return true;
 }
 
 bool wxTextDocument::IsModified() const
@@ -205,6 +229,13 @@ void wxTextDocument::Modify(bool modified)
     }
 }
 
+void wxTextDocument::OnTextChange(wxCommandEvent& event)
+{
+    Modify(true);
+
+    event.Skip();
+}
+
 // ----------------------------------------------------------------------------
 // TextEditDocument implementation
 // ----------------------------------------------------------------------------