removed USE_SHARED_LIBRARY(IES)
[wxWidgets.git] / src / motif / 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: Julian Smart
6 // Modified by:
7 // Created: 17/09/98
8 // RCS-ID: $Id$
9 // Copyright: (c) Julian Smart
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
12
13 #ifdef __GNUG__
14 #pragma implementation "fontdlg.h"
15 #endif
16
17 #include "wx/motif/fontdlg.h"
18 #include "wx/cmndata.h"
19
20 IMPLEMENT_DYNAMIC_CLASS(wxFontDialog, wxDialog)
21
22 /*
23 * wxFontDialog
24 */
25
26 wxFontDialog::wxFontDialog()
27 {
28 m_dialogParent = NULL;
29 }
30
31 wxFontDialog::wxFontDialog(wxWindow *parent, wxFontData *data)
32 {
33 Create(parent, data);
34 }
35
36 bool wxFontDialog::Create(wxWindow *parent, wxFontData *data)
37 {
38 m_dialogParent = parent;
39
40 if (data)
41 m_fontData = *data;
42
43 // TODO: you may need to do dialog creation here, unless it's
44 // done in ShowModal.
45 return TRUE;
46 }
47
48 int wxFontDialog::ShowModal()
49 {
50 // TODO: show (maybe create) the dialog
51 return wxID_CANCEL;
52 }
53