1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
|
#############################################################################
## 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 <wx/cmdproc.h>
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
|