]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/carbon/fontdlg.h
DEBUGREPORT
[wxWidgets.git] / include / wx / mac / carbon / fontdlg.h
index aefc2de26e06159bb366180e4b934b901927432d..f8aa3f90166b0562f7cd1fc2e6ffd4e7c8c31fd5 100644 (file)
@@ -1,13 +1,12 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        fontdlg.h
 /////////////////////////////////////////////////////////////////////////////
 // Name:        fontdlg.h
-// Purpose:     wxFontDialog class. Use generic version if no
-//              platform-specific implementation.
-// Author:      Stefan Csomor
+// Purpose:     wxFontDialog class using fonts window services (10.2+). 
+// Author:      Ryan Norton
 // Modified by:
 // Modified by:
-// Created:     1998-01-01
+// Created:     2004-09-25
 // RCS-ID:      $Id$
 // RCS-ID:      $Id$
-// Copyright:   (c) Stefan Csomor
-// Licence:     wxWidgets licence
+// Copyright:   (c) Ryan Norton
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifndef _WX_FONTDLG_H_
 /////////////////////////////////////////////////////////////////////////////
 
 #ifndef _WX_FONTDLG_H_
 class WXDLLEXPORT wxFontDialog: public wxDialog
 {
 DECLARE_DYNAMIC_CLASS(wxFontDialog)
 class WXDLLEXPORT wxFontDialog: public wxDialog
 {
 DECLARE_DYNAMIC_CLASS(wxFontDialog)
+
 public:
     wxFontDialog();
     wxFontDialog(wxWindow *parent, const wxFontData& data);
 public:
     wxFontDialog();
     wxFontDialog(wxWindow *parent, const wxFontData& data);
+    ~wxFontDialog();
 
     bool Create(wxWindow *parent, const wxFontData& data);
 
     int ShowModal();
     wxFontData& GetFontData() { return m_fontData; }
 
     bool Create(wxWindow *parent, const wxFontData& data);
 
     int ShowModal();
     wxFontData& GetFontData() { return m_fontData; }
+    bool IsShown() const;
+    void OnPanelClose();
+    void SetData(wxFontData& data);
 
 protected:
     wxWindow*   m_dialogParent;
     wxFontData  m_fontData;
 
 protected:
     wxWindow*   m_dialogParent;
     wxFontData  m_fontData;
+    void*              m_pEventHandlerRef;
 };
 
 #endif
 };
 
 #endif