]>
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 |
65571936 | 9 | // Licence: wxWindows licence |
e9576ca5 SC |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
3d1a4878 | 12 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
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 | ||
3d1a4878 SC |
21 | #include "wx/wxprec.h" |
22 | ||
179e085f RN |
23 | #if wxUSE_RADIOBOX |
24 | ||
584ad2a3 | 25 | #include "wx/arrstr.h" |
d8c736e5 | 26 | |
e9576ca5 | 27 | #include "wx/radiobox.h" |
03e11df5 GD |
28 | #include "wx/radiobut.h" |
29 | #include "wx/mac/uma.h" | |
e9576ca5 | 30 | |
e9576ca5 | 31 | IMPLEMENT_DYNAMIC_CLASS(wxRadioBox, wxControl) |
e9576ca5 | 32 | |
1395ff56 | 33 | //------------------------------------------------------------------------------------- |
e40298d5 | 34 |