]> git.saurik.com Git - wxWidgets.git/blame - include/wx/minifram.h
Use wxRendererNative::DrawTitleBarBitmap() for info bar close button.
[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
4055ed82 19#if defined(__WXPALMOS__)
ffecfa5a
JS
20#include "wx/palmos/minifram.h"
21#elif defined(__WXMSW__)
c801d85f 22#include "wx/msw/minifram.h"
2049ba38 23#elif defined(__WXMOTIF__)
34138703 24#include "wx/motif/minifram.h"
1be7a35c 25#elif defined(__WXGTK20__)
c801d85f 26#include "wx/gtk/minifram.h"
1be7a35c
MR
27#elif defined(__WXGTK__)
28#include "wx/gtk1/minifram.h"
83df96d6
JS
29#elif defined(__WXX11__)
30#include "wx/x11/minifram.h"
34138703 31#elif defined(__WXMAC__)
ef0e9220 32#include "wx/osx/minifram.h"
1777b9bb
DW
33#elif defined(__WXPM__)
34#include "wx/os2/minifram.h"
f7ed09d0
VZ
35#else
36// TODO: it seems that wxMiniFrame could be just defined here generically
37// instead of having all the above port-specific headers
38#include "wx/frame.h"
39typedef wxFrame wxMiniFrame;
c801d85f
KB
40#endif
41
065ae02d
PC
42#endif // wxUSE_MINIFRAME
43#endif // _WX_MINIFRAM_H_BASE_