3f66f6a5b3
This keyword is not expanded by Git which means it's not replaced with the correct revision value in the releases made using git-based scripts and it's confusing to have lines with unexpanded "$Id$" in the released files. As expanding them with Git is not that simple (it could be done with git archive and export-subst attribute) and there are not many benefits in having them in the first place, just remove all these lines. If nothing else, this will make an eventual transition to Git simpler. Closes #14487. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
138 lines
4.7 KiB
C++
138 lines
4.7 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/os2/combobox.h
|
|
// Purpose: wxComboBox class
|
|
// Author: David Webster
|
|
// Modified by:
|
|
// Created: 10/13/99
|
|
// Copyright: (c) David Webster
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_COMBOBOX_H_
|
|
#define _WX_COMBOBOX_H_
|
|
|
|
#include "wx/choice.h"
|
|
#include "wx/textentry.h"
|
|
|
|
#if wxUSE_COMBOBOX
|
|
|
|
// Combobox item
|
|
class WXDLLIMPEXP_CORE wxComboBox : public wxChoice,
|
|
public wxTextEntry
|
|
{
|
|
|
|
public:
|
|
inline wxComboBox() {}
|
|
|
|
inline wxComboBox( wxWindow* pParent
|
|
,wxWindowID vId
|
|
,const wxString& rsValue = wxEmptyString
|
|
,const wxPoint& rPos = wxDefaultPosition
|
|
,const wxSize& rSize = wxDefaultSize
|
|
,int n = 0
|
|
,const wxString asChoices[] = NULL
|
|
,long lStyle = 0
|
|
,const wxValidator& rValidator = wxDefaultValidator
|
|
,const wxString& rsName = wxComboBoxNameStr
|
|
)
|
|
{
|
|
Create( pParent
|
|
,vId
|
|
,rsValue
|
|
,rPos
|
|
,rSize
|
|
,n
|
|
,asChoices
|
|
,lStyle
|
|
,rValidator
|
|
,rsName
|
|
);
|
|
}
|
|
|
|
inline wxComboBox( wxWindow* pParent
|
|
,wxWindowID vId
|
|
,const wxString& rsValue
|
|
,const wxPoint& rPos
|
|
,const wxSize& rSize
|
|
,const wxArrayString& asChoices
|
|
,long lStyle = 0
|
|
,const wxValidator& rValidator = wxDefaultValidator
|
|
,const wxString& rsName = wxComboBoxNameStr
|
|
)
|
|
{
|
|
Create( pParent
|
|
,vId
|
|
,rsValue
|
|
,rPos
|
|
,rSize
|
|
,asChoices
|
|
,lStyle
|
|
,rValidator
|
|
,rsName
|
|
);
|
|
}
|
|
|
|
bool Create( wxWindow* pParent
|
|
,wxWindowID vId
|
|
,const wxString& rsValue = wxEmptyString
|
|
,const wxPoint& rPos = wxDefaultPosition
|
|
,const wxSize& rSize = wxDefaultSize
|
|
,int n = 0
|
|
,const wxString asChoices[] = NULL
|
|
,long lStyle = 0
|
|
,const wxValidator& rValidator = wxDefaultValidator
|
|
,const wxString& rsName = wxComboBoxNameStr
|
|
);
|
|
|
|
bool Create( wxWindow* pParent
|
|
,wxWindowID vId
|
|
,const wxString& rsValue
|
|
,const wxPoint& rPos
|
|
,const wxSize& rSize
|
|
,const wxArrayString& asChoices
|
|
,long lStyle = 0
|
|
,const wxValidator& rValidator = wxDefaultValidator
|
|
,const wxString& rsName = wxComboBoxNameStr
|
|
);
|
|
|
|
// See wxComboBoxBase discussion of IsEmpty().
|
|
bool IsListEmpty() const { return wxItemContainer::IsEmpty(); }
|
|
bool IsTextEmpty() const { return wxTextEntry::IsEmpty(); }
|
|
|
|
// resolve ambiguities among virtual functions inherited from both base
|
|
// classes
|
|
virtual void Clear();
|
|
virtual wxString GetValue() const;
|
|
virtual void SetValue(const wxString& value);
|
|
virtual wxString GetStringSelection() const
|
|
{ return wxChoice::GetStringSelection(); }
|
|
|
|
inline virtual void SetSelection(int n) { wxChoice::SetSelection(n); }
|
|
virtual void SetSelection(long from, long to)
|
|
{ wxTextEntry::SetSelection(from, to); }
|
|
virtual int GetSelection() const { return wxChoice::GetSelection(); }
|
|
virtual void GetSelection(long *from, long *to) const
|
|
{ wxTextEntry::GetSelection(from, to); }
|
|
|
|
virtual bool IsEditable() const;
|
|
|
|
virtual bool OS2Command( WXUINT uParam
|
|
,WXWORD wId
|
|
);
|
|
bool ProcessEditMsg( WXUINT uMsg
|
|
,WXWPARAM wParam
|
|
,WXLPARAM lParam
|
|
);
|
|
|
|
private:
|
|
// implement wxTextEntry pure virtual methods
|
|
virtual wxWindow *GetEditableWindow() { return this; }
|
|
virtual WXHWND GetEditHWND() const { return m_hWnd; }
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxComboBox)
|
|
}; // end of CLASS wxComboBox
|
|
|
|
#endif // wxUSE_COMBOBOX
|
|
#endif
|
|
// _WX_COMBOBOX_H_
|