Browse CVS Repository
Diff of /malonnote/mnTextCtrl.h
Parent Directory
| Revision Log
| Revision Graph
| Patch
| 1 |
#ifndef MNTEXTCTRL_H |
#ifndef MNTEXTCTRL_H |
| 2 |
#define MNTEXTCTRL_H |
#define MNTEXTCTRL_H |
| 3 |
|
|
| 4 |
|
#include <wx/wx.h> |
| 5 |
#include <wx/textctrl.h> |
#include <wx/textctrl.h> |
| 6 |
|
|
| 7 |
class mnTextCtrl: public wxTextCtrl { |
class mnTextCtrl: public wxTextCtrl { |
| 8 |
public: |
public: |
| 9 |
mnTextCtrl(wxWindow* parent, int id, const wxString& title, const wxPoint& pos=wxDefaultPosition, const wxSize& size=wxDefaultSize, long style): |
mnTextCtrl(wxWindow* parent, int id, const wxString& title, const wxPoint& pos=wxDefaultPosition, const wxSize& size=wxDefaultSize, long style=0, const wxValidator& validator=wxDefaultValidator, const wxString& name=wxTextCtrlNameStr): |
| 10 |
wxTextCtrl(parent, id, title, pos, size, style) {} |
wxTextCtrl(parent, id, title, pos, size, style, validator, name) {} |
| 11 |
void handleKeyDown(wxKeyEvent& event); |
void handleKeyDown(wxKeyEvent& event); |
| 12 |
|
void MSW_handleKeyDown(wxKeyEvent& event); |
| 13 |
|
void MAC_handleKeyDown(wxKeyEvent& event); |
| 14 |
|
void GTK_handleKeyDown(wxKeyEvent& event); |
| 15 |
|
|
| 16 |
DECLARE_EVENT_TABLE() |
DECLARE_EVENT_TABLE() |
| 17 |
}; |
}; |
|
|
Legend:
| Removed from v.1.1 |
|
| changed lines |
| |
Added in v.1.2 |
|
|
| |