]>
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 | ||
29 | #ifndef WX_PRECOMP | |
30 | #include "wx/defs.h" | |
31 | #include "wx/utils.h" | |
32 | #include "wx/dialog.h" | |
463c4d71 | 33 | #include "wx/math.h" |
ffecfa5a JS |
34 | #endif |
35 | ||
36 | #include "wx/fontdlg.h" | |
37 | #include "wx/palmos/private.h" | |
38 | ||
39 | #include "wx/cmndata.h" | |
40 | #include "wx/log.h" | |
41 | ||
ffecfa5a JS |
42 | #include <stdlib.h> |
43 | #include <string.h> | |
44 | ||
45 | // ---------------------------------------------------------------------------- | |
46 | // wxWin macros | |
47 | // ---------------------------------------------------------------------------- | |
48 | ||
49 | IMPLEMENT_DYNAMIC_CLASS(wxFontDialog, wxDialog) | |
50 | ||
51 | // ============================================================================ | |
52 | // implementation | |
53 | // ============================================================================ | |
54 | ||
55 | // ---------------------------------------------------------------------------- | |
56 | // wxFontDialog | |
57 | // ---------------------------------------------------------------------------- | |
58 | ||
59 | int wxFontDialog::ShowModal() | |
60 | { | |
61 | return wxID_CANCEL; | |
62 | } | |
63 | ||
64 | #endif // wxUSE_FONTDLG |