]> git.saurik.com Git - wxWidgets.git/blame - include/wx/minifram.h
Allow testing for existence of specific file types in wxFileName.
[wxWidgets.git] / include / wx / minifram.h
CommitLineData
99d80019
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/minifram.h
3// Purpose: wxMiniFrame base header
4// Author: Julian Smart
5// Modified by:
6// Created:
7// Copyright: (c) Julian Smart
8// RCS-ID: $Id$
9// Licence: wxWindows Licence
10/////////////////////////////////////////////////////////////////////////////
11
34138703 12#ifndef _WX_MINIFRAM_H_BASE_
84e5ae3d 13#define _WX_MINIFRAM_H_BASE_
c801d85f 14
e45689df
MW
15#include "wx/defs.h"
16
065ae02d
PC
17#if wxUSE_MINIFRAME
18
bd362275 19#if defined(__WXMSW__)
c801d85f 20#include "wx/msw/minifram.h"
2049ba38 21#elif defined(__WXMOTIF__)
34138703 22#include "wx/motif/minifram.h"
1be7a35c 23#elif defined(__WXGTK20__)
c801d85f 24#include "wx/gtk/minifram.h"
1be7a35c
MR
25#elif defined(__WXGTK__)
26#include "wx/gtk1/minifram.h"
83df96d6
JS
27#elif defined(__WXX11__)
28#include "wx/x11/minifram.h"
34138703 29#elif defined(__WXMAC__)
ef0e9220 30#include "wx/osx/minifram.h"
1777b9bb
DW
31#elif defined(__WXPM__)
32#include "wx/os2/minifram.h"
f7ed09d0
VZ
33#else
34// TODO: it seems that wxMiniFrame could be just defined here generically
35// instead of having all the above port-specific headers
36#include "wx/frame.h"
37typedef wxFrame wxMiniFrame;
c801d85f
KB
38#endif
39
065ae02d
PC
40#endif // wxUSE_MINIFRAME
41#endif // _WX_MINIFRAM_H_BASE_