]>
Commit | Line | Data |
---|---|---|
12ec9c09 VZ |
1 | \section{Window IDs overview}\label{windowidsoverview} |
2 | ||
3 | \wxheading{See Also} | |
4 | ||
5 | \helpref{wxIdManager}{wxidmanager} | |
6 | \helpref{wxWindow::NewControlId}{wxwindownewcontrolid} | |
7 | \helpref{wxWindow::UnreserveControlId}{wxwindowunreservecontrolid} | |
8 | ||
9 | \subsection{Introduction}\label{windowidsoverviewintro} | |
10 | ||
11 | Various contols and other parts of wxWidgets need an ID. Sometimes the | |
12 | ID may be directly provided by the use or have a predefined value, such as | |
5e6ce06a VZ |
13 | \texttt{wxID\_OPEN}. Often, however, the value of the ID is unimportant and is |
14 | created automatically by calling \helpref{wxWindow::NewControlId}{wxwindownewcontrolid} | |
15 | or by passing \texttt{wxID\_ANY} as the ID of an object. | |
12ec9c09 VZ |
16 | |
17 | There are two ways to generate an ID. One way, is to start at a negative number, | |
18 | and for each new ID, return the next smallest number. This is fine for systems | |
19 | that can used the full range of negative numbers for an ID, as this provides | |
20 | more than enough IDs and it would take a very very long time to run out and | |
21 | wrap around. However, some systems can not use the full range of the ID value. | |
22 | Windows, for example, can only use 16 bit IDs, and only has about 32000 possible | |
23 | automatic IDs that can be generated by \helpref{wxWindow::NewControlId}{wxwindownewcontrolid}. | |
24 | If the program runs long enough, depending on the program itself, using this first | |
25 | method would cause the IDs to wrap around into the positive ID range and cause possible | |
26 | clashes with any directly specified ID values. | |
27 | ||
28 | The other way is to keep track of the IDs returned by \helpref{wxWindow::NewControlId}{wxwindownewcontrolid} | |
29 | and don't return them again until the ID is completely free and not being used by | |
30 | any other objects. This will make sure that the ID values do not clash with one | |
31 | another. This is accomplished by keeping a reference count for each of the IDs | |
32 | that can possibly be returned by \helpref{wxWindow::NewControlId}{wxwindownewcontrolid}. | |
33 | Other IDs are not reference counted. | |
34 | ||
35 | \subsection{Data types}\label{windowidsoverviewtypes} | |
36 | ||
37 | A wxWindowID is just the integer type for a window ID. It should be used almost | |
38 | everywhere. To help keep track of the count for the automatically generated IDs, | |
39 | a new type, wxWindowIDRef exists, that can take the place of wxWindowID where needed. | |
40 | When an ID is first created, it is marked as reserved. When assigning it to a | |
41 | wxWindowIDRef, the usage count of the ID is increased, or set to 1 if it is currently | |
42 | reserved. Assigning the same ID to several wxWindowIDRefs will keep track of the count. | |
43 | As the wxWindowIDRef gets destroyed or its value changes, it will decrease the count | |
44 | of the used ID. When there are no more wxWindowIDRef types with the created ID, the | |
45 | ID is considered free and can then be used again by \helpref{wxWindow::NewControlId}{wxwindownewcontrolid}. | |
46 | ||
47 | If a created ID is not assigned to a wxWindowIDRef, then it remains reserved until it | |
48 | is unreserved manually with \helpref{wxWindow::UnreserveControlId}{wxwindowunreservecontrolid}. | |
49 | However, if it is assigned to a wxWindowIDRef, then it will be unreserved automatically | |
50 | and will be considered free when the count is 0, and should NOT be manually unreserved. | |
51 | ||
52 | wxWindowIDRef can store both automatic IDs from \helpref{wxWindow::NewControlId}{wxwindownewcontrolid} | |
53 | as well as normal IDs. Reference counting is only done for the automatic IDs. Also, | |
54 | wxWindowIDRef has conversion operators that allow it to be treated just like a wxWindowID. | |
55 | ||
56 | \subsection{Using wxWindowIDRef}\label{windowidsoverviewusing} | |
57 | ||
58 | A wxWindowIDRef should be used in place of a wxWindowID where you want to make sure the | |
59 | ID is not created again by \helpref{wxWindow::NewControlId}{wxwindownewcontrolid} | |
60 | at least until the wxWindowIDRef is destroyed, usually when the associated object is destroyed. | |
61 | This is done already for windows, menu items, and tool bar items. | |
62 | It should only be used in the main thread, as it is not thread safe. | |
63 |