]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/minifram.h
wxMessageBox off the main thread lost result code.
[wxWidgets.git] / include / wx / minifram.h
... / ...
CommitLineData
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// Licence: wxWindows Licence
9/////////////////////////////////////////////////////////////////////////////
10
11#ifndef _WX_MINIFRAM_H_BASE_
12#define _WX_MINIFRAM_H_BASE_
13
14#include "wx/defs.h"
15
16#if wxUSE_MINIFRAME
17
18#if defined(__WXMSW__)
19#include "wx/msw/minifram.h"
20#elif defined(__WXMOTIF__)
21#include "wx/motif/minifram.h"
22#elif defined(__WXGTK20__)
23#include "wx/gtk/minifram.h"
24#elif defined(__WXGTK__)
25#include "wx/gtk1/minifram.h"
26#elif defined(__WXX11__)
27#include "wx/x11/minifram.h"
28#elif defined(__WXMAC__)
29#include "wx/osx/minifram.h"
30#elif defined(__WXPM__)
31#include "wx/os2/minifram.h"
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;
37#endif
38
39#endif // wxUSE_MINIFRAME
40#endif // _WX_MINIFRAM_H_BASE_