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