From ff7774f191cf6c337d072c93cdb9cbceaf9176d3 Mon Sep 17 00:00:00 2001 From: Francesco Montorsi Date: Sun, 18 Jan 2009 23:27:41 +0000 Subject: [PATCH] document some wxID_* constants git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58215 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- interface/wx/defs.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/interface/wx/defs.h b/interface/wx/defs.h index 5eeba8ee71..812d422968 100644 --- a/interface/wx/defs.h +++ b/interface/wx/defs.h @@ -6,6 +6,23 @@ // Licence: wxWindows license ///////////////////////////////////////////////////////////////////////////// + +/** + No id matches this one when compared to it. +*/ +int wxID_NONE = -3; + +/** + Id for a separator line in the menu (invalid for normal item). +*/ +int wxID_SEPARATOR = -2; + +/** + Any id: means that we don't care about the id, whether when installing + an event handler or when creating a new window. +*/ +int wxID_ANY = -1; + /** Item kinds for use with wxMenu, wxMenuItem, and wxToolBar. -- 2.47.2