| 1 | ///////////////////////////////////////////////////////////////////////////// |
| 2 | // Name: 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 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
| 13 | #pragma implementation "radioboxbase.h" |
| 14 | #pragma implementation "radiobox.h" |
| 15 | #endif |
| 16 | |
| 17 | //------------------------------------------------------------------------------------- |
| 18 | // headers |
| 19 | //------------------------------------------------------------------------------------- |
| 20 | |
| 21 | #include "wx/wxprec.h" |
| 22 | |
| 23 | #include "wx/arrstr.h" |
| 24 | |
| 25 | #include "wx/radiobox.h" |
| 26 | #include "wx/radiobut.h" |
| 27 | #include "wx/mac/uma.h" |
| 28 | |
| 29 | #if !USE_SHARED_LIBRARY |
| 30 | IMPLEMENT_DYNAMIC_CLASS(wxRadioBox, wxControl) |
| 31 | #endif |
| 32 | |
| 33 | //------------------------------------------------------------------------------------- |
| 34 |