]>
Commit | Line | Data |
---|---|---|
ffecfa5a | 1 | ///////////////////////////////////////////////////////////////////////////// |
e2731512 | 2 | // Name: src/palmos/statbox.cpp |
ffecfa5a | 3 | // Purpose: wxStaticBox |
e2731512 | 4 | // Author: William Osborne - minimal working wxPalmOS port |
ffecfa5a JS |
5 | // Modified by: |
6 | // Created: 10/13/04 | |
e2731512 | 7 | // RCS-ID: $Id$ |
ffecfa5a JS |
8 | // Copyright: (c) William Osborne |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
ffecfa5a JS |
20 | // For compilers that support precompilation, includes "wx.h". |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
24 | #pragma hdrstop | |
25 | #endif | |
26 | ||
27 | #if wxUSE_STATBOX | |
28 | ||
29 | #ifndef WX_PRECOMP | |
30 | #include "wx/app.h" | |
31 | #include "wx/dcclient.h" | |
32 | #endif | |
33 | ||
34 | #include "wx/statbox.h" | |
35 | ||
36 | #include "wx/palmos/private.h" | |
37 | ||
38 | // ---------------------------------------------------------------------------- | |
39 | // wxWin macros | |
40 | // ---------------------------------------------------------------------------- | |
41 | ||
ffecfa5a JS |
42 | // ============================================================================ |
43 | // implementation | |
44 | // ============================================================================ | |
45 | ||
46 | // ---------------------------------------------------------------------------- | |
47 | // wxStaticBox | |
48 | // ---------------------------------------------------------------------------- | |
49 | ||
50 | bool wxStaticBox::Create(wxWindow *parent, | |
51 | wxWindowID id, | |
52 | const wxString& label, | |
53 | const wxPoint& pos, | |
54 | const wxSize& size, | |
55 | long style, | |
56 | const wxString& name) | |
57 | { | |
58 | return false; | |
59 | } | |
60 | ||
61 | wxSize wxStaticBox::DoGetBestSize() const | |
62 | { | |
63 | return wxSize(0,0); | |
64 | } | |
65 | ||
66 | WXLRESULT wxStaticBox::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam) | |
67 | { | |
68 | return 0; | |
69 | } | |
70 | ||
71 | #endif // wxUSE_STATBOX |