Remove wxPM, wxWidgets port to OS/2.
This port is not used and is not being worked on, so remove it to reduce the amount of the code which needs to be updated for every global change. Also remove tests for VisualAge compiler which isn't used since ages. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76533 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -47,7 +47,7 @@ while @c __WINDOWS__ should be used for the platform tests.}
|
||||
@itemdef{__WXOSX_MAC__, Mac OS X (Carbon or Cocoa)}
|
||||
@itemdef{__WXOSX_OR_COCOA__, Any Mac OS X port (wxOSX-Carbon, wxOSX-Cocoa or
|
||||
wxCocoa)}
|
||||
@itemdef{__WXPM__, OS/2 native Presentation Manager}
|
||||
@itemdef{__WXPM__, OS/2 native Presentation Manager (not used any longer).}
|
||||
@itemdef{__WXSTUBS__, Stubbed version ('template' wxWin implementation)}
|
||||
@itemdef{__WXXT__, Xt; mutually exclusive with WX_MOTIF, not implemented in wxWidgets 2.x}
|
||||
@itemdef{__WXX11__, wxX11 (__WXUNIVERSAL__ will be also defined)}
|
||||
@@ -157,7 +157,7 @@ compiler used.
|
||||
@itemdef{__MINGW64_TOOLCHAIN__, MinGW-w64 in either 32 or 64 bit builds}
|
||||
@itemdef{__SUNCC__, Sun CC, see also wxCHECK_SUNCC_VERSION}
|
||||
@itemdef{__SYMANTECC__, Symantec C++}
|
||||
@itemdef{__VISAGECPP__, IBM Visual Age (OS/2)}
|
||||
@itemdef{__VISAGECPP__, IBM Visual Age (OS/2) (not used any more).}
|
||||
@itemdef{__VISUALC__, Microsoft Visual C++, see also ::wxCHECK_VISUALC_VERSION.
|
||||
The value of this macro corresponds to the compiler version:
|
||||
@c 1020 for @c 4.2 (the first supported version), @c 1100 for
|
||||
|
@@ -312,18 +312,6 @@ library:
|
||||
@endDefList
|
||||
|
||||
|
||||
@section page_wxusedef_os2 OS2 Symbols
|
||||
|
||||
@beginDefList
|
||||
@itemdef{wxUSE_CONSOLEDEBUG, See src/os2/app.cpp file.}
|
||||
@itemdef{wxUSE_DDE, See src/os2/mimetype.cpp file.}
|
||||
@itemdef{wxUSE_IMAGE_LOADING_IN_MSW, See src/os2/clipbrd.cpp file.}
|
||||
@itemdef{wxUSE_IMAGE_LOADING_IN_OS2, See src/os2/gdiimage.cpp file.}
|
||||
@itemdef{wxUSE_NET_API, Use NetBios32GetInfo API call.}
|
||||
@itemdef{wxUSE_RESOURCE_LOADING_IN_OS2, See src/os2/gdiimage.cpp file.}
|
||||
@endDefList
|
||||
|
||||
|
||||
@section page_wxusedef_msw wxMSW Symbols
|
||||
|
||||
@beginDefList
|
||||
|
@@ -101,16 +101,6 @@ docs for it are available in @c docs/cocoa in the distribution.
|
||||
|
||||
|
||||
|
||||
@section page_port_wxos2 wxOS2
|
||||
|
||||
wxOS2 is a port of wxWidgets for the IBM OS/2 Warp3 and Warp4 platforms.
|
||||
This port is currently under construction and in beta phase.
|
||||
|
||||
For further information, please see the files in @c docs/os2
|
||||
in the distribution.
|
||||
|
||||
|
||||
|
||||
@section page_port_wxx11 wxX11
|
||||
|
||||
wxX11 is a port of wxWidgets using X11 (The X Window System) as the underlying
|
||||
|
@@ -54,7 +54,7 @@ wxIcon icon(wxICON(sample));
|
||||
|
||||
There is also a corresponding wxBITMAP() macro which allows to create the
|
||||
bitmaps in much the same way as wxICON() creates icons. It assumes that bitmaps
|
||||
live in resources under Windows or OS2 and XPM files under all other platforms
|
||||
live in resources under Windows and XPM files under all other platforms
|
||||
(for XPMs, the corresponding file must be included before this macro is used,
|
||||
of course, and the name of the bitmap should be the same as the resource name
|
||||
under Windows with @c _xpm suffix). For example:
|
||||
@@ -64,7 +64,7 @@ under Windows with @c _xpm suffix). For example:
|
||||
wxBitmap bmp(wxBITMAP(bmpname));
|
||||
|
||||
// which is roughly equivalent to the following
|
||||
#if defined(__WXMSW__) || defined(__WXPM__)
|
||||
#if defined(__WXMSW__)
|
||||
wxBitmap bmp("bmpname", wxBITMAP_TYPE_BMP_RESOURCE);
|
||||
#else // Unix
|
||||
wxBitmap bmp(bmpname_xpm, wxBITMAP_TYPE_XPM);
|
||||
|
@@ -2415,7 +2415,6 @@ Possible elemental values are:
|
||||
@itemdef{ @c win, Windows }
|
||||
@itemdef{ @c mac, Mac OS X (or Mac Classic in wxWidgets version supporting it) }
|
||||
@itemdef{ @c unix, Any Unix platform @em except OS X }
|
||||
@itemdef{ @c os2, OS/2 }
|
||||
@endDefList
|
||||
|
||||
Examples:
|
||||
|
Reference in New Issue
Block a user