############################################################################# ## Name: ext/docview/XS/Document.xs ## Purpose: XS for wxDocument (Document/View Framework) ## Author: Simon Flack ## Modified by: ## Created: 11/09/2002 ## RCS-ID: $Id: Document.xs 2188 2007-08-20 19:21:29Z mbarbon $ ## Copyright: (c) 2001, 2004, 2007 Mattia Barbon ## Licence: This program is free software; you can redistribute it and/or ## modify it under the same terms as Perl itself ############################################################################# #include MODULE=Wx PACKAGE=Wx::Document wxDocument* wxDocument::new() CODE: RETVAL=new wxPliDocument( CLASS ); OUTPUT: RETVAL bool wxDocument::DeleteContents() bool wxDocument::Close() bool wxDocument::OnCloseDocument() void wxDocument::NotifyClosing() SV* wxDocument::GetViews() CODE: AV* arrViews = wxPli_objlist_2_av( aTHX_ THIS->GetViews() ); RETVAL = newRV_noinc( (SV*)arrViews ); OUTPUT: RETVAL bool wxDocument::DeleteAllViews() wxView* wxDocument::GetFirstView() wxDocManager* wxDocument::GetDocumentManager() wxDocTemplate* wxDocument::GetDocumentTemplate() wxString wxDocument::GetDocumentName() bool wxDocument::OnNewDocument() bool wxDocument::Save() bool wxDocument::SaveAs() bool wxDocument::OnSaveDocument( file ) wxString file bool wxDocument::OnOpenDocument( file ) wxString file bool wxDocument::GetDocumentSaved() void wxDocument::SetDocumentSaved( saved ) bool saved bool wxDocument::Revert() #if WXPERL_W_VERSION_GE( 2, 9, 0 ) wxString wxDocument::GetUserReadableName() #else bool wxDocument::GetPrintableName( buf ) wxString buf #endif wxWindow* wxDocument::GetDocumentWindow() wxCommandProcessor* wxDocument::OnCreateCommandProcessor() void wxDocument::SetCommandProcessor( processor ) wxCommandProcessor* processor CODE: wxPli_object_set_deleteable( aTHX_ ST(1), false ); THIS->SetCommandProcessor( processor ); bool wxDocument::OnSaveModified() bool wxDocument::IsModified( ) void wxDocument::Modify( modify ) bool modify bool wxDocument::AddView( view ) wxView* view bool wxDocument::RemoveView( view ) wxView* view bool wxDocument::OnCreate( path, flags ) wxString path long flags void wxDocument::OnChangedViewList() void wxDocument::UpdateAllViews(sender = NULL, hint = NULL) wxView* sender wxObject* hint void wxDocument::SetFilename(filename, notifyViews = false) wxString filename bool notifyViews wxString wxDocument::GetFilename() void wxDocument::SetTitle( title ) wxString title wxString wxDocument::GetTitle() void wxDocument::SetDocumentName( name ) wxString name void wxDocument::SetDocumentTemplate( templ ) wxDocTemplate* templ