X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/14421681253f09f119dad82364f5ada40f58f2fc..662ba874795045558374a61c85a7e3c2de5bbdbb:/interface/wx/window.h diff --git a/interface/wx/window.h b/interface/wx/window.h index dce860350c..83725acb33 100644 --- a/interface/wx/window.h +++ b/interface/wx/window.h @@ -53,18 +53,21 @@ enum wxShowEffect /** - struct containing all the visual attributes of a control + Struct containing all the visual attributes of a control. */ struct wxVisualAttributes { - // the font used for control label/text inside it + /// The font used for control label/text inside it. wxFont font; - // the foreground colour + /// The foreground colour. wxColour colFg; - // the background colour, may be wxNullColour if the controls background - // colour is not solid + /** + The background colour. + + May be wxNullColour if the controls background colour is not solid. + */ wxColour colBg; }; @@ -3169,17 +3172,6 @@ public: */ virtual bool IsTopLevel() const; - /** - Disables all other windows in the application so that - the user can only interact with this window. - - @param modal - If @true, this call disables all other windows in the application so that - the user can only interact with this window. If @false, the effect is - reversed. - */ - virtual void MakeModal(bool modal = true); - /** This virtual function is normally only used internally, but