1999-08-24 20:30:10 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2011-03-20 00:14:35 +00:00
|
|
|
// Name: wx/gtk/fontdlg.h
|
1999-08-24 20:30:10 +00:00
|
|
|
// Purpose: wxFontDialog
|
|
|
|
// Author: Robert Roebling
|
1999-11-05 19:03:19 +00:00
|
|
|
// Created:
|
1999-08-24 20:30:10 +00:00
|
|
|
// Copyright: (c) Robert Roebling
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1999-08-24 20:30:10 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-01-15 05:55:15 +00:00
|
|
|
#ifndef _WX_GTK_FONTDLG_H_
|
|
|
|
#define _WX_GTK_FONTDLG_H_
|
1999-08-24 20:30:10 +00:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxFontDialog
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2005-08-02 22:58:06 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxFontDialog : public wxFontDialogBase
|
1999-08-24 20:30:10 +00:00
|
|
|
{
|
|
|
|
public:
|
2002-05-12 19:35:33 +00:00
|
|
|
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();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// create the GTK dialog
|
2014-03-30 00:02:23 +00:00
|
|
|
virtual bool DoCreate(wxWindow *parent) wxOVERRIDE;
|
1999-08-24 20:30:10 +00:00
|
|
|
|
2015-04-23 11:49:01 +00:00
|
|
|
wxDECLARE_DYNAMIC_CLASS(wxFontDialog);
|
1999-08-24 20:30:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|