From 61eff74fb964e765f5521b9d5af19089fdf34148 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Mon, 13 Dec 1999 08:43:50 +0000 Subject: [PATCH] added wxHTML samples git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4919 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- docs/latex/wx/tsamples.tex | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/docs/latex/wx/tsamples.tex b/docs/latex/wx/tsamples.tex index 9154a13bc4..226c1ed8ff 100644 --- a/docs/latex/wx/tsamples.tex +++ b/docs/latex/wx/tsamples.tex @@ -61,3 +61,35 @@ bitmaps which allows them to be pasted/dropped in many other applications. Take a look at DnDShapeDataObject class to see how you may use \helpref{wxDataObject}{wxdataobject} to achieve this. + +\subsection{HTML samples}\label{samplehtml} + +Eight HTML samples (you can find them in directory {\tt samples/html}) +cover all features of HTML sub-library. + +{\bf Test} demonstrates how to create \helpref{wxHtmlWindow}{wxhtmlwindow} +and also shows most of supported HTML tags. + +{\bf Widget} shows how you can embed ordinary controls or windows within +HTML page. It also nicely explains how to write new tag handlers and extend +the library to work with unsupported tags. + +{\bf About} may give you an idea how to write good-looking about boxes. + +{\bf Zip} demonstrates use of virtual file systems in wxHTML. The zip archives +handler (ships with wxWindows) allows you to access HTML pages stored +in compressed archive as if they were ordinary files. + +{\bf Virtual} is yet another VFS demo. This one generates pages at run-time. +You may find it useful if you need to display some reports in your application. + +{\bf Printing} explains use of \helpref{wxHtmlEasyPrinting}{wxhtmleasyprinting} +class which serves as as-simple-as-possible interface for printing HTML +documents without much work. In fact, only few function calls are sufficient. + +{\bf Help} and {\bf Helpview} are variations on displaying HTML help +(compatible with MS HTML Help Workshop). {\it Help} shows how to embed +\helpref{wxHtmlHelpController}{wxhtmlhelpcontroller} in your application +while {\it Helpview} is simple tool that only pops up help window and +displays help books given at command line. +