1998-05-20 14:12:05 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2006-03-30 14:04:17 +00:00
|
|
|
// Name: wx/msw/fontdlg.h
|
1998-05-20 14:12:05 +00:00
|
|
|
// Purpose: wxFontDialog class
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 01/02/97
|
1998-08-07 23:52:45 +00:00
|
|
|
// Copyright: (c) Julian Smart
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:12:05 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1999-11-06 00:43:31 +00:00
|
|
|
#ifndef _WX_MSW_FONTDLG_H_
|
|
|
|
#define _WX_MSW_FONTDLG_H_
|
1998-05-20 14:12:05 +00:00
|
|
|
|
1999-11-06 00:43:31 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxFontDialog
|
|
|
|
// ----------------------------------------------------------------------------
|
1998-08-07 23:52:45 +00:00
|
|
|
|
2008-03-26 15:06:00 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxFontDialog : public wxFontDialogBase
|
1999-11-06 00:43:31 +00:00
|
|
|
{
|
1998-08-07 23:52:45 +00:00
|
|
|
public:
|
2002-05-12 22:26:01 +00:00
|
|
|
wxFontDialog() : wxFontDialogBase() { /* must be Create()d later */ }
|
|
|
|
wxFontDialog(wxWindow *parent)
|
|
|
|
: wxFontDialogBase(parent) { Create(parent); }
|
2002-05-12 19:35:33 +00:00
|
|
|
wxFontDialog(wxWindow *parent, const wxFontData& data)
|
2002-05-12 22:26:01 +00:00
|
|
|
: wxFontDialogBase(parent, data) { Create(parent, data); }
|
1998-08-07 23:52:45 +00:00
|
|
|
|
1999-11-06 00:43:31 +00:00
|
|
|
virtual int ShowModal();
|
|
|
|
|
1998-08-07 23:52:45 +00:00
|
|
|
protected:
|
2015-04-23 11:49:01 +00:00
|
|
|
wxDECLARE_DYNAMIC_CLASS_NO_COPY(wxFontDialog);
|
1998-05-20 14:12:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
1999-11-06 00:43:31 +00:00
|
|
|
// _WX_MSW_FONTDLG_H_
|