wxWidgets/samples/richedit
Stefan Csomor 0b0efa9a67 corrected Info.plist.in location
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26412 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2004-03-27 12:14:34 +00:00
..
.cvsignore store CodeWarrior 5.3 projects as xml instead of binary projects 2001-12-02 18:11:49 +00:00
descrip.mms Committing in . 2001-10-16 06:14:26 +00:00
kbList.cpp Added checks for wxUSE_IOSTREAMH to determine which iostream(.h) to use 2002-01-16 13:39:50 +00:00
kbList.h Applied patch #845402 ("RichEdit sample fixing and cleaning"); In addition made compilation with MSVC (nearly) warning free+some more cleaning up. 2003-11-20 17:43:57 +00:00
makefile.bcc regenerated makefiles 2004-02-19 19:36:30 +00:00
makefile.gcc regenerated makefiles 2004-02-19 19:36:30 +00:00
Makefile.in corrected Info.plist.in location 2004-03-27 12:14:34 +00:00
makefile.sc relative path to wxwin in samples for Digital Mars (fixes SF bug 757845) 2003-06-20 15:20:31 +00:00
makefile.unx replaced "CC = gcc" and even stranger "CPP = gcc -g" (huh?) with 2001-11-28 18:10:15 +00:00
makefile.vc regenerated makefiles 2004-02-19 19:36:30 +00:00
makefile.wat regenerated makefiles 2004-02-19 19:36:30 +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
richedit.bkl wxLayout.cpp is data file as well 2003-08-27 18:08:18 +00:00
richedit.dsp regenerated makefiles 2004-02-19 19:36:30 +00:00
richedit.dsw Bakefile 0.1.3 2004-02-15 02:14:15 +00:00
richedit.pro 1. new samples proejct files for VC++ 2001-10-10 00:34:22 +00:00
richeditM5.xml added CarbonFrameworkLib to CodeWarrior 5 projects 2003-01-25 11:52:00 +00:00
TODO rtf cut&paste works now, html export fixed 1999-12-01 18:05:54 +00:00
wxLayout.cpp Applied patch #845402 ("RichEdit sample fixing and cleaning"); In addition made compilation with MSVC (nearly) warning free+some more cleaning up. 2003-11-20 17:43:57 +00:00
wxLayout.h Applied patch #845402 ("RichEdit sample fixing and cleaning"); In addition made compilation with MSVC (nearly) warning free+some more cleaning up. 2003-11-20 17:43:57 +00:00
wxllist.cpp Applied patch #864557 (Adjustment of richedit sample to new FindColour solution). 2003-12-23 03:01:37 +00:00
wxllist.h Applied patch #845402 ("RichEdit sample fixing and cleaning"); In addition made compilation with MSVC (nearly) warning free+some more cleaning up. 2003-11-20 17:43:57 +00:00
wxlparser.cpp Applied patch #845402 ("RichEdit sample fixing and cleaning"); In addition made compilation with MSVC (nearly) warning free+some more cleaning up. 2003-11-20 17:43:57 +00:00
wxlparser.h rtf cut&paste works now, html export fixed 1999-12-01 18:05:54 +00:00
wxlwindow.cpp Applied patch #845402 ("RichEdit sample fixing and cleaning"); In addition made compilation with MSVC (nearly) warning free+some more cleaning up. 2003-11-20 17:43:57 +00:00
wxlwindow.h Applied patch #845402 ("RichEdit sample fixing and cleaning"); In addition made compilation with MSVC (nearly) warning free+some more cleaning up. 2003-11-20 17:43:57 +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