]> git.saurik.com Git - wxWidgets.git/blob - src/palmos/nativdlg.cpp
Use __WXPALMOS__ for PalmOS port which fits __WX$(TOOLKIT)__ of bakefiles. Do not...
[wxWidgets.git] / src / palmos / nativdlg.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: nativdlg.cpp
3 // Purpose: Native dialog loading code (part of wxWindow)
4 // Author: William Osborne
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 #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
75 wxWindow* wxWindow::CreateWindowFromHWND(wxWindow* parent, WXHWND hWnd)
76 {
77 return NULL;
78 }
79
80 // Make sure the window style (etc.) reflects the HWND style (roughly)
81 void wxWindow::AdoptAttributesFromHWND(void)
82 {
83 }
84