]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: src/palmos/statline.cpp | |
3 | // Purpose: wxStaticLine class | |
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_STATLINE | |
28 | ||
29 | #include "wx/statline.h" | |
30 | ||
31 | #ifndef WX_PRECOMP | |
32 | #include "wx/log.h" | |
33 | #endif | |
34 | ||
35 | #include "wx/palmos/private.h" | |
36 | ||
37 | #ifndef SS_SUNKEN | |
38 | #define SS_SUNKEN 0x00001000L | |
39 | #endif | |
40 | ||
41 | #ifndef SS_NOTIFY | |
42 | #define SS_NOTIFY 0x00000100L | |
43 | #endif | |
44 | ||
45 | // ============================================================================ | |
46 | // implementation | |
47 | // ============================================================================ | |
48 | ||
49 | // ---------------------------------------------------------------------------- | |
50 | // wxStaticLine | |
51 | // ---------------------------------------------------------------------------- | |
52 | ||
53 | bool wxStaticLine::Create(wxWindow *parent, | |
54 | wxWindowID id, | |
55 | const wxPoint& pos, | |
56 | const wxSize& sizeOrig, | |
57 | long style, | |
58 | const wxString &name) | |
59 | { | |
60 | return false; | |
61 | } | |
62 | ||
63 | WXDWORD wxStaticLine::MSWGetStyle(long style, WXDWORD *exstyle) const | |
64 | { | |
65 | return 0; | |
66 | } | |
67 | ||
68 | #endif // wxUSE_STATLINE |