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 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
|
#############################################################################
## Name: ext/richtext/XS/RichTextBuffer.xsp
## Purpose: XS++ for Wx::RichTextBuffer
## Author: Mattia Barbon
## Modified by:
## Created: 03/09/2007
## RCS-ID: $Id: RichTextBuffer.xsp 3293 2012-05-16 20:02:24Z mdootson $
## Copyright: (c) 2007, 2010 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/event.h>
#include <wx/richtext/richtextbuffer.h>
%module{Wx};
## DECLARE_OVERLOAD( wrta, Wx::RichTextAttr )
## DECLARE_OVERLOAD( wrtr, Wx::RichTextRange )
## DECLARE_OVERLOAD( wtae, Wx::TextAttrEx )
%loadplugin{build::Wx::XSP::Overload};
%name{Wx::RichTextBuffer} class wxRichTextBuffer
{
%{
static void
wxRichTextBuffer::CLONE()
CODE:
wxPli_thread_sv_clone( aTHX_ CLASS, (wxPliCloneSV)wxPli_detach_object );
%}
// allow copy of wxRichTextBuffer
wxRichTextBuffer(const wxRichTextBuffer& obj);
%name{Destroy} virtual ~wxRichTextBuffer()
%code%{ wxPli_thread_sv_unregister( aTHX_ "Wx::RichTextBuffer", THIS, ST(0) );
if( wxPli_object_is_deleteable( aTHX_ ST(0) ) )
delete THIS;
%};
virtual void ResetAndClearCommands();
bool AddEventHandler( wxEvtHandler* handler );
void AddHandler( wxRichTextFileHandler* handler );
#if WXPERL_W_VERSION_GE( 2, 7, 1 )
%name{SetStyleEx} bool SetStyle
( const wxRichTextRange& range, const wxTextAttrEx& style,
int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO );
%name{SetStyleRich} bool SetStyle
( const wxRichTextRange& range, const wxRichTextAttr& style,
int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO );
%{
void
wxRichTextBuffer::SetStyle( ... )
PPCODE:
BEGIN_OVERLOAD()
MATCH_REDISP_COUNT_ALLOWMORE( wxPliOvl_wrtr_wrta_n, SetStyleRich, 2 )
MATCH_REDISP_COUNT_ALLOWMORE( wxPliOvl_wrtr_wtae_n, SetStyleEx, 2 )
END_OVERLOAD( "Wx::RichTextBuffer::SetStyle" )
%}
#endif
bool InsertTextWithUndo( long pos, const wxString& text,
wxRichTextCtrl* ctrl, int flags = 0 );
bool InsertNewlineWithUndo( long pos, wxRichTextCtrl* ctrl,
int flags = 0 );
const wxTextAttrEx& GetBasicStyle() const;
const wxTextAttrEx& GetDefaultStyle() const;
bool BeginStyle( const wxTextAttrEx& style );
bool EndStyle();
bool EndAllStyles();
bool BeginBold();
bool EndBold();
bool BeginItalic();
bool EndItalic();
bool BeginUnderline();
bool EndUnderline();
bool BeginFontSize( int pointSize );
bool EndFontSize();
bool BeginFont( const wxFont& font );
bool EndFont();
bool BeginTextColour( const wxColour& colour );
bool EndTextColour();
bool BeginAlignment( wxTextAttrAlignment alignment );
bool EndAlignment();
bool BeginLeftIndent( int leftIndent, int leftSubIndent = 0 );
bool EndLeftIndent();
bool BeginRightIndent( int rightIndent );
bool EndRightIndent();
bool BeginParagraphSpacing( int before, int after );
bool EndParagraphSpacing();
bool BeginLineSpacing( int lineSpacing );
bool EndLineSpacing();
bool BeginNumberedBullet( int bulletNumber, int leftIndent,
int leftSubIndent,
int bulletStyle = wxTEXT_ATTR_DEFAULT_NUMBERED_BULLET );
bool EndNumberedBullet();
#if WXPERL_W_VERSION_GE( 2, 7, 2 )
bool BeginSymbolBullet( const wxString& symbol, int leftIndent,
int leftSubIndent, int bulletStyle = wxTEXT_ATTR_BULLET_STYLE_SYMBOL );
#else
bool BeginSymbolBullet( wxChar symbol, int leftIndent,
int leftSubIndent, int bulletStyle = wxTEXT_ATTR_BULLET_STYLE_SYMBOL );
#endif
bool EndSymbolBullet();
#if WXPERL_W_VERSION_GE( 2, 7, 2 )
bool BeginStandardBullet( const wxString& bulletName, int leftIndent,
int leftSubIndent, int bulletStyle = wxTEXT_ATTR_BULLET_STYLE_STANDARD );
bool EndStandardBullet();
#endif
bool BeginCharacterStyle( const wxString& characterStyle );
bool EndCharacterStyle();
bool BeginParagraphStyle( const wxString& paragraphStyle );
bool EndParagraphStyle();
#if WXPERL_W_VERSION_GE( 2, 7, 2 )
bool BeginListStyle( const wxString& listStyle, int level = 1,
int number = 1 );
bool EndListStyle();
bool BeginURL( const wxString& url,
const wxString& characterStyle = wxEmptyString );
bool EndURL();
#endif
#if WXPERL_W_VERSION_GE( 2, 7, 2 )
bool ClearListStyle( const wxRichTextRange& range,
int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO );
#endif
wxRichTextRange AddParagraph( const wxString& text );
wxRichTextRange AddImage( const wxImage& image );
bool BeginBatchUndo( const wxString& cmdName );
bool EndBatchUndo();
bool BatchingUndo() const;
bool BeginSuppressUndo();
bool EndSuppressUndo();
bool SuppressingUndo() const;
void SetStyleSheet( wxRichTextStyleSheet* styleSheet );
wxRichTextStyleSheetDisown* GetStyleSheet() const;
#if WXPERL_W_VERSION_GE( 2, 7, 2 )
bool PushStyleSheet( wxRichTextStyleSheetDisown* styleSheet );
wxRichTextStyleSheetDisown* PopStyleSheet();
#endif
%name{SetBasicStyleRich} void SetBasicStyle( const wxRichTextAttr& style );
%name{SetBasicStyleEx} void SetBasicStyle( const wxTextAttrEx& style );
%{
void
wxRichTextBuffer::SetBasicStyle( ... )
PPCODE:
BEGIN_OVERLOAD()
MATCH_REDISP( wxPliOvl_wrta, SetBasicStyleRich )
MATCH_REDISP( wxPliOvl_wtae, SetBasicStyleEx )
END_OVERLOAD( "Wx::RichTextBuffer::SetBasicStyle" )
%}
};
%{
void
wxRichTextBuffer::GetRichTextAttrStyle( position )
long position
PPCODE:
wxRichTextAttr attr;
bool retval = THIS->GetStyle( position, attr );
EXTEND( SP, 2 );
PUSHs( newSViv( retval ) );
PUSHs( retval ? wxPli_non_object_2_sv( aTHX_ sv_newmortal(),
new wxRichTextAttr( attr ),
"Wx::RichTextAttr" ) :
&PL_sv_undef );
#if WXPERL_W_VERSION_LT( 2, 9, 2 )
void
wxRichTextBuffer::GetTextAttrExStyle( position )
long position
PPCODE:
wxTextAttrEx attr;
bool retval = THIS->GetStyle( position, attr );
EXTEND( SP, 2 );
PUSHs( newSViv( retval ) );
PUSHs( retval ? wxPli_non_object_2_sv( aTHX_ sv_newmortal(),
new wxTextAttrEx( attr ),
"Wx::TextAttrEx" ) :
&PL_sv_undef );
#endif
#if WXPERL_W_VERSION_GE( 2, 7, 1 )
void
wxRichTextBuffer::GetRichTextAttrUncombinedStyle( position )
long position
PPCODE:
wxRichTextAttr attr;
bool retval = THIS->GetUncombinedStyle( position, attr );
EXTEND( SP, 2 );
PUSHs( newSViv( retval ) );
PUSHs( retval ? wxPli_non_object_2_sv( aTHX_ sv_newmortal(),
new wxRichTextAttr( attr ),
"Wx::RichTextAttr" ) :
&PL_sv_undef );
#if WXPERL_W_VERSION_LT( 2, 9, 2 )
void
wxRichTextBuffer::GetTextAttrExUncombinedStyle( position )
long position
PPCODE:
wxTextAttrEx attr;
bool retval = THIS->GetUncombinedStyle( position, attr );
EXTEND( SP, 2 );
PUSHs( newSViv( retval ) );
PUSHs( retval ? wxPli_non_object_2_sv( aTHX_ sv_newmortal(),
new wxTextAttrEx( attr ),
"Wx::TextAttrEx" ) :
&PL_sv_undef );
#endif
#endif
#if WXPERL_W_VERSION_GE( 2, 8, 0 ) && WXPERL_W_VERSION_LT( 2, 9, 2 )
void
wxRichTextBuffer::GetTextAttrExStyleForRange( range )
wxRichTextRange* range
PPCODE:
wxTextAttrEx attr;
bool retval = THIS->GetStyleForRange( *range, attr );
EXTEND( SP, 2 );
PUSHs( newSViv( retval ) );
PUSHs( retval ? wxPli_non_object_2_sv( aTHX_ sv_newmortal(),
new wxTextAttrEx( attr ),
"Wx::TextAttrEx" ) :
&PL_sv_undef );
#endif
#if WXPERL_W_VERSION_GE( 2, 9, 2 )
void
wxRichTextBuffer::GetRichTextAttrStyleForRange( range )
wxRichTextRange* range
PPCODE:
wxRichTextAttr attr;
bool retval = THIS->GetStyleForRange( *range, attr );
EXTEND( SP, 2 );
PUSHs( newSViv( retval ) );
PUSHs( retval ? wxPli_non_object_2_sv( aTHX_ sv_newmortal(),
new wxRichTextAttr( attr ),
"Wx::RichTextAttr" ) :
&PL_sv_undef );
#endif
%}
|