Browse CVS Repository
Annotation of /malonnote/mnTextCtrl.h
Parent Directory
| Revision Log
| Revision Graph
Revision 1.1 -
( hide annotations)
( download)
( as text)
Thu Aug 11 07:19:39 2005 UTC
(18 years, 7 months ago)
by maloninc
Branch: MAIN
CVS Tags: dev-1_1-0007
File MIME type: text/x-chdr
add
| 1 |
maloninc |
1.1 |
#ifndef MNTEXTCTRL_H |
| 2 |
|
|
#define MNTEXTCTRL_H |
| 3 |
|
|
|
| 4 |
|
|
#include <wx/textctrl.h> |
| 5 |
|
|
|
| 6 |
|
|
class mnTextCtrl: public wxTextCtrl { |
| 7 |
|
|
public: |
| 8 |
|
|
mnTextCtrl(wxWindow* parent, int id, const wxString& title, const wxPoint& pos=wxDefaultPosition, const wxSize& size=wxDefaultSize, long style): |
| 9 |
|
|
wxTextCtrl(parent, id, title, pos, size, style) {} |
| 10 |
|
|
void handleKeyDown(wxKeyEvent& event); |
| 11 |
|
|
|
| 12 |
|
|
DECLARE_EVENT_TABLE() |
| 13 |
|
|
}; |
| 14 |
|
|
|
| 15 |
|
|
#endif //MNTEXTCTRL_H |
|