]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/carbon/menuitem.h
added wxUSE_ABOUTDLG
[wxWidgets.git] / include / wx / mac / carbon / menuitem.h
index 98aa5745b5f72dab2ff07938513be89bb5bb3210..7f89ee9420701270336942b5bf73e660ce7ce1ce 100644 (file)
@@ -1,26 +1,23 @@
 ///////////////////////////////////////////////////////////////////////////////
 ///////////////////////////////////////////////////////////////////////////////
-// Name:        menuitem.h
+// Name:        wx/mac/carbon/menuitem.h
 // Purpose:     wxMenuItem class
 // Author:      Vadim Zeitlin
 // Purpose:     wxMenuItem class
 // Author:      Vadim Zeitlin
-// Modified by: 
+// Modified by:
 // Created:     11.11.97
 // RCS-ID:      $Id$
 // Copyright:   (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
 // Created:     11.11.97
 // RCS-ID:      $Id$
 // Copyright:   (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
-// Licence:     wxWidgets licence
+// Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
 
 #ifndef   _MENUITEM_H
 #define   _MENUITEM_H
 
 ///////////////////////////////////////////////////////////////////////////////
 
 #ifndef   _MENUITEM_H
 #define   _MENUITEM_H
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma interface "menuitem.h"
-#endif
-
 // ----------------------------------------------------------------------------
 // headers
 // ----------------------------------------------------------------------------
 
 // ----------------------------------------------------------------------------
 // headers
 // ----------------------------------------------------------------------------
 
-#include "wx/setup.h"
+#include "wx/defs.h"
+#include "wx/bitmap.h"
 
 // ----------------------------------------------------------------------------
 // wxMenuItem: an item in the menu, optionally implements owner-drawn behaviour
 
 // ----------------------------------------------------------------------------
 // wxMenuItem: an item in the menu, optionally implements owner-drawn behaviour
@@ -40,8 +37,8 @@ public:
     // override base class virtuals
     virtual void SetText(const wxString& strName);
 
     // override base class virtuals
     virtual void SetText(const wxString& strName);
 
-    virtual void Enable(bool bDoEnable = TRUE);
-    virtual void Check(bool bDoCheck = TRUE);
+    virtual void Enable(bool bDoEnable = true);
+    virtual void Check(bool bDoCheck = true);
 
     virtual void SetBitmap(const wxBitmap& bitmap) ;
     virtual const wxBitmap& GetBitmap() const { return m_bitmap; }
 
     virtual void SetBitmap(const wxBitmap& bitmap) ;
     virtual const wxBitmap& GetBitmap() const { return m_bitmap; }
@@ -58,7 +55,7 @@ public:
 
 private:
     void UncheckRadio() ;
 
 private:
     void UncheckRadio() ;
-    
+
     // the positions of the first and last items of the radio group this item
     // belongs to or -1: start is the radio group start and is valid for all
     // but first radio group items (m_isRadioGroupStart == FALSE), end is valid
     // the positions of the first and last items of the radio group this item
     // belongs to or -1: start is the radio group start and is valid for all
     // but first radio group items (m_isRadioGroupStart == FALSE), end is valid