The functions are available in wxBase builds too, but wx/windowid.h
isn't. Rather than always including that header, just use int, for which
wxWindowID is a typedef. This keeps the functions available in wxBase
for compatibility and is consistent with how IDs are handled in other
parts of wxBase, particularly wxEvent.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74486
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// ----------------------------------------------------------------------------
// Ensure subsequent IDs don't clash with this one
// ----------------------------------------------------------------------------
// Ensure subsequent IDs don't clash with this one
-WXDLLIMPEXP_BASE void wxRegisterId(wxWindowID id);
+WXDLLIMPEXP_BASE void wxRegisterId(int id);
-WXDLLIMPEXP_BASE wxWindowID wxGetCurrentId();
+WXDLLIMPEXP_BASE int wxGetCurrentId();
-WXDLLIMPEXP_BASE wxWindowID wxNewId();
+WXDLLIMPEXP_BASE int wxNewId();
// ----------------------------------------------------------------------------
// Various conversions
// ----------------------------------------------------------------------------
// Various conversions
/**
Ensures that Ids subsequently generated by wxNewId() do not clash with the
/**
Ensures that Ids subsequently generated by wxNewId() do not clash with the
-void wxRegisterId(wxWindowID id);
+void wxRegisterId(int id);
/**
Opens the @a document in the application associated with the files of this
/**
Opens the @a document in the application associated with the files of this
// ----------------------------------------------------------------------------
// Id generation
// ----------------------------------------------------------------------------
// Id generation
-static wxWindowID wxCurrentId = 100;
+static int wxCurrentId = 100;
{
// skip the part of IDs space that contains hard-coded values:
if (wxCurrentId == wxID_LOWEST)
{
// skip the part of IDs space that contains hard-coded values:
if (wxCurrentId == wxID_LOWEST)
wxGetCurrentId(void) { return wxCurrentId; }
void
wxGetCurrentId(void) { return wxCurrentId; }
void
-wxRegisterId (wxWindowID id)
{
if (id >= wxCurrentId)
wxCurrentId = id + 1;
{
if (id >= wxCurrentId)
wxCurrentId = id + 1;