+*.spec
+BuildCVS.txt
+acconfig.h
+*.m4
+autogen.sh
+config.guess
+config.sub
+configure.in
+install-sh
+ltconfig
+ltmain.sh
+missing
+mkinstalldirs
+modules
+template.mak
+wx-config.in
+makefile.unx.in
+
distrib/msw/*.rsp
distrib/msw/*.bat
distrib/msw/tardist
-install-sh
-Makefile
-template.mak
-configure
-configure.in
-config.guess
-config.sub
-wx-config.in
-mkinstalldirs
-wxGTK.spec
-
distrib/gtk/copy_src
distrib/gtk/README.txt
distrib/gtk/Setup
docs/gtk/*.html
docs/gtk/*.txt
+docs/gtk/COPYING.LIB
docs/gtk/makewxgtk
include/wx/gtk/*.h
docs/motif/*.txt
docs/motif/makewxmotif
+docs/motif2/*.txt
+docs/motif2/COPYING.LIB
lib/dummy
-docs/msw/*.txt
docs/licence.txt
+docs/msw/*.txt
+docs/wine/*.txt
+docs/wine/COPYING.LIB
distrib/msw/*.rsp
distrib/msw/*.bat
\twocolitem{\helpref{wxTCPConnection}{wxtcpconnection}}{Represents the connection between a client and a server}
\twocolitem{\helpref{wxTCPServer}{wxtcpserver}}{Represents a server}
\twocolitem{\helpref{wxSocketClient}{wxsocketclient}}{Represents a socket client}
-\twocolitem{\helpref{wxSocketHandler}{wxsockethandler}}{Represents a socket handler}
+%\twocolitem{\helpref{wxSocketHandler}{wxsockethandler}}{Represents a socket handler}
\twocolitem{\helpref{wxSocketServer}{wxsocketserver}}{Represents a socket server}
\end{twocollist}
\input thread.tex
\input time.tex
\input timer.tex
+\input tipprov.tex
\input toolbar.tex
\input treectrl.tex
\input treeevt.tex
Destroys the wxDataInputStream object.
-\membersection{wxDataInputStream::BidEndianOrdered}
+\membersection{wxDataInputStream::BigEndianOrdered}
-\func{void}{BidEndianOrdered}{\param{bool}{ be_order}}
+\func{void}{BigEndianOrdered}{\param{bool}{ be_order}}
If {\it be_order} is TRUE, all data will be read in big-endian
order, such as written by programs on a big endian architecture
\membersection{wxDataOutputStream::wxDataOutputStream}\label{wxdataoutputstreamconstr}
-\func{}{wxDataInputStream}{\param{wxOutputStream\&}{ stream}}
+\func{}{wxDataOutputStream}{\param{wxOutputStream\&}{ stream}}
Constructs a datastream object from an output stream. Only write methods will
be available.
Destroys the wxDataOutputStream object.
-\membersection{wxDataOutputStream::BidEndianOrdered}
+\membersection{wxDataOutputStream::BigEndianOrdered}
-\func{void}{BidEndianOrdered}{\param{bool}{ be_order}}
+\func{void}{BigEndianOrdered}{\param{bool}{ be_order}}
If {\it be_order} is TRUE, all data will be written in big-endian
order, e.g. for reading on a Sparc or from Java-Streams (which
\wxheading{See also}
-\helpref{wxWindow::GetReturnCode}{wxwindowgetreturncode}, \helpref{wxDialog::ShowModal}{wxdialogshowmodal},\rtfsp
+\helpref{wxDialog::GetReturnCode}{wxdialoggetreturncode}, \helpref{wxDialog::ShowModal}{wxdialogshowmodal},\rtfsp
\helpref{wxDialog::EndModal}{wxdialogendmodal}
\membersection{wxDialog::SetTitle}\label{wxdialogsettitle}
\wxheading{Return value}
-The return value is the value set with \helpref{wxWindow::SetReturnCode}{wxwindowsetreturncode}.
+The return value is the value set with \helpref{wxDialog::SetReturnCode}{wxdialogsetreturncode}.
\wxheading{See also}
\helpref{wxDialog::EndModal}{wxdialogendmodal},\rtfsp
-\helpref{wxWindow::GetReturnCode}{wxwindowgetreturncode},\rtfsp
-\helpref{wxWindow::SetReturnCode}{wxwindowsetreturncode}
+\helpref{wxDialog:GetReturnCode}{wxdialoggetreturncode},\rtfsp
+\helpref{wxDialog::SetReturnCode}{wxdialogsetreturncode}
\wxheading{Note}
If you need more "advanced" behaviour (for example you'd like to catch mouse movement events or
-key events or whatsooever) you should use \helpref{wxHtmlBinderCell}{wxhtmlbindercell} instead.
+key events or whatsoever) you should use wxHtmlBinderCell instead.
\wxheading{Parameters}
-\docparam{parent}{parent window (always wxHtmlWindow!!)}
+\docparam{parent}{parent window (always wxHtmlWindow!)}
\docparam{x, y}{coordinates of mouse click (this is relative to cell's origin}
See \helpref{wxHtmlContainerCell}{wxhtmlcontainercell},
\helpref{wxHtmlCell::Layout}{wxhtmlcelllayout}.
+\begin{comment}
+% Bitmap is corrupt!
This image shows you cells\ &\ containers:
\image{}{contbox.bmp}
-
+\end{comment}
\wxheading{Using Containers in Tag Handler}
\helpref{wxHtmlWinParser}{wxhtmlwinparser} provides user-friendly way
container. This doesn't create new container with same depth level but
it returns "control" to the parent container.
+\begin{comment}
+% Bitmap corrupt!
See explanation:
\image{}{cont.bmp}
-
+\end{comment}
It's clear there must be same number of calls to
OpenContainer as to CloseContainer...
m_WParser -> OpenContainer();
\end{verbatim}
+\begin{comment}
+% Bitmap corrupt!
and here is image of the situation:
\image{}{hello.bmp}
+\end{comment}
You can see that there was opened container before running the code. We closed
it, created our own container, then closed our container and opened
{\bf TAG_HANDLER_PROC}({\it varib})
-This is very important macro. It defines \helpref{HandleTag}{wxhtmlparserhandletag}
+This is very important macro. It defines \helpref{HandleTag}{wxhtmltaghandlerhandletag}
method. {\it varib} is name of parameter passed to the method, usually
{\it tag}. Body of method follows after this macro.
Note than you must use { and } ! Example:
As with all windows, an application can draw onto a wxScrolledWindow using a \helpref{device context}{dcoverview}.
-You have the option of handling the \helpref{OnPaint}{wxscrolledwindowonpaint} handler
+You have the option of handling the OnPaint handler
or overriding the \helpref{OnDraw}{wxscrolledwindowondraw} function, which is passed
a pre-scrolled device context (prepared by \helpref{PrepareDC}{wxscrolledwindowpreparedc}).
Call this function to prepare the device context for drawing a scrolled image. It
sets the device origin according to the current scroll position.
-PrepareDC is called automatically within the default \helpref{wxScrolledWindow::OnPaint}{wxscrolledwindowonpaint} event
+PrepareDC is called automatically within the default wxScrolledWindow::OnPaint event
handler, so your \helpref{wxScrolledWindow::OnDraw}{wxscrolledwindowondraw} override
will be passed a 'pre-scrolled' device context. However, if you wish to draw from
outside of OnDraw (via OnPaint), or you wish to implement OnPaint yourself, you must
\wxheading{See also}
-\helpref{GSocket for wxWindows}{gsocketforwx}
+GSocket for wxWindows
% ---------------------------------------------------------------------------
% Event handling
\func{void}{SetNotify}{\param{GSocketEventFlags}{ event_flags}}
SetNotify setups which socket events are to be sent to the event handler.
-For more information on socket events see
-\helpref{GSocket events}{gsocketforwxevents}.
+For more information on socket events see GSocket events.
%
% Notify
%
-\membersection{wxSocketBase::Notify}\label{wxsocketbasesetnotify}
+\membersection{wxSocketBase::Notify}\label{wxsocketbasenotify}
\func{void}{Notify}{\param{bool}{ notify}}
\constfunc{GSocketError}{LastError}{\void}
-Returns an error in the GSocket format. See \helpref{GSocket errors}{gsocketforwxerrs}.
+Returns an error in the GSocket format. See GSocket errors.
% ---------------------------------------------------------------------------
% IO calls
\wxheading{See also}
-\helpref{wxStreamBuffer::WriteBack}{wxstreambufferwriteback}
+\helpref{wxStreamBuffer::Write}{wxstreambufferwrite}
\func{size\_t}{Read}{\param{wxStreamBuffer *}{buffer}}
You will never use this class yourself, but you need it to show startup tips
with wxShowTip. Also, if you want to get the tips text from elsewhere than a
simple text file, you will want to derive a new class from wxTipProvider and
-use it instead of the one returned by
-\helpref{wxCreateFileTipProvider}{wxcreatefiletipprovider}.
+use it instead of the one returned by \helpref{wxCreateFileTipProvider}{wxcreatefiletipprovider}.
\wxheading{Derived from}
\docparam{currentTip}{The starting tip index.}
-\membersection{wxTipProvider::GetTip}{wxtipprovidergettip}
+\membersection{wxTipProvider::GetTip}\label{wxtipprovidergettip}
\func{wxString}{GetTip}{\void}
Return the text of the current tip and pass to the next one. This function is
pure virtual, it should be implemented in the derived classes.
-\membersection{wxCurrentTipProvider::GetCurrentTip}{wxtipprovidergetcurrenttip}
+\membersection{wxCurrentTipProvider::GetCurrentTip}\label{wxtipprovidergetcurrenttip}
\constfunc{size\_t}{GetCurrentTip}{\void}
\latexignore{\rtfignore{\wxheading{Members}}}
-\membersection{wxTextOutputStream::wxTextOutputStream}\label{wxdataoutputstreamconstr}
+\membersection{wxTextOutputStream::wxTextOutputStream}\label{wxtextoutputstreamconstr}
\func{}{wxTextOutputStream}{\param{wxOutputStream\&}{ stream}}
[OPTIONS]
-BMROOT=d:\wx2\wxWindows\docs\latex\wx ; Assume that bitmaps are where the source is
+BMROOT=d:\wx2\wxWind~1\docs/latex/wx ; Assume that bitmaps are where the source is
TITLE=wxWindows Manual
CONTENTS=Contents
COMPRESS=HIGH