]> git.saurik.com Git - wxWidgets.git/commitdiff
Added some docs
authorJulian Smart <julian@anthemion.co.uk>
Thu, 7 Sep 2000 13:33:56 +0000 (13:33 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Thu, 7 Sep 2000 13:33:56 +0000 (13:33 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8285 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/latex/wx/classes.tex
docs/latex/wx/dialog.tex
docs/latex/wx/frame.tex
docs/latex/wx/function.tex

index 3224cbc729c1f265eea379fedee2c0d98b8e5fb8..f5ea4f4356715a1fe3685c55b3ac469063d7511c 100644 (file)
@@ -38,6 +38,7 @@
 \input cmdproc.tex
 \input conditn.tex
 \input config.tex
+\input cshelp.tex
 \input control.tex
 \input countstr.tex
 \input critsect.tex
 \input gridsizr.tex
 \input hash.tex
 \input helpinst.tex
+\input helpevt.tex
 \input htcell.tex
 \input htcolor.tex
 \input htcontnr.tex
index 0ea060871c97a892f6c22b4ba40a2ae175435dee..fd7d6df18a0b27d29da7ae8724bfa2986d806859 100644 (file)
@@ -43,6 +43,10 @@ dialog to respond to system close events.
 \twocolitem{\windowstyle{wxSTAY\_ON\_TOP}}{The dialog stays on top of all other windows (Windows only).}
 \twocolitem{\windowstyle{wxNO\_3D}}{Under Windows, specifies that the child controls
 should not have 3D borders unless specified in the control.}
+\twocolitem{\windowstyle{wxDIALOG\_EX\_CONTEXTHELP}}{Under Windows, puts a query button on the
+caption. When pressed, Windows will go into a context-sensitive help mode and wxWindows will send
+a wxEVT\_HELP event if the user clicked on an application window. {\it Note} that this is an extended
+style and must be set by calling \helpref{SetExtraStyle}{wxwindowsetextrastyle} before Create is called (two-step construction).}
 \end{twocollist}
 
 Under Unix or Linux, MWM (the Motif Window Manager) or other window managers reckognizing
index 9e18384bb8026b6c7769c0fb20f2bc937e7efbb3..edff41d704bbcf8f57d94dc199939ea71f6dfd7d 100644 (file)
@@ -40,6 +40,11 @@ z-order and not shown in the taskbar. Without this style, frames are created as
 the parent window, and frame titles are shown in the taskbar. Windows and GTK.}
 \twocolitem{\windowstyle{wxFRAME\_TOOL\_WINDOW}}{Causes a frame with a small titlebar to be created;
 the frame title does not appear in the taskbar. Windows only.}
+\twocolitem{\windowstyle{wxFRAME\_EX\_CONTEXTHELP}}{Under Windows, puts a query button on the
+caption. When pressed, Windows will go into a context-sensitive help mode and wxWindows will send
+a wxEVT\_HELP event if the user clicked on an application window. {\it Note} that this is an extended
+style and must be set by calling \helpref{SetExtraStyle}{wxwindowsetextrastyle} before Create is called (two-step construction).
+You cannot use this style together with wxMAXIMIZE\_BOX or wxMINIMIZE\_BOX.}
 \end{twocollist}
 
 The default frame style is for normal, resizeable frames. To create a frame
index 9df5c66f493cf78790342d158794498c615eee8d..5975b0250d266433c4514aeb27390323d6d81f9d 100644 (file)
@@ -1397,7 +1397,7 @@ Find a menu item identifier associated with the given frame's menu bar.
 
 <wx/utils.h>
 
-\membersection{::wxFindWindowByLabel}
+\membersection{::wxFindWindowByLabel}\label{wxfindwindowbylabel}
 
 \func{wxWindow *}{wxFindWindowByLabel}{\param{const wxString\& }{label}, \param{wxWindow *}{parent=NULL}}
 
@@ -1425,6 +1425,20 @@ If no such named window is found, {\bf wxFindWindowByLabel} is called.
 
 <wx/utils.h>
 
+\membersection{::wxFindWindowAtPoint}\label{wxfindwindowatpoint}
+
+\func{wxWindow *}{wxFindWindowAtPoint}{\param{const wxPoint\& }{pt}}
+
+Find the deepest window at the given mouse position in screen coordinates,
+returning the window if found, or NULL if not.
+
+\membersection{::wxFindWindowAtPointer}\label{wxfindwindowatpointer}
+
+\func{wxWindow *}{wxFindWindowAtPointer}{\param{wxPoint\& }{pt}}
+
+Find the deepest window at the mouse pointer position, returning the window
+and current pointer position in screen coordinates.
+
 \membersection{::wxGetActiveWindow}\label{wxgetactivewindow}
 
 \func{wxWindow *}{wxGetActiveWindow}{\void}
@@ -1471,9 +1485,9 @@ under Windows, Linux and Solaris.
 
 <wx/utils.h>
 
-\membersection{::wxGetMousePosition}
+\membersection{::wxGetMousePosition}\label{wxgetmouseposition}
 
-\func{void}{wxGetMousePosition}{\param{int* }{x}, \param{int* }{y}}
+\func{wxPoint}{wxGetMousePosition}{\void}
 
 Returns the mouse position in screen coordinates.