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
|
#############################################################################
## Name: ext/richtext/typemap.xsp
## Purpose: typemap file for xsubppp.pl
## Author: Mattia Barbon
## Modified by:
## Created: 05/11/2006
## RCS-ID: $Id: typemap.xsp 2911 2010-04-26 19:51:34Z mbarbon $
## Copyright: (c) 2006-2010 Mattia Barbon
## Licence: This program is free software; you can redistribute it and/or
## modify it under the same terms as Perl itself
#############################################################################
%typemap{wxFontStyle}{simple};
%typemap{wxFontWeight}{simple};
%typemap{wxBitmapType}{simple};
%typemap{wxPliRichTextStyleType}{simple};
%typemap{wxRichTextOddEvenPage}{simple};
%typemap{wxRichTextPageLocation}{simple};
%typemap{const wxRichTextAttr&}{reference};
%typemap{wxRichTextAttr&}{reference};
%typemap{const wxRichTextRange&}{reference};
%typemap{const wxTextAttr&}{reference};
%typemap{const wxTextAttrEx&}{reference};
%typemap{wxRichTextAttr*}{simple};
%typemap{wxRichTextAttrDisown*}{parsed}{
%cpp_type{%wxRichTextAttr*%};
%cleanup_code{%wxPli_object_set_deleteable( aTHX_ $PerlVar, false )%};
};
%typemap{wxRichTextBuffer*}{simple};
%typemap{wxRichTextCtrl*}{simple};
%typemap{wxRichTextStyleListBox*}{simple};
%typemap{wxRichTextStyleListCtrl*}{simple};
%typemap{wxRichTextStyleComboCtrl*}{simple};
%typemap{wxRichTextEvent*}{simple};
%typemap{wxRichTextRange*}{simple};
%typemap{wxRichTextStyleSheet*}{simple};
%typemap{wxRichTextStyleSheetDisown*}{parsed}{
%cpp_type{%wxRichTextStyleSheet*%};
%cleanup_code{%wxPli_object_set_deleteable( aTHX_ $PerlVar, false )%};
};
%typemap{const wxRichTextStyleSheet&}{reference};
%typemap{wxTextAttrAlignment}{simple};
%typemap{wxTextAttrEx*}{simple};
%typemap{wxRichTextRange}{reference};
%typemap{const wxImage&}{reference};
%typemap{wxRichTextStyleDefinition*}{simple};
%typemap{wxRichTextStyleDefinition*}{simple};
%typemap{wxRichTextStyleDefinitionDisown*}{parsed}{
%cpp_type{%wxRichTextStyleDefinition*%};
%cleanup_code{%wxPli_object_set_deleteable( aTHX_ $PerlVar, false )%};
%precall_code{%wxPli_object_set_deleteable( aTHX_ $PerlVar, false )%};
};
%typemap{const wxRichTextStyleDefinition&}{reference};
%typemap{wxRichTextCharacterStyleDefinition*}{simple};
%typemap{wxRichTextCharacterStyleDefinitionDisown*}{parsed}{
%cpp_type{%wxRichTextCharacterStyleDefinition*%};
%cleanup_code{%wxPli_object_set_deleteable( aTHX_ $PerlVar, false )%};
%precall_code{%wxPli_object_set_deleteable( aTHX_ $PerlVar, false )%};
};
%typemap{wxRichTextParagraphStyleDefinition*}{simple};
%typemap{wxRichTextParagraphStyleDefinitionDisown*}{parsed}{
%cpp_type{%wxRichTextParagraphStyleDefinition*%};
%cleanup_code{%wxPli_object_set_deleteable( aTHX_ $PerlVar, false )%};
%precall_code{%wxPli_object_set_deleteable( aTHX_ $PerlVar, false )%};
};
%typemap{const wxRichTextParagraphStyleDefinition&}{reference};
%typemap{wxRichTextListStyleDefinition*}{simple};
%typemap{wxRichTextListStyleDefinitionDisown*}{parsed}{
%cpp_type{%wxRichTextListStyleDefinition*%};
%cleanup_code{%wxPli_object_set_deleteable( aTHX_ $PerlVar, false )%};
%precall_code{%wxPli_object_set_deleteable( aTHX_ $PerlVar, false )%};
};
%typemap{const wxRichTextListStyleDefinition&}{reference};
%typemap{wxRichTextFormattingDialog*}{simple};
%typemap{wxRichTextFileHandler*}{simple};
%typemap{wxPlRichTextFileHandler*}{simple};
%typemap{wxPrintData*}{simple};
%typemap{const wxPrintData&}{reference};
%typemap{const wxRichTextBuffer&}{reference};
%typemap{wxRichTextPrinting*}{simple};
%typemap{const wxPageSetupDialogData&}{reference};
%typemap{wxPageSetupDialogData*}{simple};
%typemap{wxRichTextHeaderFooterData*}{simple};
%typemap{const wxRichTextHeaderFooterData&}{reference};
|