1998-05-20 10:12:05 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: textctrl.h
|
|
|
|
// 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
|
1999-02-02 17:23:44 -05: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
|
|
|
|
|
|
|
#ifdef __GNUG__
|
1999-01-31 18:49:57 -05:00
|
|
|
#pragma interface "textctrl.h"
|
1998-05-20 10:12:05 -04:00
|
|
|
#endif
|
|
|
|
|
1999-01-31 18:49:57 -05:00
|
|
|
#include "wx/setup.h"
|
1998-05-20 10:12:05 -04:00
|
|
|
#include "wx/control.h"
|
|
|
|
|
1998-09-25 09:28:52 -04:00
|
|
|
#if wxUSE_IOSTREAMH
|
1999-01-31 18:49:57 -05:00
|
|
|
#include <iostream.h>
|
1998-05-20 10:12:05 -04:00
|
|
|
#else
|
1999-01-31 18:49:57 -05:00
|
|
|
#include <iostream>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(__WIN95__) && !defined(__TWIN32__)
|
|
|
|
#define wxUSE_RICHEDIT 1
|
|
|
|
#else
|
|
|
|
#define wxUSE_RICHEDIT 0
|
1998-05-20 10:12:05 -04:00
|
|
|
#endif
|
|
|
|
|
1999-04-19 13:47:19 -04:00
|
|
|
WXDLLEXPORT_DATA(extern const wxChar*) wxTextCtrlNameStr;
|
|
|
|
WXDLLEXPORT_DATA(extern const wxChar*) wxEmptyString;
|
1998-05-20 10:12:05 -04:00
|
|
|
|
|
|
|
// Single-line text item
|
1999-02-22 06:01:13 -05:00
|
|
|
class WXDLLEXPORT wxTextCtrl : public wxControl
|
1998-05-20 10:12:05 -04:00
|
|
|
|
|
|
|
// 16-bit Borland 4.0 doesn't seem to allow multiple inheritance with wxWindow and streambuf:
|
|
|
|
// it complains about deriving a huge class from the huge class streambuf. !!
|
|
|
|
// Also, can't use streambuf if making or using a DLL :-(
|
|
|
|
|
1999-01-08 09:30:22 -05:00
|
|
|
#if (defined(__BORLANDC__)) || defined(__MWERKS__) || defined(_WINDLL) || defined(WXUSINGDLL) || defined(WXMAKINGDLL)
|
1998-05-20 10:12:05 -04:00
|
|
|
#define NO_TEXT_WINDOW_STREAM
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef NO_TEXT_WINDOW_STREAM
|
|
|
|
, public streambuf
|
|
|
|
#endif
|
|
|
|
|
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxTextCtrl)
|
1999-02-02 17:23:44 -05:00
|
|
|
|
1998-07-19 16:45:51 -04:00
|
|
|
public:
|
1999-02-22 06:01:13 -05:00
|
|
|
// creation
|
|
|
|
// --------
|
|
|
|
wxTextCtrl();
|
|
|
|
wxTextCtrl(wxWindow *parent, wxWindowID id,
|
|
|
|
const wxString& value = wxEmptyString,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize, long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxTextCtrlNameStr)
|
1998-05-20 10:12:05 -04:00
|
|
|
#ifndef NO_TEXT_WINDOW_STREAM
|
1999-02-22 06:01:13 -05:00
|
|
|
:streambuf()
|
1998-05-20 10:12:05 -04:00
|
|
|
#endif
|
1999-02-22 06:01:13 -05:00
|
|
|
{
|
|
|
|
Create(parent, id, value, pos, size, style, validator, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Create(wxWindow *parent, wxWindowID id,
|
|
|
|
const wxString& value = wxEmptyString,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize, long style = wxTE_PROCESS_TAB,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxTextCtrlNameStr);
|
|
|
|
|
|
|
|
// accessors
|
|
|
|
// ---------
|
|
|
|
virtual wxString GetValue() const ;
|
|
|
|
virtual void SetValue(const wxString& value);
|
|
|
|
|
|
|
|
virtual int GetLineLength(long lineNo) const;
|
|
|
|
virtual wxString GetLineText(long lineNo) const;
|
|
|
|
virtual int GetNumberOfLines() const;
|
|
|
|
|
|
|
|
// operations
|
|
|
|
// ----------
|
|
|
|
|
|
|
|
// 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-02-22 06:01:13 -05:00
|
|
|
virtual void SetInsertionPoint(long pos);
|
|
|
|
virtual void SetInsertionPointEnd();
|
|
|
|
virtual long GetInsertionPoint() const ;
|
|
|
|
virtual long GetLastPosition() const ;
|
|
|
|
virtual void Replace(long from, long to, const wxString& value);
|
|
|
|
virtual void Remove(long from, long to);
|
|
|
|
virtual void SetSelection(long from, long to);
|
|
|
|
virtual void SetEditable(bool editable);
|
|
|
|
|
1999-04-06 12:32:33 -04:00
|
|
|
// If the return values from and to are the same, there is no
|
|
|
|
// selection.
|
|
|
|
virtual void GetSelection(long* from, long* to) const;
|
|
|
|
virtual bool IsEditable() const ;
|
|
|
|
|
1999-02-22 06:01:13 -05:00
|
|
|
// streambuf implementation
|
1998-05-20 10:12:05 -04:00
|
|
|
#ifndef NO_TEXT_WINDOW_STREAM
|
1999-02-22 06:01:13 -05:00
|
|
|
int overflow(int i);
|
|
|
|
int sync();
|
|
|
|
int underflow();
|
1998-05-20 10:12:05 -04:00
|
|
|
#endif
|
1999-02-02 17:23:44 -05:00
|
|
|
|
1999-02-22 06:01:13 -05:00
|
|
|
wxTextCtrl& operator<<(const wxString& s);
|
|
|
|
wxTextCtrl& operator<<(int i);
|
|
|
|
wxTextCtrl& operator<<(long i);
|
|
|
|
wxTextCtrl& operator<<(float f);
|
|
|
|
wxTextCtrl& operator<<(double d);
|
|
|
|
wxTextCtrl& operator<<(const char c);
|
1999-02-02 17:23:44 -05:00
|
|
|
|
1999-02-22 06:01:13 -05:00
|
|
|
virtual bool LoadFile(const wxString& file);
|
|
|
|
virtual bool SaveFile(const wxString& file);
|
|
|
|
virtual void WriteText(const wxString& text);
|
|
|
|
virtual void AppendText(const wxString& text);
|
|
|
|
virtual void DiscardEdits();
|
|
|
|
virtual bool IsModified() const;
|
1999-02-02 17:23:44 -05:00
|
|
|
|
1998-05-20 10:12:05 -04:00
|
|
|
#if WXWIN_COMPATIBILITY
|
1999-02-22 06:01:13 -05:00
|
|
|
inline bool Modified() const { return IsModified(); }
|
1998-05-20 10:12:05 -04:00
|
|
|
#endif
|
1999-02-02 17:23:44 -05:00
|
|
|
|
1999-02-22 06:01:13 -05:00
|
|
|
virtual long XYToPosition(long x, long y) const ;
|
|
|
|
virtual void PositionToXY(long pos, long *x, long *y) const ;
|
|
|
|
virtual void ShowPosition(long pos);
|
|
|
|
virtual void Clear();
|
1999-02-02 17:23:44 -05:00
|
|
|
|
1999-02-22 06:01:13 -05:00
|
|
|
// callbacks
|
|
|
|
// ---------
|
|
|
|
void OnDropFiles(wxDropFilesEvent& event);
|
|
|
|
void OnChar(wxKeyEvent& event); // Process 'enter' if required
|
1999-02-02 17:23:44 -05:00
|
|
|
|
1999-04-07 17:33:22 -04:00
|
|
|
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);
|
|
|
|
|
1999-02-22 06:01:13 -05:00
|
|
|
// Implementation
|
|
|
|
// --------------
|
|
|
|
virtual void Command(wxCommandEvent& event);
|
|
|
|
virtual bool MSWCommand(WXUINT param, WXWORD id);
|
1999-01-31 18:49:57 -05:00
|
|
|
|
|
|
|
#if wxUSE_RICHEDIT
|
1999-02-22 06:01:13 -05:00
|
|
|
bool IsRich() const { return m_isRich; }
|
|
|
|
void SetRichEdit(bool isRich) { m_isRich = isRich; }
|
1999-01-31 18:49:57 -05:00
|
|
|
#endif
|
|
|
|
|
1999-02-22 06:01:13 -05:00
|
|
|
virtual WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor,
|
|
|
|
WXUINT message, WXWPARAM wParam,
|
|
|
|
WXLPARAM lParam);
|
1999-02-02 17:23:44 -05:00
|
|
|
|
1999-02-22 06:01:13 -05:00
|
|
|
virtual void AdoptAttributesFromHWND();
|
|
|
|
virtual void SetupColours();
|
|
|
|
virtual long MSWGetDlgCode();
|
1999-02-02 17:23:44 -05:00
|
|
|
|
1998-05-20 10:12:05 -04:00
|
|
|
protected:
|
1999-01-31 18:49:57 -05:00
|
|
|
#if wxUSE_RICHEDIT
|
1999-02-22 06:01:13 -05:00
|
|
|
bool m_isRich; // Are we using rich text edit to implement this?
|
1999-01-31 18:49:57 -05:00
|
|
|
#endif
|
|
|
|
|
1999-02-22 06:01:13 -05:00
|
|
|
wxString m_fileName;
|
1999-02-02 17:23:44 -05:00
|
|
|
|
1999-02-22 06:01:13 -05:00
|
|
|
virtual void DoSetSize(int x, int y,
|
|
|
|
int width, int height,
|
|
|
|
int sizeFlags = wxSIZE_AUTO);
|
|
|
|
|
|
|
|
private:
|
|
|
|
DECLARE_EVENT_TABLE()
|
1998-05-20 10:12:05 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
1998-08-07 19:52:45 -04:00
|
|
|
// _WX_TEXTCTRL_H_
|