1998-05-20 14:12:05 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: textctrl.h
|
|
|
|
// 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
|
|
|
// can we use RICHEDIT class for wxTextCtrl implementation?
|
1999-06-09 00:32:07 +00:00
|
|
|
#if defined(__WIN95__) && !defined(__TWIN32__) && !defined(__WXWINE__)
|
1999-01-31 23:49:57 +00:00
|
|
|
#define wxUSE_RICHEDIT 1
|
|
|
|
#else
|
|
|
|
#define wxUSE_RICHEDIT 0
|
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();
|
|
|
|
|
|
|
|
// 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);
|
|
|
|
|
|
|
|
// 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);
|
1999-01-31 23:49:57 +00:00
|
|
|
|
|
|
|
#if wxUSE_RICHEDIT
|
1999-02-22 11:01:13 +00:00
|
|
|
bool IsRich() const { return m_isRich; }
|
|
|
|
void SetRichEdit(bool isRich) { m_isRich = isRich; }
|
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 WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor,
|
1999-07-14 22:55:57 +00:00
|
|
|
WXUINT message, WXWPARAM wParam,
|
|
|
|
WXLPARAM lParam);
|
1999-02-02 22:23:44 +00:00
|
|
|
|
1999-02-22 11:01:13 +00:00
|
|
|
virtual void AdoptAttributesFromHWND();
|
|
|
|
virtual void SetupColours();
|
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-01-31 23:49:57 +00:00
|
|
|
#if wxUSE_RICHEDIT
|
1999-02-22 11:01:13 +00:00
|
|
|
bool m_isRich; // Are we using rich text edit to implement this?
|
1999-01-31 23:49:57 +00:00
|
|
|
#endif
|
|
|
|
|
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)
|
|
|
|
void AdjustSpaceLimit();
|
|
|
|
|
1999-07-02 22:02:05 +00:00
|
|
|
virtual wxSize DoGetBestSize();
|
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_
|