1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/cocoa/textctrl.h
3 // Purpose: wxTextCtrl class
4 // Author: David Elliott
7 // Copyright: (c) 2003 David Elliott
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef __WX_COCOA_TEXTCTRL_H__
12 #define __WX_COCOA_TEXTCTRL_H__
14 #include "wx/cocoa/NSTextField.h"
16 // ========================================================================
18 // ========================================================================
19 class WXDLLIMPEXP_CORE wxTextCtrl
: public wxTextCtrlBase
, protected wxCocoaNSTextField
21 DECLARE_DYNAMIC_CLASS(wxTextCtrl
)
23 WX_DECLARE_COCOA_OWNER(NSTextField
,NSControl
,NSView
)
24 // ------------------------------------------------------------------------
26 // ------------------------------------------------------------------------
29 wxTextCtrl(wxWindow
*parent
, wxWindowID winid
,
30 const wxString
& value
= wxEmptyString
,
31 const wxPoint
& pos
= wxDefaultPosition
,
32 const wxSize
& size
= wxDefaultSize
, long style
= 0,
33 const wxValidator
& validator
= wxDefaultValidator
,
34 const wxString
& name
= wxTextCtrlNameStr
)
36 Create(parent
, winid
, value
, pos
, size
, style
, validator
, name
);
39 bool Create(wxWindow
*parent
, wxWindowID winid
,
40 const wxString
& value
= wxEmptyString
,
41 const wxPoint
& pos
= wxDefaultPosition
,
42 const wxSize
& size
= wxDefaultSize
, long style
= 0,
43 const wxValidator
& validator
= wxDefaultValidator
,
44 const wxString
& name
= wxTextCtrlNameStr
);
45 virtual ~wxTextCtrl();
47 // ------------------------------------------------------------------------
49 // ------------------------------------------------------------------------
51 virtual void Cocoa_didChangeText(void);
52 virtual void CocoaTarget_action(void);
53 // ------------------------------------------------------------------------
55 // ------------------------------------------------------------------------
57 virtual wxString
GetValue() const;
59 virtual int GetLineLength(long lineNo
) const;
60 virtual wxString
GetLineText(long lineNo
) const;
61 virtual int GetNumberOfLines() const;
63 virtual bool IsModified() const;
64 virtual bool IsEditable() const;
66 // If the return values from and to are the same, there is no selection.
67 virtual void GetSelection(long* from
, long* to
) const;
74 virtual void Replace(long from
, long to
, const wxString
& value
);
75 virtual void Remove(long from
, long to
);
77 // clears the dirty flag
78 virtual void MarkDirty();
79 virtual void DiscardEdits();
81 // writing text inserts it at the current position, appending always
82 // inserts it at the end
83 virtual void WriteText(const wxString
& text
);
84 virtual void AppendText(const wxString
& text
);
86 // translate between the position (which is just an index in the text ctrl
87 // considering all its contents as a single strings) and (x, y) coordinates
88 // which represent column and line.
89 virtual long XYToPosition(long x
, long y
) const;
90 virtual bool PositionToXY(long pos
, long *x
, long *y
) const;
92 virtual void ShowPosition(long pos
);
94 // Clipboard operations
103 virtual bool CanUndo() const;
104 virtual bool CanRedo() const;
107 virtual void SetInsertionPoint(long pos
);
108 virtual void SetInsertionPointEnd();
109 virtual long GetInsertionPoint() const;
110 virtual wxTextPos
GetLastPosition() const;
112 virtual void SetSelection(long from
, long to
);
113 // virtual void SelectAll();
114 virtual void SetEditable(bool editable
);
117 virtual wxSize
DoGetBestSize() const;
119 virtual void DoSetValue(const wxString
& value
, int flags
= 0);
122 #endif // __WX_COCOA_TEXTCTRL_H__