]> git.saurik.com Git - wxWidgets.git/blame - src/palmos/nativdlg.cpp
Don't use m_popupInterface pointer if it is still NULL
[wxWidgets.git] / src / palmos / nativdlg.cpp
CommitLineData
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
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
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
43bool wxWindow::LoadNativeDialog(wxWindow* parent, wxWindowID& id)
44{
45 return false;
46}
47
48bool wxWindow::LoadNativeDialog(wxWindow* parent, const wxString& name)
49{
50 return false;
51}
52
53// ---------------------------------------------------------------------------
54// look for child by id
55// ---------------------------------------------------------------------------
56
57wxWindow* wxWindow::GetWindowChild1(wxWindowID id)
58{
59 return NULL;
60}
61
62wxWindow* wxWindow::GetWindowChild(wxWindowID id)
63{
64 return NULL;
65}
66
67// ---------------------------------------------------------------------------
68// create wxWin window from a native HWND
69// ---------------------------------------------------------------------------
70
324eeecb 71wxWindow* wxWindow::CreateWindowFromWinHandle(wxWindow* parent, WXWINHANDLE handle)
ffecfa5a
JS
72{
73 return NULL;
74}
75
324eeecb
WS
76// Make sure the window style (etc.) reflects the WinHandle style (roughly)
77void wxWindow::AdoptAttributesFromWinHandle(void)
ffecfa5a
JS
78{
79}
80