]> git.saurik.com Git - wxWidgets.git/commitdiff
updated docs after moving SetDefaultItem() from wxPanel to wxTLW
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 7 Aug 2006 21:13:43 +0000 (21:13 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 7 Aug 2006 21:13:43 +0000 (21:13 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40507 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/changes.txt
docs/latex/wx/button.tex
docs/latex/wx/panel.tex
docs/latex/wx/tlw.tex

index 974be8e1c81fe83ac8927427fec1c6e47283f7d8..f4435f6784a1f46913544915fea04a1143bdee02 100644 (file)
@@ -29,6 +29,7 @@ INCOMPATIBLE CHANGES SINCE 2.6.x
 - wxStaticBoxSizer now deletes the associated wxStaticBox when it is deleted.
 - Windows calling CaptureMouse() are now required to handle
   the wxEVT_MOUSE_CAPTURE_LOST event.
+- SetDefaultItem() method was moved from wxPanel to wxTopLevelWindow
 
 
 Deprecated methods since 2.6.x and their replacements
index afd59c47314241ef39ad366dadf689745e818e66..dabfe69091aa5209ab0365fbb22d74268a3e60df 100644 (file)
@@ -134,7 +134,7 @@ Under Windows, only dialog box buttons respond to this function.  As
 normal under Windows and Motif, pressing return causes the default button to
 be depressed when the return key is pressed. See also \helpref{wxWindow::SetFocus}{wxwindowsetfocus}\rtfsp
 which sets the keyboard focus for windows and text panel items,\rtfsp
-and \helpref{wxPanel::SetDefaultItem}{wxpanelsetdefaultitem}.
+and \helpref{wxTopLevelWindow::SetDefaultItem}{wxtoplevelwindowsetdefaultitem}.
 
 Note that under Motif, calling this function immediately after
 creation of a button and before the creation of other buttons
index 5437d61f1c6bd2a59db789de0edf19f0a88ff443..6ccfa0a7f64689cd9afc351c1f33e644e1088393 100644 (file)
@@ -88,13 +88,6 @@ Destructor. Deletes any child windows before deleting the physical window.
 Used for two-step panel construction. See \helpref{wxPanel::wxPanel}{wxpanelctor}\rtfsp
 for details.
 
-\membersection{wxPanel::GetDefaultItem}\label{wxpanelgetdefaultitem}
-
-\constfunc{wxWindow*}{GetDefaultItem}{\void}
-
-Returns a pointer to the button which is the default for this window, or NULL.
-The default button is the one activated by pressing the Enter key.
-
 \membersection{wxPanel::InitDialog}\label{wxpanelinitdialog}
 
 \func{void}{InitDialog}{\void}
@@ -129,17 +122,6 @@ propagate the notification to child windows and controls.
 \helpref{wxSysColourChangedEvent}{wxsyscolourchangedevent}
 
 
-\membersection{wxPanel::SetDefaultItem}\label{wxpanelsetdefaultitem}
-
-\func{void}{SetDefaultItem}{\param{wxButton }{*btn}}
-
-Changes the default button for the panel.
-
-\wxheading{See also}
-
-\helpref{GetDefaultItem}{wxpanelgetdefaultitem}
-
-
 \membersection{wxPanel::SetFocus}\label{wxpanelsetfocus}
 
 \func{virtual void}{SetFocus}{\void}
index 2b7d1f647bf7021fb77db7b0a5d12da06bf7d0a8..dba609ba323ca1c3daaf3f21e3ce780f3e3bf410 100644 (file)
@@ -40,6 +40,14 @@ Returns \true if the platform supports making the window translucent.
 \helpref{wxTopLevelWindow::SetTransparent}{wxtoplevelwindowsettransparent}
 
 
+\membersection{wxTopLevelWindow::GetDefaultItem}\label{wxtoplevelwindowgetdefaultitem}
+
+\constfunc{wxWindow *}{GetDefaultItem}{\void}
+
+Returns a pointer to the button which is the default for this window, or \NULL.
+The default button is the one activated by pressing the Enter key.
+
+
 \membersection{wxTopLevelWindow::GetIcon}\label{wxtoplevelwindowgeticon}
 
 \constfunc{const wxIcon\&}{GetIcon}{\void}
@@ -177,6 +185,17 @@ This function is currently implemented for Win32 where it flashes the
 window icon in the taskbar, and for wxGTK with task bars supporting it.
 
 
+\membersection{wxTopLevelWindow::SetDefaultItem}\label{wxtoplevelwindowsetdefaultitem}
+
+\func{void}{SetDefaultItem}{\param{wxWindow }{*win}}
+
+Changes the default item for the panel, usually \arg{win} is a button.
+
+\wxheading{See also}
+
+\helpref{GetDefaultItem}{wxtoplevelwindowgetdefaultitem}
+
+
 \membersection{wxTopLevelWindow::SetIcon}\label{wxtoplevelwindowseticon}
 
 \func{void}{SetIcon}{\param{const wxIcon\& }{icon}}