1998-05-20 10:12:05 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2001-08-15 08:45:53 -04:00
|
|
|
// Name: wx/msw/textctrl.h
|
1998-05-20 10:12:05 -04:00
|
|
|
// Purpose: wxTextCtrl class
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 01/02/97
|
|
|
|
// RCS-ID: $Id$
|
1998-08-07 19:52:45 -04:00
|
|
|
// Copyright: (c) Julian Smart
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 10:12:05 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-07 19:52:45 -04:00
|
|
|
#ifndef _WX_TEXTCTRL_H_
|
|
|
|
#define _WX_TEXTCTRL_H_
|
1998-05-20 10:12:05 -04:00
|
|
|
|
2003-08-09 08:38:21 -04:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
1999-01-31 18:49:57 -05:00
|
|
|
#pragma interface "textctrl.h"
|
1998-05-20 10:12:05 -04:00
|
|
|
#endif
|
|
|
|
|
1999-07-14 18:55:57 -04:00
|
|
|
class WXDLLEXPORT wxTextCtrl : public wxTextCtrlBase
|
1998-05-20 10:12:05 -04:00
|
|
|
{
|
1998-07-19 16:45:51 -04:00
|
|
|
public:
|
1999-02-22 06:01:13 -05:00
|
|
|
// creation
|
|
|
|
// --------
|
1999-07-14 18:55:57 -04:00
|
|
|
|
2001-12-08 19:47:29 -05:00
|
|
|
wxTextCtrl() { Init(); }
|
1999-02-22 06:01:13 -05:00
|
|
|
wxTextCtrl(wxWindow *parent, wxWindowID id,
|
1999-07-14 18:55:57 -04:00
|
|
|
const wxString& value = wxEmptyString,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxTextCtrlNameStr)
|
|
|
|
{
|
2001-12-08 19:47:29 -05:00
|
|
|
Init();
|
|
|
|
|
1999-07-14 18:55:57 -04:00
|
|
|
Create(parent, id, value, pos, size, style, validator, name);
|
|
|
|
}
|
2002-12-04 09:11:26 -05:00
|
|
|
~wxTextCtrl();
|
1999-02-22 06:01:13 -05:00
|
|
|
|
|
|
|
bool Create(wxWindow *parent, wxWindowID id,
|
1999-07-14 18:55:57 -04:00
|
|
|
const wxString& value = wxEmptyString,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxTextCtrlNameStr);
|
1999-02-22 06:01:13 -05:00
|
|
|
|
1999-07-14 18:55:57 -04:00
|
|
|
// implement base class pure virtuals
|
|
|
|
// ----------------------------------
|
1999-07-02 18:02:05 -04:00
|
|
|
|
|
|
|
virtual wxString GetValue() const;
|
1999-02-22 06:01:13 -05:00
|
|
|
virtual void SetValue(const wxString& value);
|
|
|
|
|
2002-01-08 20:32:02 -05:00
|
|
|
virtual wxString GetRange(long from, long to) const;
|
|
|
|
|
1999-02-22 06:01:13 -05:00
|
|
|
virtual int GetLineLength(long lineNo) const;
|
|
|
|
virtual wxString GetLineText(long lineNo) const;
|
|
|
|
virtual int GetNumberOfLines() const;
|
|
|
|
|
1999-07-14 18:55:57 -04:00
|
|
|
virtual bool IsModified() const;
|
|
|
|
virtual bool IsEditable() const;
|
|
|
|
|
|
|
|
virtual void GetSelection(long* from, long* to) const;
|
|
|
|
|
1999-02-22 06:01:13 -05:00
|
|
|
// operations
|
|
|
|
// ----------
|
|
|
|
|
1999-07-14 18:55:57 -04:00
|
|
|
// editing
|
|
|
|
virtual void Clear();
|
|
|
|
virtual void Replace(long from, long to, const wxString& value);
|
|
|
|
virtual void Remove(long from, long to);
|
|
|
|
|
|
|
|
// load the controls contents from the file
|
|
|
|
virtual bool LoadFile(const wxString& file);
|
|
|
|
|
|
|
|
// clears the dirty flag
|
2003-09-22 20:09:18 -04:00
|
|
|
virtual void MarkDirty();
|
1999-07-14 18:55:57 -04:00
|
|
|
virtual void DiscardEdits();
|
|
|
|
|
2001-08-15 08:45:53 -04:00
|
|
|
virtual void SetMaxLength(unsigned long len);
|
|
|
|
|
1999-07-14 18:55:57 -04:00
|
|
|
// writing text inserts it at the current position, appending always
|
|
|
|
// inserts it at the end
|
|
|
|
virtual void WriteText(const wxString& text);
|
|
|
|
virtual void AppendText(const wxString& text);
|
|
|
|
|
2002-04-07 18:29:04 -04:00
|
|
|
#ifdef __WIN32__
|
|
|
|
virtual bool EmulateKeyPress(const wxKeyEvent& event);
|
|
|
|
#endif // __WIN32__
|
|
|
|
|
2001-05-26 23:28:28 -04:00
|
|
|
#if wxUSE_RICHEDIT
|
|
|
|
// apply text attribute to the range of text (only works with richedit
|
|
|
|
// controls)
|
|
|
|
virtual bool SetStyle(long start, long end, const wxTextAttr& style);
|
2002-07-21 14:49:10 -04:00
|
|
|
virtual bool SetDefaultStyle(const wxTextAttr& style);
|
2003-06-20 12:25:31 -04:00
|
|
|
virtual bool GetStyle(long position, wxTextAttr& style);
|
2001-05-26 23:28:28 -04:00
|
|
|
#endif // wxUSE_RICHEDIT
|
|
|
|
|
1999-07-14 18:55:57 -04:00
|
|
|
// translate between the position (which is just an index in the text ctrl
|
|
|
|
// considering all its contents as a single strings) and (x, y) coordinates
|
|
|
|
// which represent column and line.
|
|
|
|
virtual long XYToPosition(long x, long y) const;
|
1999-07-15 09:42:27 -04:00
|
|
|
virtual bool PositionToXY(long pos, long *x, long *y) const;
|
1999-07-14 18:55:57 -04:00
|
|
|
|
|
|
|
virtual void ShowPosition(long pos);
|
2004-07-23 14:43:32 -04:00
|
|
|
virtual wxTextCtrlHitTestResult HitTest(const wxPoint& pt, long *pos) const;
|
2004-07-23 16:52:22 -04:00
|
|
|
virtual wxTextCtrlHitTestResult HitTest(const wxPoint& pt,
|
|
|
|
wxTextCoord *col,
|
|
|
|
wxTextCoord *row) const
|
|
|
|
{
|
|
|
|
return wxTextCtrlBase::HitTest(pt, col, row);
|
|
|
|
}
|
1999-07-14 18:55:57 -04:00
|
|
|
|
1999-02-22 06:01:13 -05:00
|
|
|
// Clipboard operations
|
|
|
|
virtual void Copy();
|
|
|
|
virtual void Cut();
|
|
|
|
virtual void Paste();
|
|
|
|
|
1999-04-06 12:32:33 -04:00
|
|
|
virtual bool CanCopy() const;
|
|
|
|
virtual bool CanCut() const;
|
|
|
|
virtual bool CanPaste() const;
|
|
|
|
|
|
|
|
// Undo/redo
|
|
|
|
virtual void Undo();
|
|
|
|
virtual void Redo();
|
|
|
|
|
|
|
|
virtual bool CanUndo() const;
|
|
|
|
virtual bool CanRedo() const;
|
|
|
|
|
1999-07-14 18:55:57 -04:00
|
|
|
// Insertion point
|
1999-02-22 06:01:13 -05:00
|
|
|
virtual void SetInsertionPoint(long pos);
|
|
|
|
virtual void SetInsertionPointEnd();
|
1999-07-14 18:55:57 -04:00
|
|
|
virtual long GetInsertionPoint() const;
|
|
|
|
virtual long GetLastPosition() const;
|
|
|
|
|
1999-02-22 06:01:13 -05:00
|
|
|
virtual void SetSelection(long from, long to);
|
|
|
|
virtual void SetEditable(bool editable);
|
|
|
|
|
2003-07-19 15:01:27 -04:00
|
|
|
// Caret handling (Windows only)
|
|
|
|
|
|
|
|
bool ShowNativeCaret(bool show = true);
|
|
|
|
bool HideNativeCaret() { return ShowNativeCaret(false); }
|
|
|
|
|
1999-07-02 18:02:05 -04:00
|
|
|
// Implementation from now on
|
|
|
|
// --------------------------
|
1999-04-07 17:33:22 -04:00
|
|
|
|
2002-02-17 17:43:43 -05:00
|
|
|
virtual void SetWindowStyleFlag(long style);
|
|
|
|
|
1999-02-22 06:01:13 -05:00
|
|
|
virtual void Command(wxCommandEvent& event);
|
|
|
|
virtual bool MSWCommand(WXUINT param, WXWORD id);
|
2000-07-15 15:51:35 -04:00
|
|
|
virtual WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor,
|
|
|
|
WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
|
|
|
|
|
1999-01-31 18:49:57 -05:00
|
|
|
#if wxUSE_RICHEDIT
|
2001-07-29 18:40:21 -04:00
|
|
|
virtual bool MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result);
|
|
|
|
|
2001-12-08 19:47:29 -05:00
|
|
|
int GetRichVersion() const { return m_verRichEdit; }
|
|
|
|
bool IsRich() const { return m_verRichEdit != 0; }
|
2000-07-15 15:51:35 -04:00
|
|
|
|
|
|
|
// rich edit controls are not compatible with normal ones and wem ust set
|
|
|
|
// the colours for them otherwise
|
|
|
|
virtual bool SetBackgroundColour(const wxColour& colour);
|
|
|
|
virtual bool SetForegroundColour(const wxColour& colour);
|
1999-07-14 18:55:57 -04:00
|
|
|
#endif // wxUSE_RICHEDIT
|
1999-01-31 18:49:57 -05:00
|
|
|
|
1999-02-22 06:01:13 -05:00
|
|
|
virtual void AdoptAttributesFromHWND();
|
1999-02-02 17:23:44 -05:00
|
|
|
|
1999-06-28 17:39:49 -04:00
|
|
|
virtual bool AcceptsFocus() const;
|
|
|
|
|
1999-07-02 18:02:05 -04:00
|
|
|
// callbacks
|
|
|
|
void OnDropFiles(wxDropFilesEvent& event);
|
|
|
|
void OnChar(wxKeyEvent& event); // Process 'enter' if required
|
|
|
|
|
|
|
|
void OnCut(wxCommandEvent& event);
|
|
|
|
void OnCopy(wxCommandEvent& event);
|
|
|
|
void OnPaste(wxCommandEvent& event);
|
|
|
|
void OnUndo(wxCommandEvent& event);
|
|
|
|
void OnRedo(wxCommandEvent& event);
|
2002-12-04 09:11:26 -05:00
|
|
|
void OnDelete(wxCommandEvent& event);
|
|
|
|
void OnSelectAll(wxCommandEvent& event);
|
1999-07-02 18:02:05 -04:00
|
|
|
|
|
|
|
void OnUpdateCut(wxUpdateUIEvent& event);
|
|
|
|
void OnUpdateCopy(wxUpdateUIEvent& event);
|
|
|
|
void OnUpdatePaste(wxUpdateUIEvent& event);
|
|
|
|
void OnUpdateUndo(wxUpdateUIEvent& event);
|
|
|
|
void OnUpdateRedo(wxUpdateUIEvent& event);
|
2002-12-04 09:11:26 -05:00
|
|
|
void OnUpdateDelete(wxUpdateUIEvent& event);
|
|
|
|
void OnUpdateSelectAll(wxUpdateUIEvent& event);
|
|
|
|
|
|
|
|
// Show a context menu for Rich Edit controls (the standard
|
|
|
|
// EDIT control has one already)
|
|
|
|
void OnRightClick(wxMouseEvent& event);
|
1999-07-02 18:02:05 -04:00
|
|
|
|
2003-07-19 15:01:27 -04:00
|
|
|
// be sure the caret remains invisible if the user
|
|
|
|
// called HideNativeCaret() before
|
|
|
|
void OnSetFocus(wxFocusEvent& event);
|
|
|
|
|
1998-05-20 10:12:05 -04:00
|
|
|
protected:
|
2001-12-08 19:47:29 -05:00
|
|
|
// common part of all ctors
|
|
|
|
void Init();
|
|
|
|
|
2002-02-05 19:58:11 -05:00
|
|
|
// intercept WM_GETDLGCODE
|
2004-02-25 05:45:02 -05:00
|
|
|
virtual WXLRESULT MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
|
2002-02-05 19:58:11 -05:00
|
|
|
|
1999-05-23 19:48:12 -04:00
|
|
|
// call this to increase the size limit (will do nothing if the current
|
|
|
|
// limit is big enough)
|
2001-08-15 08:45:53 -04:00
|
|
|
//
|
|
|
|
// returns true if we increased the limit to allow entering more text,
|
|
|
|
// false if we hit the limit set by SetMaxLength() and so didn't change it
|
|
|
|
bool AdjustSpaceLimit();
|
1999-05-23 19:48:12 -04:00
|
|
|
|
2003-09-19 18:21:48 -04:00
|
|
|
#if wxUSE_RICHEDIT && (!wxUSE_UNICODE || wxUSE_UNICODE_MSLU)
|
2002-01-12 17:45:23 -05:00
|
|
|
// replace the selection or the entire control contents with the given text
|
|
|
|
// in the specified encoding
|
2003-09-19 18:21:48 -04:00
|
|
|
bool StreamIn(const wxString& value, wxFontEncoding encoding, bool selOnly);
|
|
|
|
|
|
|
|
// get the contents of the control out as text in the given encoding
|
|
|
|
wxString StreamOut(wxFontEncoding encoding, bool selOnly = false) const;
|
2001-12-08 19:47:29 -05:00
|
|
|
#endif // wxUSE_RICHEDIT
|
|
|
|
|
2002-01-12 17:45:23 -05:00
|
|
|
// replace the contents of the selection or of the entire control with the
|
|
|
|
// given text
|
2004-09-07 02:01:01 -04:00
|
|
|
void DoWriteText(const wxString& text, bool selectionOnly = true);
|
2002-01-12 17:45:23 -05:00
|
|
|
|
2001-12-08 19:47:29 -05:00
|
|
|
// set the selection possibly without scrolling the caret into view
|
2004-09-07 02:01:01 -04:00
|
|
|
void DoSetSelection(long from, long to, bool scrollCaret = true);
|
2001-12-08 19:47:29 -05:00
|
|
|
|
2002-12-04 09:11:26 -05:00
|
|
|
// return true if there is a non empty selection in the control
|
|
|
|
bool HasSelection() const;
|
|
|
|
|
2002-01-08 20:32:02 -05:00
|
|
|
// get the length of the line containing the character at the given
|
|
|
|
// position
|
|
|
|
long GetLengthOfLineContainingPos(long pos) const;
|
|
|
|
|
2004-09-07 02:01:01 -04:00
|
|
|
// send TEXT_UPDATED event, return true if it was handled, false otherwise
|
2002-08-22 14:02:16 -04:00
|
|
|
bool SendUpdateEvent();
|
|
|
|
|
2001-08-05 11:07:28 -04:00
|
|
|
// override some base class virtuals
|
|
|
|
virtual bool MSWShouldPreProcessMessage(WXMSG* pMsg);
|
1999-11-19 16:01:20 -05:00
|
|
|
virtual wxSize DoGetBestSize() const;
|
1999-02-22 06:01:13 -05:00
|
|
|
|
2002-02-17 17:43:43 -05:00
|
|
|
virtual WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const;
|
|
|
|
|
2001-08-15 08:45:53 -04:00
|
|
|
#if wxUSE_RICHEDIT
|
2001-12-08 19:47:29 -05:00
|
|
|
// we're using RICHEDIT (and not simple EDIT) control if this field is not
|
|
|
|
// 0, it also gives the version of the RICHEDIT control being used (1, 2 or
|
|
|
|
// 3 so far)
|
|
|
|
int m_verRichEdit;
|
2002-12-04 09:11:26 -05:00
|
|
|
#endif // wxUSE_RICHEDIT
|
2002-08-22 14:02:16 -04:00
|
|
|
|
2004-09-07 02:01:01 -04:00
|
|
|
// if true, SendUpdateEvent() will eat the next event (see comments in the
|
2002-08-22 14:02:16 -04:00
|
|
|
// code as to why this is needed)
|
|
|
|
bool m_suppressNextUpdate;
|
2001-08-15 08:45:53 -04:00
|
|
|
|
1999-02-22 06:01:13 -05:00
|
|
|
private:
|
|
|
|
DECLARE_EVENT_TABLE()
|
2003-07-21 20:24:07 -04:00
|
|
|
DECLARE_DYNAMIC_CLASS_NO_COPY(wxTextCtrl)
|
2002-12-04 09:11:26 -05:00
|
|
|
|
|
|
|
wxMenu* m_privateContextMenu;
|
2003-07-19 15:01:27 -04:00
|
|
|
|
|
|
|
bool m_isNativeCaretShown;
|
1998-05-20 10:12:05 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
1998-08-07 19:52:45 -04:00
|
|
|
// _WX_TEXTCTRL_H_
|