X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c801d85f158c4cba50b588807daabdcbd0ed3853..e4ccedf7b28e60d8109ea412c34fb0f22a68afd4:/include/wx/region.h diff --git a/include/wx/region.h b/include/wx/region.h index aa208368f3..15cd749a7f 100644 --- a/include/wx/region.h +++ b/include/wx/region.h @@ -1,13 +1,38 @@ -#ifndef __REGIONH_BASE__ -#define __REGIONH_BASE__ - -#if defined(__WINDOWS__) -#include "wx/msw/region.h" -#elif defined(__MOTIF__) -#include "wx/xt/region.h" -#elif defined(__GTK__) -#include "wx/gtk/region.h" +///////////////////////////////////////////////////////////////////////////// +// Name: wx/region.h +// Purpose: Base header for wxRegion +// Author: Julian Smart +// Modified by: +// Created: +// RCS-ID: $Id$ +// Copyright: (c) Julian Smart +// Licence: wxWindows Licence +///////////////////////////////////////////////////////////////////////////// + +#ifndef _WX_REGION_H_BASE_ +#define _WX_REGION_H_BASE_ + +#include "wx/colour.h" + +#if defined(__WXPALMOS__) + #include "wx/palmos/region.h" +#elif defined(__WXMSW__) + #include "wx/msw/region.h" +#elif defined(__WXGTK20__) + #include "wx/gtk/region.h" +#elif defined(__WXGTK__) + #include "wx/gtk1/region.h" +#elif defined(__WXMOTIF__) || defined(__WXX11__) + #include "wx/x11/region.h" +#elif defined(__WXMGL__) + #include "wx/mgl/region.h" +#elif defined(__WXMAC__) + #include "wx/mac/region.h" +#elif defined(__WXCOCOA__) + #include "wx/cocoa/region.h" +#elif defined(__WXPM__) + #include "wx/os2/region.h" #endif #endif - // __REGIONH_BASE__ + // _WX_REGION_H_BASE_