]>
Commit | Line | Data |
---|---|---|
ffecfa5a | 1 | ///////////////////////////////////////////////////////////////////////////// |
e2731512 | 2 | // Name: src/palmos/statline.cpp |
ffecfa5a | 3 | // Purpose: wxStaticLine class |
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 | ||
e4db172a WS |
27 | #if wxUSE_STATLINE |
28 | ||
ffecfa5a JS |
29 | #include "wx/statline.h" |
30 | ||
e4db172a WS |
31 | #ifndef WX_PRECOMP |
32 | #include "wx/log.h" | |
33 | #endif | |
ffecfa5a JS |
34 | |
35 | #include "wx/palmos/private.h" | |
ffecfa5a JS |
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 | ||
ffecfa5a JS |
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 |