From: Vadim Zeitlin Date: Mon, 17 May 1999 14:51:52 +0000 (+0000) Subject: added Next/PrevControlId X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/c539ab556d4e28999ea360567cddfcfe188d969e added Next/PrevControlId git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2485 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/window.h b/include/wx/window.h index e801a29cf5..b12fa1de05 100644 --- a/include/wx/window.h +++ b/include/wx/window.h @@ -171,6 +171,12 @@ public: // generate a control id for the controls which were not given one by // user static int NewControlId() { return --ms_lastControlId; } + // get the id of the control following the one with the given + // (autogenerated) id + static int NextControlId(int id) { return id - 1; } + // get the id of the control preceding the one with the given + // (autogenerated) id + static int PrevControlId(int id) { return id + 1; } // moving/resizing // ---------------