Fix LaTeX docs for PDF manual.

LaTeX fails to handle tables nested in @param sections, and we've
only used them to expand on enums that should be documented on
their own anyway, so the docs have been extracted here.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@78452 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Bryan Petty
2015-02-06 01:51:27 +00:00
parent 87f91dcbec
commit 322a55e63d
2 changed files with 28 additions and 45 deletions

View File

@@ -918,6 +918,16 @@ protected:
*/
virtual void DoSetPopupControl(wxComboPopup* popup);
/**
Flags for DoShowPopup() and AnimateShow().
*/
enum
{
ShowBelow = 0x0000, //!< Show popup below the control.
ShowAbove = 0x0001, //!< Show popup above the control.
CanDeferShow = 0x0002 //!< Can only return true from AnimateShow() if this is set.
};
/**
This member function is not normally called in application code.
Instead, it must be called in a derived class to make sure popup is
@@ -927,15 +937,8 @@ protected:
@param rect
Position to show the popup window at, in screen coordinates.
@param flags
Combination of any of the following:
@beginTable
@row2col{wxComboCtrl::ShowAbove,
Popup is shown above the control instead of below.}
@row2col{wxComboCtrl::CanDeferShow,
Showing the popup can be deferred to happen sometime after
ShowPopup() has finished. In this case, AnimateShow() must
return false.}
@endTable
Combination of any of the following: wxComboCtrl::ShowAbove,
and wxComboCtrl::CanDeferShow.
*/
virtual void DoShowPopup(const wxRect& rect, int flags);
};