Committing in .
wxMOTIF updates for OpenVMS Modified Files: wxWindows/setup.h_vms wxWindows/src/generic/descrip.mms wxWindows/src/motif/descrip.mms wxWindows/src/motif/glcanvas.cpp ---------------------------------------------------------------------- git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13499 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -213,7 +213,11 @@
|
|||||||
/*
|
/*
|
||||||
* Use wxPopupWindow (useful in wxUniv only for now)
|
* Use wxPopupWindow (useful in wxUniv only for now)
|
||||||
*/
|
*/
|
||||||
|
#ifdef __WXMOTIF__
|
||||||
|
#define wxUSE_POPUPWIN 0
|
||||||
|
#else
|
||||||
#define wxUSE_POPUPWIN 1
|
#define wxUSE_POPUPWIN 1
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Use wxTipWindow
|
Use wxTipWindow
|
||||||
@@ -666,7 +670,11 @@
|
|||||||
/*
|
/*
|
||||||
* Use tooltips
|
* Use tooltips
|
||||||
*/
|
*/
|
||||||
|
#ifdef __WXMOTIF__
|
||||||
|
#define wxUSE_TOOLTIPS 0
|
||||||
|
#else
|
||||||
#define wxUSE_TOOLTIPS 1
|
#define wxUSE_TOOLTIPS 1
|
||||||
|
#endif
|
||||||
/*
|
/*
|
||||||
* Use dnd
|
* Use dnd
|
||||||
*/
|
*/
|
||||||
|
@@ -31,7 +31,6 @@ CC_DEFINE =
|
|||||||
cc $(CFLAGS)$(CC_DEFINE) $(MMS$TARGET_NAME).c
|
cc $(CFLAGS)$(CC_DEFINE) $(MMS$TARGET_NAME).c
|
||||||
|
|
||||||
OBJECTS = \
|
OBJECTS = \
|
||||||
accel.obj,\
|
|
||||||
busyinfo.obj,\
|
busyinfo.obj,\
|
||||||
calctrl.obj,\
|
calctrl.obj,\
|
||||||
caret.obj,\
|
caret.obj,\
|
||||||
@@ -119,10 +118,9 @@ SOURCES = \
|
|||||||
wizard.cpp
|
wizard.cpp
|
||||||
|
|
||||||
.ifdef __WXMOTIF__
|
.ifdef __WXMOTIF__
|
||||||
OBJECTS0=,statline.obj,\
|
OBJECTS0=,statline.obj,notebook.obj,scrlwing.obj,spinctlg.obj
|
||||||
notebook.obj
|
|
||||||
.else
|
.else
|
||||||
OBJECTS0=,filedlgg.obj,paletteg.obj
|
OBJECTS0=,accel.obj,filedlgg.obj,paletteg.obj
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
all : $(SOURCES)
|
all : $(SOURCES)
|
||||||
@@ -168,6 +166,8 @@ progdlgg.obj : progdlgg.cpp
|
|||||||
prop.obj : prop.cpp
|
prop.obj : prop.cpp
|
||||||
propform.obj : propform.cpp
|
propform.obj : propform.cpp
|
||||||
proplist.obj : proplist.cpp
|
proplist.obj : proplist.cpp
|
||||||
|
scrlwing.obj : scrlwing.cpp
|
||||||
|
spinctlg.obj : spinctlg.cpp
|
||||||
sashwin.obj : sashwin.cpp
|
sashwin.obj : sashwin.cpp
|
||||||
splitter.obj : splitter.cpp
|
splitter.obj : splitter.cpp
|
||||||
statline.obj : statline.cpp
|
statline.obj : statline.cpp
|
||||||
|
@@ -51,6 +51,7 @@ OBJECTS = \
|
|||||||
frame.obj,\
|
frame.obj,\
|
||||||
gauge.obj,\
|
gauge.obj,\
|
||||||
gdiobj.obj,\
|
gdiobj.obj,\
|
||||||
|
glcanvas.obj,\
|
||||||
gsockmot.obj,\
|
gsockmot.obj,\
|
||||||
icon.obj,\
|
icon.obj,\
|
||||||
listbox.obj,\
|
listbox.obj,\
|
||||||
@@ -105,6 +106,7 @@ SOURCES = \
|
|||||||
frame.cpp,\
|
frame.cpp,\
|
||||||
gauge.cpp,\
|
gauge.cpp,\
|
||||||
gdiobj.cpp,\
|
gdiobj.cpp,\
|
||||||
|
glcanvas.cpp,\
|
||||||
gsockmot.c,\
|
gsockmot.c,\
|
||||||
icon.cpp,\
|
icon.cpp,\
|
||||||
listbox.cpp,\
|
listbox.cpp,\
|
||||||
@@ -168,6 +170,7 @@ font.obj : font.cpp
|
|||||||
frame.obj : frame.cpp
|
frame.obj : frame.cpp
|
||||||
gauge.obj : gauge.cpp
|
gauge.obj : gauge.cpp
|
||||||
gdiobj.obj : gdiobj.cpp
|
gdiobj.obj : gdiobj.cpp
|
||||||
|
glcanvas.obj : glcanvas.cpp
|
||||||
gsockmot.obj : gsockmot.c
|
gsockmot.obj : gsockmot.c
|
||||||
icon.obj : icon.cpp
|
icon.obj : icon.cpp
|
||||||
listbox.obj : listbox.cpp
|
listbox.obj : listbox.cpp
|
||||||
|
@@ -22,7 +22,13 @@
|
|||||||
#include "wx/utils.h"
|
#include "wx/utils.h"
|
||||||
#include "wx/app.h"
|
#include "wx/app.h"
|
||||||
|
|
||||||
|
#ifdef __VMS
|
||||||
|
# pragma message disable nosimpint
|
||||||
|
#endif
|
||||||
#include <Xm/Xm.h>
|
#include <Xm/Xm.h>
|
||||||
|
#ifdef __VMS
|
||||||
|
# pragma message enable nosimpint
|
||||||
|
#endif
|
||||||
#include "wx/motif/private.h"
|
#include "wx/motif/private.h"
|
||||||
|
|
||||||
#ifdef OLD_MESA
|
#ifdef OLD_MESA
|
||||||
|
Reference in New Issue
Block a user