]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/msw/fontdlg.h
Get SetLabel working again for wxStaticText by overriding SetLabel so that we can...
[wxWidgets.git] / include / wx / msw / fontdlg.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/msw/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// ----------------------------------------------------------------------------
16// wxFontDialog
17// ----------------------------------------------------------------------------
18
19class WXDLLIMPEXP_CORE wxFontDialog : public wxFontDialogBase
20{
21public:
22 wxFontDialog() : wxFontDialogBase() { /* must be Create()d later */ }
23 wxFontDialog(wxWindow *parent)
24 : wxFontDialogBase(parent) { Create(parent); }
25 wxFontDialog(wxWindow *parent, const wxFontData& data)
26 : wxFontDialogBase(parent, data) { Create(parent, data); }
27
28 virtual int ShowModal();
29
30#if WXWIN_COMPATIBILITY_2_6
31 // deprecated interface, don't use
32 wxDEPRECATED( wxFontDialog(wxWindow *parent, const wxFontData *data) );
33#endif // WXWIN_COMPATIBILITY_2_6
34
35protected:
36 DECLARE_DYNAMIC_CLASS_NO_COPY(wxFontDialog)
37};
38
39#if WXWIN_COMPATIBILITY_2_6
40 // deprecated interface, don't use
41inline wxFontDialog::wxFontDialog(wxWindow *parent, const wxFontData *data)
42 : wxFontDialogBase(parent) { InitFontData(data); Create(parent); }
43#endif // WXWIN_COMPATIBILITY_2_6
44
45#endif
46 // _WX_MSW_FONTDLG_H_