// Modified by:
// Created: 01/02/97
// RCS-ID: $Id$
-// Copyright: (c) Julian Smart and Markus Holzem
-// Licence: wxWindows license
+// Copyright: (c) Julian Smart
+// Licence: wxWindows license
/////////////////////////////////////////////////////////////////////////////
-#ifdef __GNUG__
+#if defined( __GNUG__) && !defined(__APPLE__)
#pragma interface
#endif
class MyApp: public wxApp
{
public:
- MyApp(void) ;
+ MyApp(void){};
bool OnInit(void);
};
public:
MyCanvas *canvas;
MyFrame(wxFrame *parent, const wxString& title, const wxPoint& pos, const wxSize& size);
+ virtual ~MyFrame();
- bool OnClose(void);
void OnActivate(bool) {}
void OnLoadFile(wxCommandEvent& event);
+ void OnSaveFile(wxCommandEvent& event);
void OnQuit(wxCommandEvent& event);
void OnAbout(wxCommandEvent& event);
DECLARE_EVENT_TABLE()
{
public:
MyCanvas(wxWindow *parent, const wxPoint& pos, const wxSize& size);
- ~MyCanvas(void) ;
+ ~MyCanvas(void){};
void OnPaint(wxPaintEvent& event);
DECLARE_EVENT_TABLE()
#define PNGDEMO_QUIT 100
#define PNGDEMO_ABOUT 101
#define PNGDEMO_LOAD_FILE 102
+#define PNGDEMO_SAVE_FILE 103