removed USE_SHARED_LIBRARY(IES)
[wxWidgets.git] / src / os2 / fontdlg.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: fontdlg.cpp
3 // Purpose: wxFontDialog class. NOTE: you can use the generic class
4 // if you wish, instead of implementing this.
5 // Author: David Webster
6 // Modified by:
7 // Created: 10/06/99
8 // RCS-ID: $Id$
9 // Copyright: (c) David Webster
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
12
13 // For compilers that support precompilation, includes "wx.h".
14 #include "wx/wxprec.h"
15
16 #ifndef WX_PRECOMP
17 #include <stdio.h>
18 #include "wx/defs.h"
19 #include "wx/utils.h"
20 #include "wx/dialog.h"
21 #endif
22
23 #include "wx/fontdlg.h"
24
25 #define INCL_PM
26 #include <os2.h>
27
28 #include "wx/os2/private.h"
29 #include "wx/cmndata.h"
30
31 #include <math.h>
32 #include <stdlib.h>
33 #include <string.h>
34
35 #define wxDIALOG_DEFAULT_X 300
36 #define wxDIALOG_DEFAULT_Y 300
37
38 IMPLEMENT_DYNAMIC_CLASS(wxFontDialog, wxDialog)
39
40 /*
41 * wxFontDialog
42 */
43 wxFontDialog::wxFontDialog()
44 {
45 m_dialogParent = NULL;
46 }
47
48 wxFontDialog::wxFontDialog(wxWindow *parent, wxFontData *data)
49 {
50 Create(parent, data);
51 }
52
53 bool wxFontDialog::Create(wxWindow *parent, wxFontData *data)
54 {
55 m_dialogParent = parent;
56
57 if (data)
58 m_fontData = *data;
59 return TRUE;
60 }
61
62 int wxFontDialog::ShowModal()
63 {
64 // TODO: show (maybe create) the dialog
65 return wxID_CANCEL;
66 }
67