]> git.saurik.com Git - wxWidgets.git/blame - docs/doxygen/mainpages/const_stdevtid.h
Remove hard TABs from 3rd party files in src directory.
[wxWidgets.git] / docs / doxygen / mainpages / const_stdevtid.h
CommitLineData
4514447c
FM
1/////////////////////////////////////////////////////////////////////////////
2// Name: const_stdevtid.h
3// Purpose: std event values enumerated
4// Author: wxWidgets team
5// RCS-ID: $Id$
6// Licence: wxWindows license
7/////////////////////////////////////////////////////////////////////////////
8
9
880efa2a 10/**
4514447c 11
928f1a07
FM
12@page page_stdevtid Standard event identifiers
13
14wxWidgets defines a special identifier value @c wxID_ANY which is used in
15the following two situations:
16
17@li when creating a new window you may specify @c wxID_ANY to let
18 wxWidgets assign an unused identifier to it automatically
19@li when installing an event handler using either the event table
20 macros or wxEvtHandler::Connect,
21 you may use it to indicate that you want to handle the events
22 coming from any control, regardless of its identifier
23
24Another standard special identifier value is @c wxID_NONE: this is a value
25which is not matched by any other id.
26
27wxWidgets also defines a few standard command identifiers which may be used by
28the user code and also are sometimes used by wxWidgets itself. These reserved
29identifiers are all in the range between @c wxID_LOWEST and
30@c wxID_HIGHEST and, accordingly, the user code should avoid defining its
31own constants in this range (e.g. by using wxNewId()).
32
99d82720 33Refer to ::wxStockID enumeration values for the reference of these IDs.
4514447c
FM
34
35*/