X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7beba2fc73283f5b750227459da57e66bcd475f5..0944fceb987def04dc89d03d58c35793d0ecdfed:/include/wx/gtk1/fontdlg.h diff --git a/include/wx/gtk1/fontdlg.h b/include/wx/gtk1/fontdlg.h index d6f157bc71..87662f028b 100644 --- a/include/wx/gtk1/fontdlg.h +++ b/include/wx/gtk1/fontdlg.h @@ -11,37 +11,35 @@ #ifndef __GTK_FONTDLGH__ #define __GTK_FONTDLGH__ -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma interface "fontdlg.h" #endif -#include "wx/setup.h" -#include "wx/gdicmn.h" -#include "wx/font.h" -#include "wx/dialog.h" -#include "wx/cmndata.h" - -//----------------------------------------------------------------------------- -// classes -//----------------------------------------------------------------------------- - -class wxFontDialog; - //----------------------------------------------------------------------------- // wxFontDialog //----------------------------------------------------------------------------- -class wxFontDialog: public wxDialog +class WXDLLIMPEXP_CORE wxFontDialog : public wxFontDialogBase { public: - wxFontDialog() {} - wxFontDialog( wxWindow *parent, wxFontData *data = (wxFontData *) NULL ); - ~wxFontDialog(); + wxFontDialog() : wxFontDialogBase() { /* must be Create()d later */ } + wxFontDialog(wxWindow *parent) + : wxFontDialogBase(parent) { Create(parent); } + wxFontDialog(wxWindow *parent, const wxFontData& data) + : wxFontDialogBase(parent, data) { Create(parent, data); } + + virtual ~wxFontDialog(); + + // implementation only + void SetChosenFont(const char *name); - wxFontData& GetFontData() { return m_fontData; } + // deprecated interface, don't use + wxFontDialog(wxWindow *parent, const wxFontData *data) + : wxFontDialogBase(parent, data) { Create(parent, data); } -//protected: - wxFontData m_fontData; +protected: + // create the GTK dialog + virtual bool DoCreate(wxWindow *parent); private: DECLARE_DYNAMIC_CLASS(wxFontDialog)