]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/fontdlg.h
renamed DoHitTest() to DoTreeHitTest() to avoid conflict with existing wxWindow method
[wxWidgets.git] / include / wx / msw / fontdlg.h
CommitLineData
2bda0e17
KB
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$
bbcdf8bc 8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
11c7d5b6
VZ
12#ifndef _WX_MSW_FONTDLG_H_
13#define _WX_MSW_FONTDLG_H_
2bda0e17 14
11c7d5b6
VZ
15// ----------------------------------------------------------------------------
16// wxFontDialog
17// ----------------------------------------------------------------------------
bbcdf8bc 18
dbc65e27 19class WXDLLEXPORT wxFontDialog : public wxFontDialogBase
11c7d5b6 20{
bbcdf8bc 21public:
3fde374f
VZ
22 wxFontDialog() : wxFontDialogBase() { /* must be Create()d later */ }
23 wxFontDialog(wxWindow *parent)
24 : wxFontDialogBase(parent) { Create(parent); }
dbc65e27 25 wxFontDialog(wxWindow *parent, const wxFontData& data)
3fde374f 26 : wxFontDialogBase(parent, data) { Create(parent, data); }
bbcdf8bc 27
11c7d5b6
VZ
28 virtual int ShowModal();
29
3fde374f
VZ
30 // deprecated interface, don't use
31 wxFontDialog(wxWindow *parent, const wxFontData *data)
32 : wxFontDialogBase(parent, data) { Create(parent, data); }
bbcdf8bc
JS
33
34protected:
fc7a2a60 35 DECLARE_DYNAMIC_CLASS_NO_COPY(wxFontDialog)
2bda0e17
KB
36};
37
38#endif
11c7d5b6 39 // _WX_MSW_FONTDLG_H_
2bda0e17 40