wxWidgets/samples/richedit
Michael Wetherell 96ed08f775 Minor fixes for gcc
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32538 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-03-01 17:11:15 +00:00
..
.cvsignore
descrip.mms
kbList.cpp Deleting void is undefined. 2004-08-06 17:27:18 +00:00
kbList.h -1->wxID_ANY, TRUE->true and FALSE->false replacements. 2004-06-02 17:13:19 +00:00
makefile.bcc Regenerated makefiles 2005-02-12 18:53:20 +00:00
makefile.gcc Regenerated makefiles 2005-02-12 18:53:20 +00:00
Makefile.in Rebaked with Bakefile 0.1.7. 2005-02-19 03:56:12 +00:00
makefile.sc
makefile.unx
makefile.vc Regenerated makefiles 2005-02-12 18:53:20 +00:00
makefile.wat Regenerated makefiles 2005-02-12 18:53:20 +00:00
Micon.xpm
Mpch.h
README
richedit.bkl
richedit.dsp Regenerated makefiles 2005-02-12 18:53:20 +00:00
richedit.dsw
richedit.pro
richeditM5.xml
TODO
wxLayout.cpp Minor fixes for gcc 2005-03-01 17:11:15 +00:00
wxLayout.h
wxllist.cpp Documentation patch from Olly Betts 2004-10-22 19:11:07 +00:00
wxllist.h Warning fixes found under hardest mode of OpenWatcom. Seems clean in Borland, MinGW and DMC. 2004-10-06 20:54:57 +00:00
wxlparser.cpp Warning fixes found under hardest mode of OpenWatcom. Seems clean in Borland, MinGW and DMC. 2004-10-06 20:54:57 +00:00
wxlparser.h
wxlwindow.cpp Fixes for wxUSE_STATUSBAR. 2004-07-19 09:39:38 +00:00
wxlwindow.h Fixes for wxUSE_STATUSBAR. 2004-07-19 09:39:38 +00:00

README for wxLayout classes
---------------------------

All the source in this directory is copyrighted under the
GPL (GNU GENERAL PUBLIC LICENSE), version 2,
by Karsten Ballueder <ballueder@usa.net>.


This is still work in progress, so if you want to make any significant
changes, please get in touch with me before.


*** THIS SOURCE IS USUALLY OUTDATED AND FOR DEMONSTRATION ONLY  ***
*** GET THE VERY LATEST VERSION OF THE WXLAYOUT CLASSES FROM    ***
*** THE SOURCE OF THE MAHOGANY MAIL/NEWS CLIENT, AVAILABLE FROM ***
*** http://www.wxwindows.org/Mahogany/                          ***



There are three building blocks for rich text editing:

wxllist :

The wxLayoutList layout engine. It is a linked list of wxLayoutObjects
which can arrange and display them on any wxDC. I am trying to keep
this class as simple as possible, to be just the core layout
engine. All "convenience" functions should be defined in classes built 
on top of this.
The wxLayoutList is derived from kbList, a double-linked list with an
interface modelled after the STL list. As wxLayoutList depends on the
way kbList treats iterators (i.e. the iterator value after an insert() 
or erase() operation), I don't feel like rewriting it for wxList.

wxlwindow :

Contains a class wxLayoutWindow, derived from wxScrolledWindow which
can directly be used as a rich-text display or editing window. The
function responsible for keyboard handling is virtual and can be
overloaded for different keybindings. wxLayoutWindow can sent fake
menu-events to the application to react to the user clicking on
objects.

wxlparser:

Contains several high level functions operating on
wxLayoutList. Currently implemented is inserting of text (including
linebreaks) and export of objects, text or html.
Planned for the future is an html parser for importing html.


wxLayout.cpp is a simple test program. It will export Text and HTML to
stdout and demonstrate some of the features and bugs of wxLayoutList.

There are still things to do and I'm working on them. :-)

Karsten Ballueder <Ballueder@usa.ne>          29 June 1998