]> git.saurik.com Git - wxWidgets.git/blame - src/motif/fontdlg.cpp
changed PPC struct alignement setting
[wxWidgets.git] / src / motif / fontdlg.cpp
CommitLineData
4bb6408c
JS
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
5dcf05ae 17#include "wx/motif/fontdlg.h"
4bb6408c
JS
18#include "wx/cmndata.h"
19
4bb6408c 20IMPLEMENT_DYNAMIC_CLASS(wxFontDialog, wxDialog)
4bb6408c
JS
21
22/*
23 * wxFontDialog
24 */
25
26wxFontDialog::wxFontDialog()
27{
28 m_dialogParent = NULL;
29}
30
31wxFontDialog::wxFontDialog(wxWindow *parent, wxFontData *data)
32{
33 Create(parent, data);
34}
35
36bool 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
48int wxFontDialog::ShowModal()
49{
50 // TODO: show (maybe create) the dialog
51 return wxID_CANCEL;
52}
53