]>
Commit | Line | Data |
---|---|---|
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 | #ifdef __GNUG__ | |
13 | #pragma implementation "radioboxbase.h" | |
14 | #pragma implementation "radiobox.h" | |
15 | #endif | |
16 | ||
17 | //------------------------------------------------------------------------------------- | |
18 | // headers | |
19 | //------------------------------------------------------------------------------------- | |
20 | ||
21 | #include "wx/defs.h" | |
22 | #include "wx/arrstr.h" | |
23 | ||
24 | #include "wx/radiobox.h" | |
25 | #include "wx/radiobut.h" | |
26 | #include "wx/mac/uma.h" | |
27 | ||
28 | #if !USE_SHARED_LIBRARY | |
29 | IMPLEMENT_DYNAMIC_CLASS(wxRadioBox, wxControl) | |
30 | #endif | |
31 | ||
32 | //------------------------------------------------------------------------------------- | |
33 |