]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/palmos/statbox.cpp
Add backend descriptions for all backends to the documentation.
[wxWidgets.git] / src / palmos / statbox.cpp
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: src/palmos/statbox.cpp
3// Purpose: wxStaticBox
4// Author: William Osborne - minimal working wxPalmOS port
5// Modified by:
6// Created: 10/13/04
7// RCS-ID: $Id$
8// Copyright: (c) William Osborne
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
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
42// ============================================================================
43// implementation
44// ============================================================================
45
46// ----------------------------------------------------------------------------
47// wxStaticBox
48// ----------------------------------------------------------------------------
49
50bool 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
61wxSize wxStaticBox::DoGetBestSize() const
62{
63 return wxSize(0,0);
64}
65
66WXLRESULT wxStaticBox::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam)
67{
68 return 0;
69}
70
71#endif // wxUSE_STATBOX