2008-03-08 08:52:38 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: windowid.h
|
2008-03-10 11:24:38 -04:00
|
|
|
// Purpose: interface of wxIdManager
|
2008-03-08 08:52:38 -05:00
|
|
|
// Author: wxWidgets team
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Licence: wxWindows license
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/**
|
|
|
|
@class wxIdManager
|
2008-03-08 09:43:31 -05:00
|
|
|
|
2008-03-08 08:52:38 -05:00
|
|
|
wxIdManager is responsible for allocating and releasing window IDs. It
|
|
|
|
is used by wxWindow::NewControlId and
|
|
|
|
wxWindow::UnreserveControlId, and can also
|
|
|
|
be used be used directly.
|
2008-03-08 09:43:31 -05:00
|
|
|
|
2008-03-08 08:52:38 -05:00
|
|
|
@library{wxcore}
|
|
|
|
@category{FIXME}
|
2008-03-08 09:43:31 -05:00
|
|
|
|
2008-03-10 11:24:38 -04:00
|
|
|
@see wxWindow::NewControlId, wxWindow::UnreserveControlId, @ref
|
2008-03-08 08:52:38 -05:00
|
|
|
overview_windowidsoverview "Window IDs overview"
|
|
|
|
*/
|
2008-03-08 09:43:31 -05:00
|
|
|
class wxIdManager
|
2008-03-08 08:52:38 -05:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
Called directly by wxWindow::NewControlId,
|
|
|
|
this function will create a new ID or range of IDs. The IDs will be
|
2008-03-10 11:24:38 -04:00
|
|
|
reserved until assigned to a wxWindowIDRef()
|
2008-03-08 08:52:38 -05:00
|
|
|
or unreserved with UnreserveControlId().
|
2008-03-10 11:24:38 -04:00
|
|
|
Only ID values that are not assigned to a wxWindowIDRef()
|
2008-03-08 08:52:38 -05:00
|
|
|
need to be unreserved.
|
2008-03-20 09:45:17 -04:00
|
|
|
|
2008-03-08 09:43:31 -05:00
|
|
|
@param count
|
2008-03-09 08:33:59 -04:00
|
|
|
The number of sequential IDs to reserve.
|
2008-03-20 09:45:17 -04:00
|
|
|
|
2008-05-10 21:38:53 -04:00
|
|
|
@return The value of the first ID in the sequence, or wxID_NONE.
|
2008-03-08 08:52:38 -05:00
|
|
|
*/
|
|
|
|
static wxWindowID ReserveControlId(int count = 1);
|
|
|
|
};
|
2008-03-10 11:24:38 -04:00
|
|
|
|