]> git.saurik.com Git - wxWidgets.git/blame - include/wx/minifram.h
Applied #15226 with modifications: wxRichTextCtrl: Implement setting properties with...
[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
99d80019
JS
8// Licence: wxWindows Licence
9/////////////////////////////////////////////////////////////////////////////
10
34138703 11#ifndef _WX_MINIFRAM_H_BASE_
84e5ae3d 12#define _WX_MINIFRAM_H_BASE_
c801d85f 13
e45689df
MW
14#include "wx/defs.h"
15
065ae02d
PC
16#if wxUSE_MINIFRAME
17
bd362275 18#if defined(__WXMSW__)
c801d85f 19#include "wx/msw/minifram.h"
2049ba38 20#elif defined(__WXMOTIF__)
34138703 21#include "wx/motif/minifram.h"
1be7a35c 22#elif defined(__WXGTK20__)
c801d85f 23#include "wx/gtk/minifram.h"
1be7a35c
MR
24#elif defined(__WXGTK__)
25#include "wx/gtk1/minifram.h"
83df96d6
JS
26#elif defined(__WXX11__)
27#include "wx/x11/minifram.h"
34138703 28#elif defined(__WXMAC__)
ef0e9220 29#include "wx/osx/minifram.h"
1777b9bb
DW
30#elif defined(__WXPM__)
31#include "wx/os2/minifram.h"
f7ed09d0
VZ
32#else
33// TODO: it seems that wxMiniFrame could be just defined here generically
34// instead of having all the above port-specific headers
35#include "wx/frame.h"
36typedef wxFrame wxMiniFrame;
c801d85f
KB
37#endif
38
065ae02d
PC
39#endif // wxUSE_MINIFRAME
40#endif // _WX_MINIFRAM_H_BASE_