]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: src/mac/carbon/radiobox.cpp | |
3 | // Purpose: wxRadioBox | |
4 | // Author: Stefan Csomor | |
5 | // Modified by: JS Lair (99/11/15) first implementation | |
6 | // Created: 1998-01-01 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Stefan Csomor | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | //------------------------------------------------------------------------------------- | |
13 | // headers | |
14 | //------------------------------------------------------------------------------------- | |
15 | ||
16 | #include "wx/wxprec.h" | |
17 | ||
18 | #if wxUSE_RADIOBOX | |
19 | ||
20 | #include "wx/arrstr.h" | |
21 | ||
22 | #include "wx/radiobox.h" | |
23 | #include "wx/radiobut.h" | |
24 | #include "wx/mac/uma.h" | |
25 | ||
26 | IMPLEMENT_DYNAMIC_CLASS(wxRadioBox, wxControl) | |
27 | ||
28 | //------------------------------------------------------------------------------------- | |
29 |