Remove support for wxMotif
This port hasn't been updated for ages and is not used by anybody any longer, so remove its code to facilitate maintenance. Also remove references to this port from the documentation and most of the other places (VMS-specific descrip.vms files still check for it because it's not clear how to update them all), including configure. Regenerate the latter and rebake all makefiles. Finally document that this port is not available any longer.
This commit is contained in:
parent
041060d0de
commit
0ef1cdcc21
437 changed files with 411 additions and 44740 deletions
|
|
@ -35,7 +35,7 @@
|
|||
// resources
|
||||
// --------------------------------------------------------------------------
|
||||
|
||||
#if defined(__WXGTK__) || defined(__WXMOTIF__) || defined(__WXMAC__) || defined(__WXMGL__) || defined(__WXX11__) || defined(__WXQT__)
|
||||
#if defined(__WXGTK__) || defined(__WXMAC__) || defined(__WXMGL__) || defined(__WXX11__) || defined(__WXQT__)
|
||||
// application icon
|
||||
#include "mondrian.xpm"
|
||||
|
||||
|
|
@ -163,11 +163,6 @@ bool LifeApp::OnInit()
|
|||
// show it
|
||||
frame->Show(true);
|
||||
|
||||
// just for Motif
|
||||
#ifdef __WXMOTIF__
|
||||
frame->UpdateInfoText();
|
||||
#endif
|
||||
|
||||
// enter the main message loop and run the app
|
||||
return true;
|
||||
}
|
||||
|
|
@ -623,7 +618,7 @@ LifeNavigator::LifeNavigator(wxWindow *parent)
|
|||
bmpe = wxBITMAP(east),
|
||||
bmps = wxBITMAP(south);
|
||||
|
||||
#if !defined(__WXGTK__) && !defined(__WXMOTIF__) && !defined(__WXMAC__)
|
||||
#if !defined(__WXGTK__) && !defined(__WXMAC__)
|
||||
bmpn.SetMask(new wxMask(bmpn, *wxLIGHT_GREY));
|
||||
bmpw.SetMask(new wxMask(bmpw, *wxLIGHT_GREY));
|
||||
bmpc.SetMask(new wxMask(bmpc, *wxLIGHT_GREY));
|
||||
|
|
@ -1093,8 +1088,8 @@ void LifeCanvas::OnScroll(wxScrollWinEvent& event)
|
|||
m_thumbY = m_viewportH;
|
||||
}
|
||||
|
||||
#if defined(__WXGTK__) || defined(__WXMOTIF__)
|
||||
// wxGTK and wxMotif update the thumb automatically (wxMSW doesn't);
|
||||
#if defined(__WXGTK__)
|
||||
// wxGTK updates the thumb automatically (wxMSW doesn't);
|
||||
// so reset it back as we always want it to be in the same position.
|
||||
if (type != wxEVT_SCROLLWIN_THUMBTRACK)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue