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