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