| Version 3 (modified by szabgab, 5 years ago) (diff) |
|---|
Learning wxPerl and wxWidgets
For those like me (Gabor) who lack imagination here is an explanation of the stack.
- wxWidgets is the name of the C++ library that can be installed either by your operating systems package management tool ( aptitude install wx-common in case of Debian ) or by installing Alien::wxWidgets from CPAN
- Scintilla is an editor component written in C++ and used in many editors. It has been included in wxWidgets ad the STC or wxStyledTextCtrl and is used in Padre.
- wxPerl is the name of the Perl binding to wxWidgets (or wrapper if you prefer that word) - It is packaged as the Wx distro on CPAN. Some of the recent Linux distros might also have.
- Above all that comes our code (Padre in our case)
Documentation of Wx::StyledTextCtrl
http://docs.wxwidgets.org/trunk/classwx_styled_text_ctrl.html
- PerlMonks? articles
- http://www.perlmonks.org/?node_id=122227
- http://www.perlmonks.org/?node_id=112297
- http://www.perlmonks.org/?node_id=152323
- http://www.perlmonks.org/?node_id=153366
- http://www.perlmonks.org/?node_id=184685
- http://www.perlmonks.org/?node_id=194611
- http://www.perlmonks.org/?node_id=199840
- http://www.perlmonks.org/?node_id=164341
- http://www.perlmonks.org/?node_id=287396
- http://www.perlmonks.org/?node_id=290475
- http://www.perlmonks.org/?node_id=219778
