]> git.saurik.com Git - wxWidgets.git/commitdiff
Added documentation for wxWindowCreateEvent, wxWindowDestroyEvent
authorJulian Smart <julian@anthemion.co.uk>
Wed, 1 Jun 2005 09:56:43 +0000 (09:56 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Wed, 1 Jun 2005 09:56:43 +0000 (09:56 +0000)
Added missing event to wxTreeEvent doc

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34489 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/latex/wx/category.tex
docs/latex/wx/classes.tex
docs/latex/wx/createevt.tex [new file with mode: 0644]
docs/latex/wx/destroyevt.tex [new file with mode: 0644]
docs/latex/wx/treeevt.tex

index da93d498890f607d5ae2ea39c73159a405915f48..3c73efd9460c2e38c28924d9b53006301975d8ca 100644 (file)
@@ -251,6 +251,8 @@ An event object contains information about a specific event. Event handlers
 \twocolitem{\helpref{wxTimerEvent}{wxtimerevent}}{A timer expiration event}
 \twocolitem{\helpref{wxTreeEvent}{wxtreeevent}}{A tree control event}
 \twocolitem{\helpref{wxUpdateUIEvent}{wxupdateuievent}}{A user interface update event}
+\twocolitem{\helpref{wxWindowCreateEvent}{wxwindowcreateevent}}{A window creation event}
+\twocolitem{\helpref{wxWindowDestroyEvent}{wxwindowdestroyevent}}{A window destruction event}
 \twocolitem{\helpref{wxWizardEvent}{wxwizardevent}}{A wizard event}
 \end{twocollist}
 
index d9c2cc0483d9713d296662bde4b660dddb85eb60..0bfe2874dcc1bee32d8023c3a1a1b846cad919db 100644 (file)
 \input vlbox.tex
 \input vscroll.tex
 \input window.tex
+\input createevt.tex
 \input windowdc.tex
+\input destroyevt.tex
 \input wnddisbl.tex
 \input wizard.tex
 \input wizevt.tex
diff --git a/docs/latex/wx/createevt.tex b/docs/latex/wx/createevt.tex
new file mode 100644 (file)
index 0000000..6d4e50f
--- /dev/null
@@ -0,0 +1,39 @@
+\section{\class{wxWindowCreateEvent}}\label{wxwindowcreateevent}
+
+This event is sent just after the actual window associated with a wxWindow object
+has been created. Since it is derived from wxCommandEvent, the event propagates up
+the window hierarchy.
+
+\wxheading{Derived from}
+
+\helpref{wxCommandEvent}{wxevent}\\
+\helpref{wxEvent}{wxevent}\\
+\helpref{wxObject}{wxobject}
+
+\wxheading{Include files}
+
+<wx/event.h>
+
+\wxheading{Event table macros}
+
+To process a window creation event, use this event handler macro to direct input to a member
+function that takes a wxWindowCreateEvent argument.
+
+\twocolwidtha{7cm}
+\begin{twocollist}\itemsep=0pt
+\twocolitem{{\bf EVT\_WINDOW\_CREATE(func)}}{Process a wxEVT\_CREATE event.}
+\end{twocollist}%
+
+\wxheading{See also}
+
+\helpref{Event handling overview}{eventhandlingoverview},\rtfsp
+\helpref{wxWindowDestroyEvent}{wxwindowdestroyevent}
+
+\latexignore{\rtfignore{\wxheading{Members}}}
+
+\membersection{wxWindowCreateEvent::wxWindowCreateEvent}\label{wxwindowcreateeventctor}
+
+\func{}{wxWindowCreateEvent}{\param{wxWindow* }{win = NULL}}
+
+Constructor.
+
diff --git a/docs/latex/wx/destroyevt.tex b/docs/latex/wx/destroyevt.tex
new file mode 100644 (file)
index 0000000..8934525
--- /dev/null
@@ -0,0 +1,39 @@
+\section{\class{wxWindowDestroyEvent}}\label{wxwindowdestroyevent}
+
+This event is sent just before the actual window associated with a wxWindow object
+is destroyed. Since it is derived from wxCommandEvent, the event propagates up
+the window hierarchy.
+
+\wxheading{Derived from}
+
+\helpref{wxCommandEvent}{wxevent}\\
+\helpref{wxEvent}{wxevent}\\
+\helpref{wxObject}{wxobject}
+
+\wxheading{Include files}
+
+<wx/event.h>
+
+\wxheading{Event table macros}
+
+To process a window destruction event, use this event handler macro to direct input to a member
+function that takes a wxWindowDestroyEvent argument.
+
+\twocolwidtha{7cm}
+\begin{twocollist}\itemsep=0pt
+\twocolitem{{\bf EVT\_WINDOW\_DESTROY(func)}}{Process a wxEVT\_DESTROY event.}
+\end{twocollist}%
+
+\wxheading{See also}
+
+\helpref{Event handling overview}{eventhandlingoverview},\rtfsp
+\helpref{wxWindowCreateEvent}{wxwindowcreateevent}
+
+\latexignore{\rtfignore{\wxheading{Members}}}
+
+\membersection{wxWindowDestroyEvent::wxWindowDestroyEvent}\label{wxwindowdestroyeventctor}
+
+\func{}{wxWindowDestroyEvent}{\param{wxWindow* }{win = NULL}}
+
+Constructor.
+
index 3b325f2d858dc63c516d329920b1ae99b397a92b..71ca9000655b6a0266a3830a85e1c995cb90e149 100644 (file)
@@ -42,6 +42,7 @@ functions that take a wxTreeEvent argument.
 \twocolitem{{\bf EVT\_TREE\_KEY\_DOWN(id, func)}}{A key has been pressed.}
 \twocolitem{{\bf EVT\_TREE\_ITEM\_GETTOOLTIP(id, func)}}{The opportunity to set the item tooltip
 is being given to the application (call wxTreeEvent::SetToolTip). Windows only.}
+\twocolitem{{\bf EVT\_TREE\_ITEM\_MENU(id, func)}}{The context menu for the selected item has been requested, either by a right click or by using the menu key.}
 \end{twocollist}
 
 \wxheading{See also}