]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: src/palmos/nativdlg.cpp | |
3 | // Purpose: Native dialog loading code (part of wxWindow) | |
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 | #ifndef WX_PRECOMP | |
28 | #include <stdio.h> | |
29 | ||
30 | #include "wx/wx.h" | |
31 | #endif | |
32 | ||
33 | #include "wx/spinbutt.h" | |
34 | ||
35 | // --------------------------------------------------------------------------- | |
36 | // global functions | |
37 | // --------------------------------------------------------------------------- | |
38 | ||
39 | // =========================================================================== | |
40 | // implementation | |
41 | // =========================================================================== | |
42 | ||
43 | bool wxWindow::LoadNativeDialog(wxWindow* parent, wxWindowID& id) | |
44 | { | |
45 | return false; | |
46 | } | |
47 | ||
48 | bool wxWindow::LoadNativeDialog(wxWindow* parent, const wxString& name) | |
49 | { | |
50 | return false; | |
51 | } | |
52 | ||
53 | // --------------------------------------------------------------------------- | |
54 | // look for child by id | |
55 | // --------------------------------------------------------------------------- | |
56 | ||
57 | wxWindow* wxWindow::GetWindowChild1(wxWindowID id) | |
58 | { | |
59 | return NULL; | |
60 | } | |
61 | ||
62 | wxWindow* wxWindow::GetWindowChild(wxWindowID id) | |
63 | { | |
64 | return NULL; | |
65 | } | |
66 | ||
67 | // --------------------------------------------------------------------------- | |
68 | // create wxWin window from a native HWND | |
69 | // --------------------------------------------------------------------------- | |
70 | ||
71 | wxWindow* wxWindow::CreateWindowFromWinHandle(wxWindow* parent, WXWINHANDLE handle) | |
72 | { | |
73 | return NULL; | |
74 | } | |
75 | ||
76 | // Make sure the window style (etc.) reflects the WinHandle style (roughly) | |
77 | void wxWindow::AdoptAttributesFromWinHandle(void) | |
78 | { | |
79 | } | |
80 |