]> git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/fontdlg.h
2114a3f55a4e1ef2979b72187e4380ae0ce0c883
[wxWidgets.git] / include / wx / msw / fontdlg.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: fontdlg.h
3 // Purpose: wxFontDialog class
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 01/02/97
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_MSW_FONTDLG_H_
13 #define _WX_MSW_FONTDLG_H_
14
15 #ifdef __GNUG__
16 #pragma interface "fontdlg.h"
17 #endif
18
19 // ----------------------------------------------------------------------------
20 // wxFontDialog
21 // ----------------------------------------------------------------------------
22
23 class WXDLLEXPORT wxFontDialog : public wxFontDialogBase
24 {
25 public:
26 wxFontDialog() : wxFontDialogBase() { }
27 wxFontDialog(wxWindow *parent) : wxFontDialogBase(parent) { }
28 wxFontDialog(wxWindow *parent, const wxFontData& data)
29 : wxFontDialogBase(parent, data) { }
30
31 virtual int ShowModal();
32
33 // deprecated
34 wxFontDialog(wxWindow *parent, wxFontData *data)
35 : wxFontDialogBase(parent, data) { }
36
37 protected:
38 DECLARE_DYNAMIC_CLASS(wxFontDialog)
39 };
40
41 #endif
42 // _WX_MSW_FONTDLG_H_
43