1998-05-20 14:12:05 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2001-08-15 12:45:53 +00:00
|
|
|
// Name: wx/msw/textctrl.h
|
1998-05-20 14:12:05 +00:00
|
|
|
// Purpose: wxTextCtrl 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
|
1999-02-02 22:23:44 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:12:05 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-07 23:52:45 +00:00
|
|
|
#ifndef _WX_TEXTCTRL_H_
|
|
|
|
#define _WX_TEXTCTRL_H_
|
1998-05-20 14:12:05 +00:00
|
|
|
|
|
|
|
#ifdef __GNUG__
|
1999-01-31 23:49:57 +00:00
|
|
|
#pragma interface "textctrl.h"
|
1998-05-20 14:12:05 +00:00
|
|
|
#endif
|
|
|
|
|
1999-07-14 22:55:57 +00:00
|
|
|
class WXDLLEXPORT wxTextCtrl : public wxTextCtrlBase
|
1998-05-20 14:12:05 +00:00
|
|
|
{
|
1998-07-19 20:45:51 +00:00
|
|
|
public:
|
1999-02-22 11:01:13 +00:00
|
|
|
// creation
|
|
|
|
// --------
|
1999-07-14 22:55:57 +00:00
|
|
|
|
1999-02-22 11:01:13 +00:00
|
|
|
wxTextCtrl();
|
|
|
|
wxTextCtrl(wxWindow *parent, wxWindowID id,
|
1999-07-14 22:55:57 +00:00
|
|
|
const wxString& value = wxEmptyString,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxTextCtrlNameStr)
|
|
|
|
{
|
|
|
|
Create(parent, id, value, pos, size, style, validator, name);
|
|
|
|
}
|
1999-02-22 11:01:13 +00:00
|
|
|
|
|
|
|
bool Create(wxWindow *parent, wxWindowID id,
|
1999-07-14 22:55:57 +00: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 11:01:13 +00:00
|
|
|
|
1999-07-14 22:55:57 +00:00
|
|
|
// implement base class pure virtuals
|
|
|
|
// ----------------------------------
|
1999-07-02 22:02:05 +00:00
|
|
|
|
|
|
|
virtual wxString GetValue() const;
|
1999-02-22 11:01:13 +00:00
|
|
|
virtual void SetValue(const wxString& value);
|
|
|
|
|
|
|
|
virtual int GetLineLength(long lineNo) const;
|
|
|
|
virtual wxString GetLineText(long lineNo) const;
|
|
|
|
virtual int GetNumberOfLines() const;
|
|
|
|
|
1999-07-14 22:55:57 +00:00
|
|
|
virtual bool IsModified() const;
|
|
|
|
virtual bool IsEditable() const;
|
|
|
|
|
|
|
|
// If the return values from and to are the same, there is no selection.
|
|
|
|
virtual void GetSelection(long* from, long* to) const;
|
|
|
|
|
1999-02-22 11:01:13 +00:00
|
|
|
// operations
|
|
|
|
// ----------
|
|
|
|
|
1999-07-14 22:55:57 +00: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
|
|
|
|
virtual void DiscardEdits();
|
|
|
|
|
2001-08-15 12:45:53 +00:00
|
|
|
virtual void SetMaxLength(unsigned long len);
|
|
|
|
|
1999-07-14 22:55:57 +00: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);
|
|
|
|
|
2001-05-27 03:28:28 +00: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);
|
|
|
|
#endif // wxUSE_RICHEDIT
|
|
|
|
|
1999-07-14 22:55:57 +00: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 13:42:27 +00:00
|
|
|
virtual bool PositionToXY(long pos, long *x, long *y) const;
|
1999-07-14 22:55:57 +00:00
|
|
|
|
|
|
|
virtual void ShowPosition(long pos);
|
|
|
|
|
1999-02-22 11:01:13 +00:00
|
|
|
// Clipboard operations
|
|
|
|
virtual void Copy();
|
|
|
|
virtual void Cut();
|
|
|
|
virtual void Paste();
|
|
|
|
|
1999-04-06 16:32:33 +00: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 22:55:57 +00:00
|
|
|
// Insertion point
|
1999-02-22 11:01:13 +00:00
|
|
|
virtual void SetInsertionPoint(long pos);
|
|
|
|
virtual void SetInsertionPointEnd();
|
1999-07-14 22:55:57 +00:00
|
|
|
virtual long GetInsertionPoint() const;
|
|
|
|
virtual long GetLastPosition() const;
|
|
|
|
|
1999-02-22 11:01:13 +00:00
|
|
|
virtual void SetSelection(long from, long to);
|
|
|
|
virtual void SetEditable(bool editable);
|
|
|
|
|
1999-07-02 22:02:05 +00:00
|
|
|
// Implementation from now on
|
|
|
|
// --------------------------
|
1999-04-07 21:33:22 +00:00
|
|
|
|
1999-02-22 11:01:13 +00:00
|
|
|
virtual void Command(wxCommandEvent& event);
|
|
|
|
virtual bool MSWCommand(WXUINT param, WXWORD id);
|
2000-07-15 19:51:35 +00:00
|
|
|
virtual WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor,
|
|
|
|
WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
|
|
|
|
|
|
|
|
// In WIN16, need to override normal erasing because
|
|
|
|
// Ctl3D doesn't use the wxWindows background colour.
|
|
|
|
#ifdef __WIN16__
|
|
|
|
void OnEraseBackground(wxEraseEvent& event);
|
|
|
|
#endif
|
1999-01-31 23:49:57 +00:00
|
|
|
|
|
|
|
#if wxUSE_RICHEDIT
|
2001-07-29 22:40:21 +00:00
|
|
|
virtual bool MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result);
|
|
|
|
|
1999-02-22 11:01:13 +00:00
|
|
|
bool IsRich() const { return m_isRich; }
|
|
|
|
void SetRichEdit(bool isRich) { m_isRich = isRich; }
|
2000-07-15 19:51:35 +00: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 22:55:57 +00:00
|
|
|
#endif // wxUSE_RICHEDIT
|
1999-01-31 23:49:57 +00:00
|
|
|
|
1999-02-22 11:01:13 +00:00
|
|
|
virtual void AdoptAttributesFromHWND();
|
1999-02-02 22:23:44 +00:00
|
|
|
|
1999-06-28 21:39:49 +00:00
|
|
|
virtual bool AcceptsFocus() const;
|
|
|
|
|
1999-07-02 22:02:05 +00: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);
|
|
|
|
|
|
|
|
void OnUpdateCut(wxUpdateUIEvent& event);
|
|
|
|
void OnUpdateCopy(wxUpdateUIEvent& event);
|
|
|
|
void OnUpdatePaste(wxUpdateUIEvent& event);
|
|
|
|
void OnUpdateUndo(wxUpdateUIEvent& event);
|
|
|
|
void OnUpdateRedo(wxUpdateUIEvent& event);
|
|
|
|
|
1998-05-20 14:12:05 +00:00
|
|
|
protected:
|
1999-05-23 23:48:12 +00:00
|
|
|
// call this to increase the size limit (will do nothing if the current
|
|
|
|
// limit is big enough)
|
2001-08-15 12:45:53 +00: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 23:48:12 +00:00
|
|
|
|
2001-08-05 15:07:28 +00:00
|
|
|
// override some base class virtuals
|
|
|
|
virtual bool MSWShouldPreProcessMessage(WXMSG* pMsg);
|
1999-11-19 21:01:20 +00:00
|
|
|
virtual wxSize DoGetBestSize() const;
|
1999-02-22 11:01:13 +00:00
|
|
|
|
2001-08-15 12:45:53 +00:00
|
|
|
#if wxUSE_RICHEDIT
|
|
|
|
bool m_isRich; // Are we using rich text edit to implement this?
|
|
|
|
#endif
|
|
|
|
|
1999-02-22 11:01:13 +00:00
|
|
|
private:
|
|
|
|
DECLARE_EVENT_TABLE()
|
1999-07-14 22:55:57 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxTextCtrl)
|
1998-05-20 14:12:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
1998-08-07 23:52:45 +00:00
|
|
|
// _WX_TEXTCTRL_H_
|