adacb5c07e
It seems unlikely that we're ever going to need this function in any other classes inheriting from wxTextEntry (i.e. wxComboBox) and both existing implementations are for wxTextCtrl only, so define this function there. If really necessary, we can always lower it to wxTextEntry later, while moving it in the other direction wouldn't be easily possible due to compatibility concerns. This commit is best viewed with git --color-moved option.
116 lines
3.7 KiB
C++
116 lines
3.7 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/osx/textentry.h
|
|
// Purpose: wxTextEntry class
|
|
// Author: Stefan Csomor
|
|
// Modified by: Kevin Ollivier
|
|
// Created: 1998-01-01
|
|
// Copyright: (c) Stefan Csomor
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_OSX_TEXTENTRY_H_
|
|
#define _WX_OSX_TEXTENTRY_H_
|
|
|
|
#if wxUSE_SYSTEM_OPTIONS
|
|
// set this to 'true' if you want to use the 'classic' MLTE-based implementation
|
|
// instead of the HIView-based implementation in 10.3 and upwards, the former
|
|
// has more features (backgrounds etc.), but may show redraw artefacts and other
|
|
// problems depending on your usage; hence, the default is 'false'.
|
|
#define wxMAC_TEXTCONTROL_USE_MLTE wxT("mac.textcontrol-use-mlte")
|
|
// set this to 'true' if you want editable text controls to have spell checking turned
|
|
// on by default, you can change this setting individually on a control using MacCheckSpelling
|
|
#define wxMAC_TEXTCONTROL_USE_SPELL_CHECKER wxT("mac.textcontrol-use-spell-checker")
|
|
#endif
|
|
|
|
#include "wx/control.h"
|
|
|
|
// forward decl for wxListWidgetImpl implementation type.
|
|
class WXDLLIMPEXP_FWD_CORE wxTextWidgetImpl;
|
|
|
|
class WXDLLIMPEXP_CORE wxTextEntry: public wxTextEntryBase
|
|
{
|
|
|
|
public:
|
|
wxTextEntry();
|
|
virtual ~wxTextEntry();
|
|
|
|
virtual bool IsEditable() const wxOVERRIDE;
|
|
|
|
// If the return values from and to are the same, there is no selection.
|
|
virtual void GetSelection(long* from, long* to) const wxOVERRIDE;
|
|
|
|
// operations
|
|
// ----------
|
|
|
|
// editing
|
|
virtual void Clear() wxOVERRIDE;
|
|
virtual void Remove(long from, long to) wxOVERRIDE;
|
|
|
|
// set the max number of characters which may be entered
|
|
// in a single line text control
|
|
virtual void SetMaxLength(unsigned long len) wxOVERRIDE;
|
|
|
|
virtual void ForceUpper() wxOVERRIDE;
|
|
|
|
// writing text inserts it at the current position;
|
|
// appending always inserts it at the end
|
|
virtual void WriteText(const wxString& text) wxOVERRIDE;
|
|
|
|
// Clipboard operations
|
|
virtual void Copy() wxOVERRIDE;
|
|
virtual void Cut() wxOVERRIDE;
|
|
virtual void Paste() wxOVERRIDE;
|
|
|
|
virtual bool CanCopy() const wxOVERRIDE;
|
|
virtual bool CanCut() const wxOVERRIDE;
|
|
virtual bool CanPaste() const wxOVERRIDE;
|
|
|
|
// Undo/redo
|
|
virtual void Undo() wxOVERRIDE;
|
|
virtual void Redo() wxOVERRIDE;
|
|
|
|
virtual bool CanUndo() const wxOVERRIDE;
|
|
virtual bool CanRedo() const wxOVERRIDE;
|
|
|
|
// Insertion point
|
|
virtual void SetInsertionPoint(long pos) wxOVERRIDE;
|
|
virtual void SetInsertionPointEnd() wxOVERRIDE;
|
|
virtual long GetInsertionPoint() const wxOVERRIDE;
|
|
virtual wxTextPos GetLastPosition() const wxOVERRIDE;
|
|
|
|
virtual void SetSelection(long from, long to) wxOVERRIDE;
|
|
virtual void SetEditable(bool editable) wxOVERRIDE;
|
|
|
|
virtual bool SendMaxLenEvent();
|
|
|
|
// set the grayed out hint text
|
|
virtual bool SetHint(const wxString& hint) wxOVERRIDE;
|
|
virtual wxString GetHint() const wxOVERRIDE;
|
|
|
|
// Implementation
|
|
// --------------
|
|
|
|
virtual wxTextWidgetImpl * GetTextPeer() const;
|
|
wxTextCompleter *OSXGetCompleter() const { return m_completer; }
|
|
|
|
protected:
|
|
|
|
virtual wxString DoGetValue() const wxOVERRIDE;
|
|
|
|
virtual bool DoAutoCompleteStrings(const wxArrayString& choices) wxOVERRIDE;
|
|
virtual bool DoAutoCompleteCustom(wxTextCompleter *completer) wxOVERRIDE;
|
|
|
|
// The object providing auto-completions or NULL if none.
|
|
wxTextCompleter *m_completer;
|
|
|
|
bool m_editable;
|
|
|
|
// need to make this public because of the current implementation via callbacks
|
|
unsigned long m_maxLength;
|
|
|
|
private:
|
|
wxString m_hintString;
|
|
};
|
|
|
|
#endif // _WX_OSX_TEXTENTRY_H_
|