]>
Commit | Line | Data |
---|---|---|
e9576ca5 SC |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: radiobox.cpp | |
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 |
77ffb593 | 9 | // Licence: wxWidgets licence |
e9576ca5 SC |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifdef __GNUG__ | |
e40298d5 JS |
13 | #pragma implementation "radioboxbase.h" |
14 | #pragma implementation "radiobox.h" | |
e9576ca5 SC |
15 | #endif |
16 | ||
eb22f2a6 | 17 | //------------------------------------------------------------------------------------- |
e40298d5 | 18 | // headers |
eb22f2a6 GD |
19 | //------------------------------------------------------------------------------------- |
20 | ||
d8c736e5 | 21 | #include "wx/defs.h" |
584ad2a3 | 22 | #include "wx/arrstr.h" |
d8c736e5 | 23 | |
e9576ca5 | 24 | #include "wx/radiobox.h" |
03e11df5 GD |
25 | #include "wx/radiobut.h" |
26 | #include "wx/mac/uma.h" | |
e9576ca5 | 27 | |
2f1ae414 | 28 | #if !USE_SHARED_LIBRARY |
e9576ca5 | 29 | IMPLEMENT_DYNAMIC_CLASS(wxRadioBox, wxControl) |
2f1ae414 | 30 | #endif |
e9576ca5 | 31 | |
1395ff56 | 32 | //------------------------------------------------------------------------------------- |
e40298d5 | 33 |