]>
Commit | Line | Data |
---|---|---|
ffecfa5a JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: src/palmos/fontdlg.cpp | |
3 | // Purpose: wxFontDialog class | |
e2731512 | 4 | // Author: William Osborne - minimal working wxPalmOS port |
ffecfa5a JS |
5 | // Modified by: |
6 | // Created: 10/13/04 | |
e2731512 | 7 | // RCS-ID: $Id$ |
ffecfa5a JS |
8 | // Copyright: (c) William Osborne |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
ffecfa5a JS |
20 | // For compilers that support precompilation, includes "wx.h". |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
24 | #pragma hdrstop | |
25 | #endif | |
26 | ||
27 | #if wxUSE_FONTDLG | |
28 | ||
e4db172a WS |
29 | #include "wx/fontdlg.h" |
30 | ||
ffecfa5a | 31 | #ifndef WX_PRECOMP |
ffecfa5a JS |
32 | #include "wx/utils.h" |
33 | #include "wx/dialog.h" | |
463c4d71 | 34 | #include "wx/math.h" |
e4db172a | 35 | #include "wx/log.h" |
ce5d92e1 | 36 | #include "wx/cmndata.h" |
ffecfa5a JS |
37 | #endif |
38 | ||
ffecfa5a JS |
39 | #include "wx/palmos/private.h" |
40 | ||
ffecfa5a JS |
41 | #include <stdlib.h> |
42 | #include <string.h> | |
43 | ||
44 | // ---------------------------------------------------------------------------- | |
45 | // wxWin macros | |
46 | // ---------------------------------------------------------------------------- | |
47 | ||
48 | IMPLEMENT_DYNAMIC_CLASS(wxFontDialog, wxDialog) | |
49 | ||
50 | // ============================================================================ | |
51 | // implementation | |
52 | // ============================================================================ | |
53 | ||
54 | // ---------------------------------------------------------------------------- | |
55 | // wxFontDialog | |
56 | // ---------------------------------------------------------------------------- | |
57 | ||
58 | int wxFontDialog::ShowModal() | |
59 | { | |
60 | return wxID_CANCEL; | |
61 | } | |
62 | ||
63 | #endif // wxUSE_FONTDLG |