// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-class MyTaskBarIcon: public wxTaskBarIcon
+class MyTaskBarIcon : public wxTaskBarIcon
{
public:
-#if defined(__WXCOCOA__)
+#if defined(__WXOSX__) && wxOSX_USE_COCOA
MyTaskBarIcon(wxTaskBarIconType iconType = DEFAULT_TYPE)
: wxTaskBarIcon(iconType)
#else
// Define a new application
-class MyApp: public wxApp
+class MyApp : public wxApp
{
public:
virtual bool OnInit();
class MyDialog: public wxDialog
{
public:
- MyDialog(wxWindow* parent, const wxWindowID id, const wxString& title,
- const wxPoint& pos, const wxSize& size, const long windowStyle = wxDEFAULT_DIALOG_STYLE);
+ MyDialog(const wxString& title);
virtual ~MyDialog();
protected:
- void Init();
-
+ void OnAbout(wxCommandEvent& event);
void OnOK(wxCommandEvent& event);
void OnExit(wxCommandEvent& event);
void OnCloseWindow(wxCloseEvent& event);
MyTaskBarIcon *m_taskBarIcon;
-#if defined(__WXCOCOA__)
+#if defined(__WXOSX__) && wxOSX_USE_COCOA
MyTaskBarIcon *m_dockIcon;
#endif