a1f9e3ec5d
GNU compiler included with Mac OS X 10.2 (Jaguar) as well as August Developer Tools update contain a bug concerning #pragma interface handling that can only be worked around by not using them (and they are not necessary anyways) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16953 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
67 lines
1.6 KiB
C++
67 lines
1.6 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: styles.h
|
|
// Author: Robert Roebling
|
|
// Created: 04/07/02
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef __styles_H__
|
|
#define __styles_H__
|
|
|
|
#if defined(__GNUG__) && !defined(__APPLE__)
|
|
#pragma interface "styles.cpp"
|
|
#endif
|
|
|
|
// Include wxWindows' headers
|
|
|
|
#ifndef WX_PRECOMP
|
|
#include <wx/wx.h>
|
|
#endif
|
|
|
|
//----------------------------------------------------------------------------
|
|
// constants
|
|
//----------------------------------------------------------------------------
|
|
|
|
#define ID_ABOUT 100
|
|
#define ID_QUIT 204
|
|
|
|
//----------------------------------------------------------------------------
|
|
// MyFrame
|
|
//----------------------------------------------------------------------------
|
|
|
|
class MyFrame: public wxFrame
|
|
{
|
|
public:
|
|
// constructors and destructors
|
|
MyFrame( wxWindow *parent, wxWindowID id, const wxString &title,
|
|
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()
|
|
};
|
|
|
|
//----------------------------------------------------------------------------
|
|
// MyApp
|
|
//----------------------------------------------------------------------------
|
|
|
|
class MyApp: public wxApp
|
|
{
|
|
public:
|
|
MyApp();
|
|
|
|
virtual bool OnInit();
|
|
virtual int OnExit();
|
|
};
|
|
|
|
#endif
|