+++ /dev/null
-/////////////////////////////////////////////////////////////////////////////
-// Name: src/palmos/choice.cpp
-// Purpose: wxChoice
-// Author: William Osborne - minimal working wxPalmOS port
-// Created: 10/13/04
-// RCS-ID: $Id$
-// Copyright: (c) William Osborne
-// Licence: wxWindows licence
-/////////////////////////////////////////////////////////////////////////////
-
-// ============================================================================
-// declarations
-// ============================================================================
-
-// ----------------------------------------------------------------------------
-// headers
-// ----------------------------------------------------------------------------
-
-// For compilers that support precompilation, includes "wx.h".
-#include "wx/wxprec.h"
-
-#ifdef __BORLANDC__
- #pragma hdrstop
-#endif
-
-#if wxUSE_CHOICE
-
-#include "wx/choice.h"
-
-#ifndef WX_PRECOMP
- #include "wx/utils.h"
- #include "wx/log.h"
- #include "wx/brush.h"
- #include "wx/settings.h"
-#endif
-
-// ============================================================================
-// implementation
-// ============================================================================
-
-// ----------------------------------------------------------------------------
-// creation
-// ----------------------------------------------------------------------------
-
-bool wxChoice::Create(wxWindow *parent,
- wxWindowID id,
- const wxPoint& pos,
- const wxSize& size,
- int n, const wxString choices[],
- long style,
- const wxValidator& validator,
- const wxString& name)
-{
- return false;
-}
-
-bool wxChoice::CreateAndInit(wxWindow *parent,
- wxWindowID id,
- const wxPoint& pos,
- const wxSize& size,
- int n, const wxString choices[],
- long style,
- const wxValidator& validator,
- const wxString& name)
-{
- return false;
-}
-
-bool wxChoice::Create(wxWindow *parent,
- wxWindowID id,
- const wxPoint& pos,
- const wxSize& size,
- const wxArrayString& choices,
- long style,
- const wxValidator& validator,
- const wxString& name)
-{
- return false;
-}
-
-wxChoice::~wxChoice()
-{
-}
-
-// ----------------------------------------------------------------------------
-// adding/deleting items to/from the list
-// ----------------------------------------------------------------------------
-
-int wxChoice::DoInsertItems(const wxArrayStringsAdapter& items,
- unsigned int pos,
- void **clientData,
- wxClientDataType type)
-{
- return 0;
-}
-
-void wxChoice::DoDeleteOneItem(unsigned int n)
-{
-}
-
-void wxChoice::DoClear()
-{
-}
-
-void wxChoice::Free()
-{
-}
-
-// ----------------------------------------------------------------------------
-// selection
-// ----------------------------------------------------------------------------
-
-int wxChoice::GetSelection() const
-{
- return 0;
-}
-
-void wxChoice::SetSelection(int n)
-{
-}
-
-// ----------------------------------------------------------------------------
-// string list functions
-// ----------------------------------------------------------------------------
-
-unsigned int wxChoice::GetCount() const
-{
- return 0;
-}
-
-void wxChoice::SetString(unsigned int n, const wxString& s)
-{
-}
-
-wxString wxChoice::GetString(unsigned int n) const
-{
- return wxEmptyString;
-}
-
-// ----------------------------------------------------------------------------
-// client data
-// ----------------------------------------------------------------------------
-
-void wxChoice::DoSetItemClientData(unsigned int n, void* clientData)
-{
-}
-
-void* wxChoice::DoGetItemClientData(unsigned int n) const
-{
- return NULL;
-}
-
-// ----------------------------------------------------------------------------
-// wxMSW specific helpers
-// ----------------------------------------------------------------------------
-
-void wxChoice::UpdateVisibleHeight()
-{
-}
-
-void wxChoice::DoMoveWindow(int x, int y, int width, int height)
-{
-}
-
-void wxChoice::DoGetSize(int *w, int *h) const
-{
-}
-
-void wxChoice::DoSetSize(int x, int y,
- int width, int height,
- int sizeFlags)
-{
-}
-
-wxSize wxChoice::DoGetBestSize() const
-{
- return wxSize(0,0);
-}
-
-#endif // wxUSE_CHOICE