]>
Commit | Line | Data |
---|---|---|
9b6dbb09 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: textctrl.h | |
3 | // Purpose: wxTextCtrl class | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 17/09/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
c27eab7e | 9 | // Licence: wxWindows licence |
9b6dbb09 JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_TEXTCTRL_H_ | |
13 | #define _WX_TEXTCTRL_H_ | |
14 | ||
3399051e | 15 | #if defined(__GNUG__) && !defined(__APPLE__) |
83df96d6 | 16 | #pragma interface "textctrl.h" |
9b6dbb09 JS |
17 | #endif |
18 | ||
9b6dbb09 | 19 | // Single-line text item |
813c20a6 | 20 | class WXDLLEXPORT wxTextCtrl : public wxTextCtrlBase |
9b6dbb09 | 21 | { |
c27eab7e | 22 | DECLARE_DYNAMIC_CLASS(wxTextCtrl) |
83df96d6 | 23 | |
9b6dbb09 | 24 | public: |
c27eab7e VZ |
25 | // creation |
26 | // -------- | |
27 | wxTextCtrl(); | |
28 | wxTextCtrl(wxWindow *parent, | |
83df96d6 JS |
29 | wxWindowID id, |
30 | const wxString& value = wxEmptyString, | |
31 | const wxPoint& pos = wxDefaultPosition, | |
32 | const wxSize& size = wxDefaultSize, | |
33 | long style = 0, | |
34 | const wxValidator& validator = wxDefaultValidator, | |
35 | const wxString& name = wxTextCtrlNameStr) | |
36 | { | |
37 | Create(parent, id, value, pos, size, style, validator, name); | |
38 | } | |
39 | ||
c27eab7e | 40 | bool Create(wxWindow *parent, wxWindowID id, |
83df96d6 JS |
41 | const wxString& value = wxEmptyString, |
42 | const wxPoint& pos = wxDefaultPosition, | |
43 | const wxSize& size = wxDefaultSize, long style = 0, | |
44 | const wxValidator& validator = wxDefaultValidator, | |
45 | const wxString& name = wxTextCtrlNameStr); | |
46 | ||
c27eab7e VZ |
47 | // accessors |
48 | // --------- | |
49 | virtual wxString GetValue() const; | |
50 | virtual void SetValue(const wxString& value); | |
83df96d6 | 51 | |
c27eab7e VZ |
52 | virtual int GetLineLength(long lineNo) const; |
53 | virtual wxString GetLineText(long lineNo) const; | |
54 | virtual int GetNumberOfLines() const; | |
83df96d6 | 55 | |
c27eab7e VZ |
56 | // operations |
57 | // ---------- | |
83df96d6 | 58 | |
c27eab7e VZ |
59 | // Clipboard operations |
60 | virtual void Copy(); | |
61 | virtual void Cut(); | |
62 | virtual void Paste(); | |
ca8b28f2 JS |
63 | virtual bool CanCopy() const; |
64 | virtual bool CanCut() const; | |
65 | virtual bool CanPaste() const; | |
83df96d6 | 66 | |
ca8b28f2 JS |
67 | // Undo/redo |
68 | virtual void Undo(); | |
69 | virtual void Redo(); | |
83df96d6 | 70 | |
ca8b28f2 JS |
71 | virtual bool CanUndo() const; |
72 | virtual bool CanRedo() const; | |
83df96d6 | 73 | |
c27eab7e VZ |
74 | virtual void SetInsertionPoint(long pos); |
75 | virtual void SetInsertionPointEnd(); | |
76 | virtual long GetInsertionPoint() const; | |
77 | virtual long GetLastPosition() const; | |
78 | virtual void Replace(long from, long to, const wxString& value); | |
79 | virtual void Remove(long from, long to); | |
80 | virtual void SetSelection(long from, long to); | |
81 | virtual void SetEditable(bool editable); | |
ca8b28f2 JS |
82 | // If the return values from and to are the same, there is no |
83 | // selection. | |
84 | virtual void GetSelection(long* from, long* to) const; | |
85 | virtual bool IsEditable() const ; | |
83df96d6 | 86 | |
c27eab7e VZ |
87 | virtual void WriteText(const wxString& text); |
88 | virtual void AppendText(const wxString& text); | |
89 | virtual void DiscardEdits(); | |
90 | virtual bool IsModified() const; | |
83df96d6 | 91 | |
c27eab7e | 92 | virtual long XYToPosition(long x, long y) const; |
813c20a6 | 93 | virtual bool PositionToXY(long pos, long *x, long *y) const; |
c27eab7e VZ |
94 | virtual void ShowPosition(long pos); |
95 | virtual void Clear(); | |
83df96d6 | 96 | |
c27eab7e VZ |
97 | // callbacks |
98 | // --------- | |
99 | void OnDropFiles(wxDropFilesEvent& event); | |
100 | void OnChar(wxKeyEvent& event); | |
101 | // void OnEraseBackground(wxEraseEvent& event); | |
83df96d6 | 102 | |
e702ff0f JS |
103 | void OnCut(wxCommandEvent& event); |
104 | void OnCopy(wxCommandEvent& event); | |
105 | void OnPaste(wxCommandEvent& event); | |
106 | void OnUndo(wxCommandEvent& event); | |
107 | void OnRedo(wxCommandEvent& event); | |
83df96d6 | 108 | |
e702ff0f JS |
109 | void OnUpdateCut(wxUpdateUIEvent& event); |
110 | void OnUpdateCopy(wxUpdateUIEvent& event); | |
111 | void OnUpdatePaste(wxUpdateUIEvent& event); | |
112 | void OnUpdateUndo(wxUpdateUIEvent& event); | |
113 | void OnUpdateRedo(wxUpdateUIEvent& event); | |
83df96d6 | 114 | |
c27eab7e | 115 | virtual void Command(wxCommandEvent& event); |
83df96d6 | 116 | |
c27eab7e VZ |
117 | // implementation from here to the end |
118 | // ----------------------------------- | |
119 | virtual void ChangeFont(bool keepOriginalSize = TRUE); | |
120 | virtual void ChangeBackgroundColour(); | |
121 | virtual void ChangeForegroundColour(); | |
122 | void SetModified(bool mod) { m_modified = mod; } | |
123 | virtual WXWidget GetTopWidget() const; | |
83df96d6 | 124 | |
c27eab7e VZ |
125 | // send the CHAR and TEXT_UPDATED events |
126 | void DoSendEvents(void /* XmTextVerifyCallbackStruct */ *cbs, | |
83df96d6 JS |
127 | long keycode); |
128 | ||
9b6dbb09 | 129 | protected: |
c27eab7e | 130 | wxString m_fileName; |
e1aae528 MB |
131 | |
132 | virtual wxSize DoGetBestSize() const; | |
02e8b2f9 | 133 | public: |
c27eab7e VZ |
134 | // Motif-specific |
135 | void* m_tempCallbackStruct; | |
136 | bool m_modified; | |
137 | wxString m_value; // Required for password text controls | |
83df96d6 | 138 | |
c27eab7e VZ |
139 | // Did we call wxTextCtrl::OnChar? If so, generate a command event. |
140 | bool m_processedDefault; | |
83df96d6 | 141 | |
c27eab7e VZ |
142 | private: |
143 | DECLARE_EVENT_TABLE() | |
9b6dbb09 JS |
144 | }; |
145 | ||
146 | #endif | |
83df96d6 | 147 | // _WX_TEXTCTRL_H_ |