2001-06-26 16:59:19 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/combobox.h
|
|
|
|
// Purpose: wxComboBox declaration
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Modified by:
|
|
|
|
// Created: 24.12.00
|
|
|
|
// RCS-ID: $Id$
|
2004-05-23 10:56:36 -04:00
|
|
|
// Copyright: (c) 1996-2000 wxWidgets team
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
2001-06-26 16:59:19 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-14 20:23:28 -04:00
|
|
|
#ifndef _WX_COMBOBOX_H_BASE_
|
|
|
|
#define _WX_COMBOBOX_H_BASE_
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
#include "wx/defs.h"
|
|
|
|
|
|
|
|
#if wxUSE_COMBOBOX
|
|
|
|
|
|
|
|
WXDLLEXPORT_DATA(extern const wxChar*) wxComboBoxNameStr;
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxComboBoxBase: this interface defines the methods wxComboBox must implement
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#include "wx/ctrlsub.h"
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxComboBoxBase : public wxItemContainer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// wxTextCtrl-like methods wxComboBox must implement
|
|
|
|
virtual wxString GetValue() const = 0;
|
|
|
|
virtual void SetValue(const wxString& value) = 0;
|
|
|
|
|
|
|
|
virtual void Copy() = 0;
|
|
|
|
virtual void Cut() = 0;
|
|
|
|
virtual void Paste() = 0;
|
|
|
|
virtual void SetInsertionPoint(long pos) = 0;
|
|
|
|
virtual long GetInsertionPoint() const = 0;
|
|
|
|
virtual long GetLastPosition() const = 0;
|
|
|
|
virtual void Replace(long from, long to, const wxString& value) = 0;
|
|
|
|
virtual void SetSelection(long from, long to) = 0;
|
|
|
|
virtual void SetEditable(bool editable) = 0;
|
|
|
|
|
|
|
|
virtual void SetInsertionPointEnd()
|
|
|
|
{ SetInsertionPoint(GetLastPosition()); }
|
|
|
|
virtual void Remove(long from, long to)
|
|
|
|
{ Replace(from, to, wxEmptyString); }
|
|
|
|
};
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// include the platform-dependent header defining the real class
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#if defined(__WXUNIVERSAL__)
|
|
|
|
#include "wx/univ/combobox.h"
|
|
|
|
#elif defined(__WXMSW__)
|
|
|
|
#include "wx/msw/combobox.h"
|
1998-07-10 10:15:17 -04:00
|
|
|
#elif defined(__WXMOTIF__)
|
2001-06-26 16:59:19 -04:00
|
|
|
#include "wx/motif/combobox.h"
|
1998-07-10 10:15:17 -04:00
|
|
|
#elif defined(__WXGTK__)
|
2001-06-26 16:59:19 -04:00
|
|
|
#include "wx/gtk/combobox.h"
|
1998-08-14 20:23:28 -04:00
|
|
|
#elif defined(__WXMAC__)
|
2001-06-26 16:59:19 -04:00
|
|
|
#include "wx/mac/combobox.h"
|
2003-07-14 11:58:33 -04:00
|
|
|
#elif defined(__WXCOCOA__)
|
|
|
|
#include "wx/cocoa/combobox.h"
|
1999-07-27 23:38:12 -04:00
|
|
|
#elif defined(__WXPM__)
|
2001-06-26 16:59:19 -04:00
|
|
|
#include "wx/os2/combobox.h"
|
1998-05-20 10:01:55 -04:00
|
|
|
#endif
|
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
#endif // wxUSE_COMBOBOX
|
|
|
|
|
1998-05-20 10:01:55 -04:00
|
|
|
#endif
|
1998-08-14 20:23:28 -04:00
|
|
|
// _WX_COMBOBOX_H_BASE_
|