]> git.saurik.com Git - wxWidgets.git/commitdiff
bugs in splitter docs corrected
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 20 May 1999 22:17:04 +0000 (22:17 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 20 May 1999 22:17:04 +0000 (22:17 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2525 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/latex/wx/classes.tex
docs/latex/wx/splitevt.tex
docs/latex/wx/splitter.tex
docs/latex/wx/wx.hpj

index 85f2ffb2c52399e3b0d9d2ef26c88e3460c05680..cb96d13dbf44abb0654058b3d9c9e4f3037a20b6 100644 (file)
 \input slider.tex
 \input sckaddr.tex
 \input socket.tex
+\input splitevt.tex
 \input strmsock.tex
 \input spinbutt.tex
 \input splitter.tex
index 74095f57b8e4961f39c91ff9c335acec9f07c169..05fc81ec1f4c60b5b7e3133c6da96dc039c1dc07 100644 (file)
@@ -1,12 +1,16 @@
 \section{\class{wxSplitterEvent}}\label{wxsplitterevent}
 
-This class represents the events generated by a splitter control.
+This class represents the events generated by a splitter control. Also there is
+only one event class, the data associated to the different events is not the
+same and so not all accessor functions may be called for each event. The
+documentation mentions the kind of event(s) for which the given acessor
+function makes sense - calling it for other types of events will result in
+assert failure (in debug mode) and will return meaningless results.
 
 \wxheading{Derived from}
 
 \helpref{wxCommandEvent}{wxcommandevent}\\
 \helpref{wxEvent}{wxevent}\\
-\helpref{wxEvtHandler}{wxevthandler}\\
 \helpref{wxObject}{wxobject}
 
 \wxheading{Include files}
@@ -18,20 +22,17 @@ This class represents the events generated by a splitter control.
 To process a splitter event, use these event handler macros to direct input to member
 functions that take a wxSplitterEvent argument.
 
-\twocolwidtha{7cm}
+\twocolwidtha{10cm}
 \begin{twocollist}\itemsep=0pt
-\twocolitem{{\bf EVT\_SPLITTER\_SASH\_POS\_CHANGED(id, func)}
-    {The sash position was changed. May be used to prevent the change from
-     taking place or to modify the proposed sash position. Processes
-     wxEVT\_COMMAND\_SPLITTER\_SASH\_POS\_CHANGED event.}
-\twocolitem{{\bf EVT\_SPLITTER\_UNSPLIT(id, func)}}
-    {The splitter has been just unsplit. Processes wxEVT\_COMMAND\_SPLITTER\_UNSPLIT
-     event.}
-\twocolitem{{\bf EVT\_SPLITTER\_DOUBLECLICKED(id, func)}}
-    {The sash was double clicked. The default behaviour is to unsplit the
-     window when this happens (unless the minimum pane size has been set to a
-     value greater than zero). Processes wxEVT\_COMMAND\_SPLITTER\_DOUBLECLICKED
-     event}
+\twocolitem{{\bf EVT\_SPLITTER\_SASH\_POS\_CHANGED(id, func)}}{The sash
+position was changed. May be used to prevent the change from taking place.
+Processes wxEVT\_COMMAND\_SPLITTER\_SASH\_POS\_CHANGED event.}
+\twocolitem{{\bf EVT\_SPLITTER\_UNSPLIT(id, func)}}{The splitter has been just
+unsplit. Processes wxEVT\_COMMAND\_SPLITTER\_UNSPLIT event.}
+\twocolitem{{\bf EVT\_SPLITTER\_DOUBLECLICKED(id, func)}}{The sash was double
+clicked. The default behaviour is to unsplit the window when this happens
+(unless the minimum pane size has been set to a value greater than zero).
+Processes wxEVT\_COMMAND\_SPLITTER\_DOUBLECLICKED event}
 \end{twocollist}%
 
 \wxheading{See also}
@@ -48,62 +49,56 @@ functions that take a wxSplitterEvent argument.
 
 Constructor. Used internally by wxWindows only.
 
+\membersection{wxSplitterEvent::GetSashPosition}\label{wxsplittereventgetsashposition}
 
-\membersection{wxSplitterWindow::SetSashPosition}\label{wxsplittereventsetsashposition}
-
-\func{void}{SetSashPosition}{\param{int}{pos}}
+\constfunc{int}{GetSashPosition}{\void}
 
-Sets the new sash position. Set to -1 to prevent the sash from
-repositioning.
+Returns the new sash position.
 
 May only be called while processing
 wxEVT\_COMMAND\_SPLITTER\_SASH\_POS\_CHANGED events.
 
-\wxheading{Paramters}
-
-\docparam{pos}{New sash position.}
 
+\membersection{wxSplitterEvent::GetX}\label{wxsplittereventgetx}
 
-\membersection{wxSplitterWindow::GetSashPosition}\label{wxsplittereventgetsashposition}
-
-\constfunc{int}{GetSashPosition}{\void}
+\constfunc{int}{GetX}{\void}
 
-Returns the new sash position.
+Returns the x coordinate of the double-click point.
 
 May only be called while processing
-wxEVT\_COMMAND\_SPLITTER\_SASH\_POS\_CHANGED events.
+wxEVT\_COMMAND\_SPLITTER\_DOUBLECLICKED events.
 
 
-\membersection{wxSplitterWindow::GetWindowBeingRemoved}\label{wxsplittereventgetwindowbeingremoved}
+\membersection{wxSplitterEvent::GetY}\label{wxsplittereventgety}
 
-\constfunc{wxWindow*}{GetWindowBeingRemoved}{\void}
+\constfunc{int}{GetY}{\void}
 
-Returns a pointer to the window being removed when a splitter window
-is unsplit.
+Returns the y coordinate of the double-click point.
 
 May only be called while processing
-wxEVT\_COMMAND\_SPLITTER\_UNSPLIT events.
-
+wxEVT\_COMMAND\_SPLITTER\_DOUBLECLICKED events.
 
-\membersection{wxSplitterWindow::GetX}\label{wxsplittereventgetx}
+\membersection{wxSplitterEvent::GetWindowBeingRemoved}\label{wxsplittereventgetwindowbeingremoved}
 
-\constfunc{int}{GetX}{\void}
+\constfunc{wxWindow*}{GetWindowBeingRemoved}{\void}
 
-Returns the x double-click point.
+Returns a pointer to the window being removed when a splitter window
+is unsplit.
 
 May only be called while processing
-wxEVT\_COMMAND\_SPLITTER\_DOUBLECLICKED events.
+wxEVT\_COMMAND\_SPLITTER\_UNSPLIT events.
 
 
-\membersection{wxSplitterWindow::GetY}\label{wxsplittereventgety}
+\membersection{wxSplitterEvent::SetSashPosition}\label{wxsplittereventsetsashposition}
 
-\constfunc{int}{GetY}{\void}
+\func{void}{SetSashPosition}{\param{int}{pos}}
 
-Returns the y double-click point.
+Sets the new sash position. Set to -1 from the event handler code to prevent
+the sash from repositioning.
 
 May only be called while processing
-wxEVT\_COMMAND\_SPLITTER\_DOUBLECLICKED events.
-
-
+wxEVT\_COMMAND\_SPLITTER\_SASH\_POS\_CHANGED events.
 
+\wxheading{Paramters}
 
+\docparam{pos}{New sash position.}
index e6b53d0f35ccec7819593cd0e73c494a6005bd3a..eefddeb3577f66434c019a3ce2661382d2ed9faa 100644 (file)
@@ -34,19 +34,17 @@ To process input from a splitter control, use the following event handler
 macros to direct input to member functions that take a 
 \helpref{wxSplitterEvent}{wxsplitterevent} argument.
 
-\twocolwidtha{7cm}
+\twocolwidtha{10cm}
 \begin{twocollist}\itemsep=0pt
-\twocolitem{{\bf EVT\_SPLITTER\_SASH\_POS\_CHANGED(id, func)}
-    {The sash position was changed. May be used to prevent the change from
-     taking place. Processes wxEVT\_COMMAND\_SPLITTER\_SASH\_POS\_CHANGED event.}
-\twocolitem{{\bf EVT\_SPLITTER\_UNSPLIT(id, func)}}
-    {The splitter has been just unsplit. Processes wxEVT\_COMMAND\_SPLITTER\_UNSPLIT
-     event.}
-\twocolitem{{\bf EVT\_SPLITTER\_DOUBLECLICKED(id, func)}}
-    {The sash was double clicked. The default behaviour is to unsplit the
-     window when this happens (unless the minimum pane size has been set to a
-     value greater than zero). Processes wxEVT\_COMMAND\_SPLITTER\_DOUBLECLICKED
-     event}
+\twocolitem{{\bf EVT\_SPLITTER\_SASH\_POS\_CHANGED(id, func)}}{The sash
+position was changed. May be used to prevent the change from taking place.
+Processes wxEVT\_COMMAND\_SPLITTER\_SASH\_POS\_CHANGED event.}
+\twocolitem{{\bf EVT\_SPLITTER\_UNSPLIT(id, func)}}{The splitter has been just
+unsplit. Processes wxEVT\_COMMAND\_SPLITTER\_UNSPLIT event.}
+\twocolitem{{\bf EVT\_SPLITTER\_DOUBLECLICKED(id, func)}}{The sash was double
+clicked. The default behaviour is to unsplit the window when this happens
+(unless the minimum pane size has been set to a value greater than zero).
+Processes wxEVT\_COMMAND\_SPLITTER\_DOUBLECLICKED event}
 \end{twocollist}%
 
 \wxheading{See also}
index 5bf567ae88d787ec44eb4b000f61a6857265055a..7d53311fdd291152f5e7cd4c423a6dae9b38c957 100644 (file)
@@ -1,5 +1,5 @@
 [OPTIONS]
-BMROOT=d:\wx2\wxWind~1\docs/latex/wx ; Assume that bitmaps are where the source is
+BMROOT=. ; Assume that bitmaps are where the source is
 TITLE=wxWindows Manual
 CONTENTS=Contents
 COMPRESS=HIGH