wxWidgets/samples/richedit
2001-02-06 17:50:06 +00:00
..
.cvsignore ignore these 1999-07-17 18:21:41 +00:00
kbList.cpp Formerly known as wxLayout. 1999-06-07 09:57:14 +00:00
kbList.h more type-safety 1999-07-21 16:13:27 +00:00
makefile.b32 Added/updated some BC++ makefiles 2000-03-14 11:51:29 +00:00
makefile.g95 new makefile 2000-01-16 02:36:04 +00:00
Makefile.in makefiles changes (@top_srcdir@ adjusted) 2000-01-31 18:31:18 +00:00
makefile.unx updated samples makefiles 2000-03-14 14:06:41 +00:00
makefile.vc Added makefile and such for VC so I cna see what richedit is like. 1999-06-10 17:50:10 +00:00
Micon.xpm Formerly known as wxLayout. 1999-06-07 09:57:14 +00:00
Mpch.h Formerly known as wxLayout. 1999-06-07 09:57:14 +00:00
README merged 2.2 branch 2000-07-15 19:51:35 +00:00
RichEditVC.dsp Updated VC++ project files for making DLL-based samples 2001-02-06 17:50:06 +00:00
RichEditVC.dsw Added VC++ project files (seems logical) 2000-10-10 16:59:34 +00:00
TODO rtf cut&paste works now, html export fixed 1999-12-01 18:05:54 +00:00
wxLayout.cpp Bug related to icon/bitmap conversion, fix by Mumit Khan 2000-01-15 21:45:30 +00:00
wxLayout.h "wx/xxx.h" --> <wx/xxx.h> 1999-06-17 16:29:17 +00:00
wxLayout.rc Added makefile and such for VC so I cna see what richedit is like. 1999-06-10 17:50:10 +00:00
wxllist.cpp merged 2.2 branch 2000-07-15 19:51:35 +00:00
wxllist.h merged 2.2 branch 2000-07-15 19:51:35 +00:00
wxlparser.cpp rtf cut&paste works now, html export fixed 1999-12-01 18:05:54 +00:00
wxlparser.h rtf cut&paste works now, html export fixed 1999-12-01 18:05:54 +00:00
wxlwindow.cpp merged 2.2 branch 2000-07-15 19:51:35 +00:00
wxlwindow.h merged 2.2 branch 2000-07-15 19:51:35 +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