1998-05-20 14:12:05 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: combobox.h
|
|
|
|
// Purpose: wxComboBox class
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 01/02/97
|
|
|
|
// RCS-ID: $Id$
|
1998-08-07 23:52:45 +00:00
|
|
|
// Copyright: (c) Julian Smart
|
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:12:05 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-07 23:52:45 +00:00
|
|
|
#ifndef _WX_COMBOBOX_H_
|
|
|
|
#define _WX_COMBOBOX_H_
|
1998-05-20 14:12:05 +00:00
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface "combobox.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/choice.h"
|
|
|
|
|
1998-09-25 13:28:52 +00:00
|
|
|
#if wxUSE_COMBOBOX
|
1998-05-20 14:12:05 +00:00
|
|
|
|
|
|
|
WXDLLEXPORT_DATA(extern const char*) wxComboBoxNameStr;
|
|
|
|
WXDLLEXPORT_DATA(extern const char*) wxEmptyString;
|
|
|
|
|
|
|
|
// Combobox item
|
|
|
|
class WXDLLEXPORT wxComboBox: public wxChoice
|
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxComboBox)
|
|
|
|
|
|
|
|
public:
|
|
|
|
inline wxComboBox(void) {}
|
|
|
|
|
1998-07-04 15:17:59 +00:00
|
|
|
inline wxComboBox(wxWindow *parent, wxWindowID id,
|
1998-05-20 14:12:05 +00:00
|
|
|
const wxString& value = wxEmptyString,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
1998-07-04 15:17:59 +00:00
|
|
|
int n = 0, const wxString choices[] = NULL,
|
|
|
|
long style = 0,
|
1998-05-20 14:12:05 +00:00
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxComboBoxNameStr)
|
|
|
|
{
|
|
|
|
Create(parent, id, value, pos, size, n, choices, style, validator, name);
|
|
|
|
}
|
|
|
|
|
1998-07-04 15:17:59 +00:00
|
|
|
bool Create(wxWindow *parent, wxWindowID id,
|
1998-05-20 14:12:05 +00:00
|
|
|
const wxString& value = wxEmptyString,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
1998-07-04 15:17:59 +00:00
|
|
|
int n = 0, const wxString choices[] = NULL,
|
|
|
|
long style = 0,
|
1998-05-20 14:12:05 +00:00
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxComboBoxNameStr);
|
|
|
|
|
|
|
|
// List functions: see wxChoice
|
|
|
|
|
|
|
|
// Text field functions
|
|
|
|
virtual wxString GetValue(void) const ;
|
|
|
|
virtual void SetValue(const wxString& value);
|
|
|
|
|
|
|
|
// Clipboard operations
|
|
|
|
virtual void Copy(void);
|
|
|
|
virtual void Cut(void);
|
|
|
|
virtual void Paste(void);
|
1998-07-04 15:17:59 +00:00
|
|
|
virtual void SetInsertionPoint(long pos);
|
1998-05-20 14:12:05 +00:00
|
|
|
virtual void SetInsertionPointEnd(void);
|
|
|
|
virtual long GetInsertionPoint(void) const ;
|
|
|
|
virtual long GetLastPosition(void) const ;
|
1998-07-04 15:17:59 +00:00
|
|
|
virtual void Replace(long from, long to, const wxString& value);
|
|
|
|
virtual void Remove(long from, long to);
|
1998-08-04 07:24:05 +00:00
|
|
|
virtual void SetSelection(int n)
|
|
|
|
{
|
|
|
|
wxChoice::SetSelection(n);
|
|
|
|
}
|
1998-07-04 15:17:59 +00:00
|
|
|
virtual void SetSelection(long from, long to);
|
|
|
|
virtual void SetEditable(bool editable);
|
1998-05-20 14:12:05 +00:00
|
|
|
|
1998-07-04 15:17:59 +00:00
|
|
|
virtual bool MSWCommand(WXUINT param, WXWORD id);
|
1998-05-20 14:12:05 +00:00
|
|
|
};
|
|
|
|
|
1998-09-25 13:28:52 +00:00
|
|
|
#endif // wxUSE_COMBOBOX
|
1998-05-20 14:12:05 +00:00
|
|
|
#endif
|
1998-08-07 23:52:45 +00:00
|
|
|
// _WX_COMBOBOX_H_
|