/////////////////////////////////////////////////////////////////////////////
// Name: styles.h
// Author: Robert Roebling
+// RCS-ID: $Id$
// Created: 04/07/02
/////////////////////////////////////////////////////////////////////////////
#ifndef __styles_H__
#define __styles_H__
-#ifdef __GNUG__
- #pragma interface "styles.cpp"
-#endif
-
-// Include wxWindows' headers
+// Include wxWidgets' headers
#ifndef WX_PRECOMP
- #include <wx/wx.h>
+ #include "wx/wx.h"
#endif
//----------------------------------------------------------------------------
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = wxDEFAULT_FRAME_STYLE );
-
+
private:
void CreateMyMenuBar();
-
+
private:
void OnAbout( wxCommandEvent &event );
void OnQuit( wxCommandEvent &event );
-
+
void OnCloseWindow( wxCloseEvent &event );
-
+
private:
DECLARE_EVENT_TABLE()
};
class MyApp: public wxApp
{
public:
- MyApp();
-
+ MyApp(){};
+
virtual bool OnInit();
virtual int OnExit();
};