Develop and Download Open Source Software

Browse CVS Repository

Diff of /malonnote/mnTextCtrl.h

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.1 by maloninc, Thu Aug 11 07:19:39 2005 UTC revision 1.2 by maloninc, Sat Aug 13 02:00:29 2005 UTC
# Line 1  Line 1 
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

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26