Added configure support for wxMicroWindows.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13150 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
34
configure.in
34
configure.in
@@ -419,13 +419,14 @@ CPP_MT_FLAG=-D_REENTRANT
|
||||
dnl the list of all available toolkits
|
||||
dnl
|
||||
dnl update NUM_TOOLKITS calculation below when adding a new toolkit here!
|
||||
ALL_TOOLKITS="GTK MAC MGL MOTIF MSW PM WINE"
|
||||
ALL_TOOLKITS="GTK MAC MGL MICROWIN MOTIF MSW PM WINE"
|
||||
|
||||
dnl NB: these wxUSE_XXX constants have value of 0 or 1 unlike all the other ones
|
||||
dnl which are either yes or no
|
||||
DEFAULT_wxUSE_GTK=0
|
||||
DEFAULT_wxUSE_MAC=0
|
||||
DEFAULT_wxUSE_MGL=0
|
||||
DEFAULT_wxUSE_MICROWIN=0
|
||||
DEFAULT_wxUSE_MOTIF=0
|
||||
DEFAULT_wxUSE_MSW=0
|
||||
DEFAULT_wxUSE_PM=0
|
||||
@@ -437,6 +438,7 @@ dnl nothing was found in the cache
|
||||
DEFAULT_DEFAULT_wxUSE_GTK=0
|
||||
DEFAULT_DEFAULT_wxUSE_MAC=0
|
||||
DEFAULT_DEFAULT_wxUSE_MGL=0
|
||||
DEFAULT_DEFAULT_wxUSE_MICROWIN=0
|
||||
DEFAULT_DEFAULT_wxUSE_MOTIF=0
|
||||
DEFAULT_DEFAULT_wxUSE_MSW=0
|
||||
DEFAULT_DEFAULT_wxUSE_PM=0
|
||||
@@ -1011,6 +1013,7 @@ AC_ARG_WITH(wine, [ --with-wine use WINE], [wxUSE_WINE="$w
|
||||
AC_ARG_WITH(msw, [ --with-msw use MS-Windows], [wxUSE_MSW="$withval" CACHE_MSW TOOLKIT_GIVEN=1])
|
||||
AC_ARG_WITH(pm, [ --with-pm use OS/2 Presentation Manager], [wxUSE_PM="$withval" CACHE_PM=1 TOOLKIT_GIVEN=1])
|
||||
AC_ARG_WITH(mgl, [ --with-mgl use SciTech MGL], [wxUSE_MGL="$withval" CACHE_MGL=1 TOOLKIT_GIVEN=1])
|
||||
AC_ARG_WITH(microwin, [ --with-microwin use MicroWindows], [wxUSE_MICROWIN="$withval" CACHE_MICROWIN=1 TOOLKIT_GIVEN=1])
|
||||
|
||||
AC_ARG_ENABLE(gtk2, [ --enable-gtk2 use GTK+ 2.0 if available (EXPERIMENTAL)],wxUSE_GTK2=1,wxUSE_GTK2=0)
|
||||
|
||||
@@ -1371,7 +1374,7 @@ if test "$wxUSE_GUI" = "yes"; then
|
||||
dnl we suppose that expr is available (maybe there is a better way to do
|
||||
dnl this? what about using ALL_TOOLKITS? TODO)
|
||||
NUM_TOOLKITS=`expr ${wxUSE_GTK:-0} + ${wxUSE_MOTIF:-0} + ${wxUSE_MAC:-0} \
|
||||
+ ${wxUSE_WINE:-0} + ${wxUSE_MSW:-0} + ${wxUSE_MGL:-0}`
|
||||
+ ${wxUSE_WINE:-0} + ${wxUSE_MSW:-0} + ${wxUSE_MGL:-0} + ${wxUSE_MICROWIN:-0}`
|
||||
|
||||
dnl Allow wxUSE_PM only for OS/2 with EMX.
|
||||
dnl Path separator; ':' for unix.
|
||||
@@ -2087,6 +2090,31 @@ equivalent variable and GTK+ is version 1.2.3 or above.
|
||||
GUIDIST=MGL_DIST
|
||||
fi
|
||||
|
||||
if test "$wxUSE_MICROWIN" = 1; then
|
||||
AC_MSG_CHECKING(for MicroWindows)
|
||||
if test "x$MICROWINDOWS" = x ; then
|
||||
AC_MSG_RESULT(not found)
|
||||
AC_MSG_ERROR([Cannot find MicroWindows library. Make sure MICROWINDOWS is set.])
|
||||
else
|
||||
AC_MSG_RESULT($MICROWINDOWS)
|
||||
fi
|
||||
|
||||
if test -f $MICROWINDOWS/lib/libmwin.a; then
|
||||
AC_MSG_RESULT(MicroWindows' libraries found.)
|
||||
else
|
||||
AC_MSG_ERROR([Cannot find MicroWindows libraries, make sure they are compiled.])
|
||||
fi
|
||||
|
||||
TOOLKIT_INCLUDE="-I$MICROWINDOWS/include"
|
||||
GUI_TK_LIBRARY="-L$MICROWINDOWS/lib -lmwin -lmwengine -mwfonts -mwdrivers -mwinlib"
|
||||
|
||||
AFMINSTALL=afminstall
|
||||
TOOLKIT=MICROWIN
|
||||
GUIDIST=MICROWIN_DIST
|
||||
|
||||
TOOLCHAIN_DEFS="${TOOLCHAIN_DEFS} -D__WXUNIVERSAL__ -D__WXMSW__ -D__WIN95__ -D__WIN32__ -DMWIN -DMICROWIN_NOCONTROLS -DMICROWIN_TODO=1"
|
||||
fi
|
||||
|
||||
if test "$wxUSE_WINE" = 1; then
|
||||
AC_CHECK_HEADER(windows.h, [],
|
||||
[
|
||||
@@ -4792,7 +4820,7 @@ if test "$GXX" = yes ; then
|
||||
fi
|
||||
fi
|
||||
|
||||
EXTRA_CFLAGS="$WXDEBUG $WXODBCFLAG$PROFILE $OPTIMISE $INCLUDES"
|
||||
EXTRA_CFLAGS="$WXDEBUG $WXODBCFLAG $PROFILE $OPTIMISE $INCLUDES"
|
||||
|
||||
CFLAGS=`echo $CFLAGS $EXTRA_CFLAGS $CXXWARNINGS | sed 's/ \\+/ /g'`
|
||||
CXXFLAGS=`echo $CXXFLAGS $EXTRA_CFLAGS $CXXWARNINGS | sed 's/ \+/ /g'`
|
||||
|
@@ -45,6 +45,12 @@ $(MSW_MAKEFILES_DIR)/makefile.g95: g95.t filelist.txt wxwin.pro
|
||||
$(WXDIR)/src/msw/files.lst: msw.t filelist.txt wxwin.pro
|
||||
$(TMAKE) -t msw wxwin.pro -o $@
|
||||
|
||||
$(WXDIR)/src/gtk/files.lst: mgl.t filelist.txt wxwin.pro
|
||||
$(TMAKE) -t mgl wxwin.pro -o $@
|
||||
|
||||
$(WXDIR)/src/gtk/files.lst: micro.t filelist.txt wxwin.pro
|
||||
$(TMAKE) -t micro wxwin.pro -o $@
|
||||
|
||||
$(WXDIR)/src/gtk/files.lst: gtk.t filelist.txt wxwin.pro
|
||||
$(TMAKE) -t gtk wxwin.pro -o $@
|
||||
|
||||
|
@@ -68,6 +68,8 @@
|
||||
$wxUNIV{$filename} = $fileflags;
|
||||
} elsif ( $filetype eq "MGL" ) {
|
||||
$wxMGL{$filename} = $fileflags;
|
||||
} elsif ( $filetype eq "Micro" ) {
|
||||
$wxMICRO{$filename} = $fileflags;
|
||||
} elsif ( $filetype eq "OS2" ) {
|
||||
$wxOS2PM{$filename} = $fileflags;
|
||||
} elsif ( $filetype eq "HTML" ) {
|
||||
|
@@ -17,6 +17,7 @@
|
||||
# Unix /src/unix
|
||||
# GTK /src/gtk
|
||||
# MGL /src/mgl
|
||||
# Micro /src/msw for MicroWindows
|
||||
# OS2 /src/os2
|
||||
# HTML /src/html
|
||||
#
|
||||
@@ -52,6 +53,7 @@
|
||||
# NotMSW Not required for the MSW port
|
||||
# NotMac Not required for the MAC port under Mac OS X
|
||||
# NotMGL Not required for the MGL port
|
||||
# NotMicro Not required for the MicroWindows port
|
||||
# NotGTK Not required for the GTK port
|
||||
# NotX Not required for the Motif port
|
||||
# NotOS2 Not required for the os2Pm port
|
||||
@@ -86,9 +88,9 @@ laywin.cpp Generic
|
||||
listctrl.cpp Generic NotWin32
|
||||
logg.cpp Generic
|
||||
msgdlgg.cpp Generic Generic
|
||||
notebook.cpp Generic NotWin32,NotGTK,NotOS2,NotMGL,NotMac
|
||||
notebook.cpp Generic NotWin32,NotGTK,NotOS2,NotMGL,NotMac,NotMicro
|
||||
numdlgg.cpp Generic
|
||||
paletteg.cpp Generic NotMSW,NotX,NotOS2,NotMGL,NotMac
|
||||
paletteg.cpp Generic NotMSW,NotX,NotOS2,NotMGL,NotMac,NotMicro
|
||||
panelg.cpp Generic
|
||||
printps.cpp Generic NotMSW
|
||||
prntdlgg.cpp Generic NotMSW
|
||||
@@ -101,8 +103,8 @@ scrlwing.cpp Generic
|
||||
spinctlg.cpp Generic
|
||||
splash.cpp Generic
|
||||
splitter.cpp Generic
|
||||
statline.cpp Generic NotMSW,NotGTK,NotOS2,NotMGL,NotMac
|
||||
statusbr.cpp Generic NotMGL
|
||||
statline.cpp Generic NotMSW,NotGTK,NotOS2,NotMGL,NotMac,NotMicro
|
||||
statusbr.cpp Generic NotMGL,NotMicro
|
||||
tabg.cpp Generic NotWin32,NotOS2
|
||||
tbarsmpl.cpp Generic
|
||||
textdlgg.cpp Generic
|
||||
@@ -350,8 +352,8 @@ window.cpp MSW LowLevel
|
||||
|
||||
dialup.cpp Unix NotMac
|
||||
dir.cpp Unix Base,NotMac,NotMGL
|
||||
fontenum.cpp Unix NotMac,NotMGL
|
||||
fontutil.cpp Unix NotMac,NotMGL
|
||||
fontenum.cpp Unix NotMac,NotMGL,NotMicro
|
||||
fontutil.cpp Unix NotMac,NotMGL,NotMicro
|
||||
gsocket.c Unix Base,NotMac
|
||||
mimetype.cpp Unix Base,NotMac
|
||||
snglinst.cpp Unix Base
|
||||
@@ -1461,6 +1463,37 @@ window.cpp MGL LowLevel
|
||||
utils.cpp MGL LowLevel
|
||||
bmpbase.cpp MGL LowLevel
|
||||
|
||||
#wxMicroWindows
|
||||
app.cpp Micro LowLevel
|
||||
bitmap.cpp Micro LowLevel
|
||||
brush.cpp Micro LowLevel
|
||||
caret.cpp Micro LowLevel
|
||||
colour.cpp Micro LowLevel
|
||||
cursor.cpp Micro LowLevel
|
||||
data.cpp Micro LowLevel
|
||||
dc.cpp Micro LowLevel
|
||||
dcclient.cpp Micro LowLevel
|
||||
dcmemory.cpp Micro LowLevel
|
||||
dcprint.cpp Micro LowLevel
|
||||
dcscreen.cpp Micro LowLevel
|
||||
evtloop.cpp Micro LowLevel
|
||||
font.cpp Micro LowLevel
|
||||
fontenum.cpp Micro LowLevel
|
||||
fontutil.cpp Micro LowLevel
|
||||
gdiimage.cpp Micro LowLevel
|
||||
gdiobj.cpp Micro LowLevel
|
||||
icon.cpp Micro LowLevel
|
||||
main.cpp Micro LowLevel
|
||||
microwin.cpp Micro LowLevel
|
||||
pen.cpp Micro LowLevel
|
||||
region.cpp Micro LowLevel
|
||||
settings.cpp Micro LowLevel
|
||||
snglinst.cpp Micro LowLevel
|
||||
timer.cpp Micro LowLevel
|
||||
toplevel.cpp Micro LowLevel
|
||||
utils.cpp Micro LowLevel
|
||||
window.cpp Micro LowLevel
|
||||
|
||||
apprsrc.r MacR
|
||||
carbrsrc.r MacR
|
||||
corersrc.r MacR
|
||||
|
@@ -62,6 +62,8 @@ echo Generating for Watcom C++...
|
||||
%tmakecmd% -t wat wxwin.pro -o %WXDIR%\src\msw\makefile.wat
|
||||
echo Generating for Unix and Configure...
|
||||
%tmakecmd% -t gtk wxwin.pro -o %WXDIR%\src\gtk\files.lst
|
||||
%tmakecmd% -t mgl wxwin.pro -o %WXDIR%\src\mgl\files.lst
|
||||
%tmakecmd% -t micro wxwin.pro -o %WXDIR%\src\micro\files.lst
|
||||
%tmakecmd% -t univ wxwin.pro -o %WXDIR%\src\univ\files.lst
|
||||
%tmakecmd% -t msw wxwin.pro -o %WXDIR%\src\msw\files.lst
|
||||
%tmakecmd% -t mac wxwin.pro -o %WXDIR%\src\mac\files.lst
|
||||
|
@@ -67,6 +67,14 @@ do
|
||||
echo "Generating $topdir/src/gtk/files.lst for GTK and Configure..."
|
||||
tmake -t gtk wxwin.pro -o $topdir/src/gtk/files.lst;;
|
||||
|
||||
mgl.t)
|
||||
echo "Generating $topdir/src/mgl/files.lst for MGL and Configure..."
|
||||
tmake -t mgl wxwin.pro -o $topdir/src/mgl/files.lst;;
|
||||
|
||||
micro.t)
|
||||
echo "Generating $topdir/src/micro/files.lst for MicroWindows and Configure..."
|
||||
tmake -t micro wxwin.pro -o $topdir/src/micro/files.lst;;
|
||||
|
||||
msw.t)
|
||||
echo "Generating $topdir/src/msw/files.lst for MSW and Configure..."
|
||||
tmake -t msw wxwin.pro -o $topdir/src/msw/files.lst;;
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#!################################################################################
|
||||
#! File: gtk.t
|
||||
#! Purpose: tmake template file from which src/gtk/files.lst containing the
|
||||
#! list of files for wxGTK library is generated by tmake
|
||||
#! File: mgl.t
|
||||
#! Purpose: tmake template file from which src/mgl/files.lst containing the
|
||||
#! list of files for wxMGL library is generated by tmake
|
||||
#! Author: Vadim Zeitlin
|
||||
#! Created: 28.01.00
|
||||
#! Version: $Id$
|
||||
@@ -65,8 +65,8 @@
|
||||
$project{"MGL_HEADERS"} .= $file . " "
|
||||
}
|
||||
|
||||
foreach $file (sort keys %wxGTKINCLUDE) {
|
||||
$project{"MGL_HEADERS"} .= "gtk/" . $file . " "
|
||||
foreach $file (sort keys %wxMGLINCLUDE) {
|
||||
$project{"MGL_HEADERS"} .= "mgl/" . $file . " "
|
||||
}
|
||||
|
||||
foreach $file (sort keys %wxGENERICINCLUDE) {
|
||||
@@ -86,7 +86,7 @@
|
||||
}
|
||||
#$}
|
||||
# This file was automatically generated by tmake at #$ Now()
|
||||
# DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE GTK.T!
|
||||
# DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE MGL.T!
|
||||
ALL_SOURCES = \
|
||||
#$ ExpandList("MGL_SOURCES");
|
||||
|
||||
|
842
src/microwin/files.lst
Normal file
842
src/microwin/files.lst
Normal file
@@ -0,0 +1,842 @@
|
||||
# This file was automatically generated by tmake at 20:25, 2001/12/21
|
||||
# DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE MICRO.T!
|
||||
ALL_SOURCES = \
|
||||
generic/accel.cpp \
|
||||
generic/busyinfo.cpp \
|
||||
generic/calctrl.cpp \
|
||||
generic/caret.cpp \
|
||||
generic/choicdgg.cpp \
|
||||
generic/colrdlgg.cpp \
|
||||
generic/dcpsg.cpp \
|
||||
generic/dirctrlg.cpp \
|
||||
generic/dirdlgg.cpp \
|
||||
generic/dragimgg.cpp \
|
||||
generic/fdrepdlg.cpp \
|
||||
generic/filedlgg.cpp \
|
||||
generic/fontdlgg.cpp \
|
||||
generic/grid.cpp \
|
||||
generic/gridctrl.cpp \
|
||||
generic/gridsel.cpp \
|
||||
generic/helpext.cpp \
|
||||
generic/helphtml.cpp \
|
||||
generic/helpwxht.cpp \
|
||||
generic/imaglist.cpp \
|
||||
generic/laywin.cpp \
|
||||
generic/listctrl.cpp \
|
||||
generic/logg.cpp \
|
||||
generic/msgdlgg.cpp \
|
||||
generic/numdlgg.cpp \
|
||||
generic/panelg.cpp \
|
||||
generic/printps.cpp \
|
||||
generic/prntdlgg.cpp \
|
||||
generic/progdlgg.cpp \
|
||||
generic/prop.cpp \
|
||||
generic/propform.cpp \
|
||||
generic/proplist.cpp \
|
||||
generic/sashwin.cpp \
|
||||
generic/scrlwing.cpp \
|
||||
generic/spinctlg.cpp \
|
||||
generic/splash.cpp \
|
||||
generic/splitter.cpp \
|
||||
generic/tabg.cpp \
|
||||
generic/tbarsmpl.cpp \
|
||||
generic/textdlgg.cpp \
|
||||
generic/tipdlg.cpp \
|
||||
generic/tipwin.cpp \
|
||||
generic/treectlg.cpp \
|
||||
generic/treelay.cpp \
|
||||
generic/wizard.cpp \
|
||||
common/appcmn.cpp \
|
||||
common/choiccmn.cpp \
|
||||
common/clipcmn.cpp \
|
||||
common/clntdata.cpp \
|
||||
common/cmdline.cpp \
|
||||
common/cmdproc.cpp \
|
||||
common/cmndata.cpp \
|
||||
common/config.cpp \
|
||||
common/containr.cpp \
|
||||
common/cshelp.cpp \
|
||||
common/ctrlcmn.cpp \
|
||||
common/ctrlsub.cpp \
|
||||
common/datetime.cpp \
|
||||
common/datstrm.cpp \
|
||||
common/db.cpp \
|
||||
common/dbgrid.cpp \
|
||||
common/dbtable.cpp \
|
||||
common/dcbase.cpp \
|
||||
common/dircmn.cpp \
|
||||
common/dlgcmn.cpp \
|
||||
common/dndcmn.cpp \
|
||||
common/dobjcmn.cpp \
|
||||
common/docmdi.cpp \
|
||||
common/docview.cpp \
|
||||
common/dseldlg.cpp \
|
||||
common/dynarray.cpp \
|
||||
common/dynlib.cpp \
|
||||
common/dynload.cpp \
|
||||
common/effects.cpp \
|
||||
common/encconv.cpp \
|
||||
common/event.cpp \
|
||||
common/extended.c \
|
||||
common/fddlgcmn.cpp \
|
||||
common/ffile.cpp \
|
||||
common/file.cpp \
|
||||
common/fileconf.cpp \
|
||||
common/filefn.cpp \
|
||||
common/filename.cpp \
|
||||
common/filesys.cpp \
|
||||
common/fontcmn.cpp \
|
||||
common/fontmap.cpp \
|
||||
common/framecmn.cpp \
|
||||
common/fs_inet.cpp \
|
||||
common/fs_mem.cpp \
|
||||
common/fs_zip.cpp \
|
||||
common/ftp.cpp \
|
||||
common/gaugecmn.cpp \
|
||||
common/gdicmn.cpp \
|
||||
common/geometry.cpp \
|
||||
common/gifdecod.cpp \
|
||||
common/hash.cpp \
|
||||
common/helpbase.cpp \
|
||||
common/http.cpp \
|
||||
common/imagall.cpp \
|
||||
common/imagbmp.cpp \
|
||||
common/image.cpp \
|
||||
common/imaggif.cpp \
|
||||
common/imagjpeg.cpp \
|
||||
common/imagpcx.cpp \
|
||||
common/imagpng.cpp \
|
||||
common/imagpnm.cpp \
|
||||
common/imagtiff.cpp \
|
||||
common/imagxpm.cpp \
|
||||
common/intl.cpp \
|
||||
common/ipcbase.cpp \
|
||||
common/layout.cpp \
|
||||
common/lboxcmn.cpp \
|
||||
common/list.cpp \
|
||||
common/log.cpp \
|
||||
common/longlong.cpp \
|
||||
common/matrix.cpp \
|
||||
common/memory.cpp \
|
||||
common/menucmn.cpp \
|
||||
common/mimecmn.cpp \
|
||||
common/module.cpp \
|
||||
common/mstream.cpp \
|
||||
common/nbkbase.cpp \
|
||||
common/object.cpp \
|
||||
common/odbc.cpp \
|
||||
common/paper.cpp \
|
||||
common/popupcmn.cpp \
|
||||
common/prntbase.cpp \
|
||||
common/process.cpp \
|
||||
common/protocol.cpp \
|
||||
common/quantize.cpp \
|
||||
common/radiocmn.cpp \
|
||||
common/regex.cpp \
|
||||
common/resource.cpp \
|
||||
common/sckaddr.cpp \
|
||||
common/sckfile.cpp \
|
||||
common/sckipc.cpp \
|
||||
common/sckstrm.cpp \
|
||||
common/sizer.cpp \
|
||||
common/socket.cpp \
|
||||
common/statbar.cpp \
|
||||
common/strconv.cpp \
|
||||
common/stream.cpp \
|
||||
common/string.cpp \
|
||||
common/sysopt.cpp \
|
||||
common/tbarbase.cpp \
|
||||
common/textbuf.cpp \
|
||||
common/textcmn.cpp \
|
||||
common/textfile.cpp \
|
||||
common/timercmn.cpp \
|
||||
common/tokenzr.cpp \
|
||||
common/toplvcmn.cpp \
|
||||
common/treebase.cpp \
|
||||
common/txtstrm.cpp \
|
||||
common/unzip.c \
|
||||
common/url.cpp \
|
||||
common/utilscmn.cpp \
|
||||
common/valgen.cpp \
|
||||
common/validate.cpp \
|
||||
common/valtext.cpp \
|
||||
common/variant.cpp \
|
||||
common/wfstream.cpp \
|
||||
common/wincmn.cpp \
|
||||
common/wxchar.cpp \
|
||||
common/wxexpr.cpp \
|
||||
common/xpmdecod.cpp \
|
||||
common/zipstrm.cpp \
|
||||
common/zstream.cpp \
|
||||
msw/app.cpp \
|
||||
msw/bitmap.cpp \
|
||||
msw/brush.cpp \
|
||||
msw/caret.cpp \
|
||||
msw/colour.cpp \
|
||||
msw/cursor.cpp \
|
||||
msw/data.cpp \
|
||||
msw/dc.cpp \
|
||||
msw/dcclient.cpp \
|
||||
msw/dcmemory.cpp \
|
||||
msw/dcprint.cpp \
|
||||
msw/dcscreen.cpp \
|
||||
msw/evtloop.cpp \
|
||||
msw/font.cpp \
|
||||
msw/fontenum.cpp \
|
||||
msw/fontutil.cpp \
|
||||
msw/gdiimage.cpp \
|
||||
msw/gdiobj.cpp \
|
||||
msw/icon.cpp \
|
||||
msw/main.cpp \
|
||||
msw/microwin.cpp \
|
||||
msw/pen.cpp \
|
||||
msw/region.cpp \
|
||||
msw/settings.cpp \
|
||||
msw/snglinst.cpp \
|
||||
msw/timer.cpp \
|
||||
msw/toplevel.cpp \
|
||||
msw/utils.cpp \
|
||||
msw/window.cpp \
|
||||
unix/dialup.cpp \
|
||||
unix/dir.cpp \
|
||||
unix/gsocket.c \
|
||||
unix/mimetype.cpp \
|
||||
unix/snglinst.cpp \
|
||||
unix/threadpsx.cpp \
|
||||
unix/utilsunx.cpp \
|
||||
html/helpctrl.cpp \
|
||||
html/helpdata.cpp \
|
||||
html/helpfrm.cpp \
|
||||
html/htmlcell.cpp \
|
||||
html/htmlfilt.cpp \
|
||||
html/htmlpars.cpp \
|
||||
html/htmltag.cpp \
|
||||
html/htmlwin.cpp \
|
||||
html/htmprint.cpp \
|
||||
html/m_dflist.cpp \
|
||||
html/m_fonts.cpp \
|
||||
html/m_hline.cpp \
|
||||
html/m_image.cpp \
|
||||
html/m_layout.cpp \
|
||||
html/m_links.cpp \
|
||||
html/m_list.cpp \
|
||||
html/m_meta.cpp \
|
||||
html/m_pre.cpp \
|
||||
html/m_tables.cpp \
|
||||
html/winpars.cpp
|
||||
|
||||
ALL_HEADERS = \
|
||||
accel.h \
|
||||
app.h \
|
||||
arrimpl.cpp \
|
||||
bitmap.h \
|
||||
bmpbuttn.h \
|
||||
brush.h \
|
||||
buffer.h \
|
||||
busyinfo.h \
|
||||
button.h \
|
||||
calctrl.h \
|
||||
caret.h \
|
||||
checkbox.h \
|
||||
checklst.h \
|
||||
chkconf.h \
|
||||
choicdlg.h \
|
||||
choice.h \
|
||||
clipbrd.h \
|
||||
clntdata.h \
|
||||
cmdline.h \
|
||||
cmdproc.h \
|
||||
cmndata.h \
|
||||
colordlg.h \
|
||||
colour.h \
|
||||
combobox.h \
|
||||
confbase.h \
|
||||
config.h \
|
||||
containr.h \
|
||||
control.h \
|
||||
cshelp.h \
|
||||
ctrlsub.h \
|
||||
cursor.h \
|
||||
dataobj.h \
|
||||
date.h \
|
||||
datetime.h \
|
||||
datetime.inl \
|
||||
datstrm.h \
|
||||
db.h \
|
||||
dbgrid.h \
|
||||
dbkeyg.h \
|
||||
dbtable.h \
|
||||
dc.h \
|
||||
dcclient.h \
|
||||
dcmemory.h \
|
||||
dcprint.h \
|
||||
dcps.h \
|
||||
dcscreen.h \
|
||||
dde.h \
|
||||
debug.h \
|
||||
defs.h \
|
||||
dialog.h \
|
||||
dialup.h \
|
||||
dir.h \
|
||||
dirdlg.h \
|
||||
dnd.h \
|
||||
docmdi.h \
|
||||
docview.h \
|
||||
dragimag.h \
|
||||
dynarray.h \
|
||||
dynlib.h \
|
||||
dynload.h \
|
||||
encconv.h \
|
||||
event.h \
|
||||
expr.h \
|
||||
fdrepdlg.h \
|
||||
ffile.h \
|
||||
file.h \
|
||||
fileconf.h \
|
||||
filedlg.h \
|
||||
filefn.h \
|
||||
filename.h \
|
||||
filesys.h \
|
||||
font.h \
|
||||
fontdlg.h \
|
||||
fontenc.h \
|
||||
fontenum.h \
|
||||
fontmap.h \
|
||||
fontutil.h \
|
||||
frame.h \
|
||||
fs_inet.h \
|
||||
fs_mem.h \
|
||||
fs_zip.h \
|
||||
gauge.h \
|
||||
gdicmn.h \
|
||||
gdiobj.h \
|
||||
geometry.h \
|
||||
gifdecod.h \
|
||||
glcanvas.h \
|
||||
grid.h \
|
||||
gsocket.h \
|
||||
hash.h \
|
||||
help.h \
|
||||
helpbase.h \
|
||||
helphtml.h \
|
||||
helpwin.h \
|
||||
icon.h \
|
||||
imagbmp.h \
|
||||
image.h \
|
||||
imaggif.h \
|
||||
imagjpeg.h \
|
||||
imaglist.h \
|
||||
imagpcx.h \
|
||||
imagpng.h \
|
||||
imagpnm.h \
|
||||
imagtiff.h \
|
||||
imagxpm.h \
|
||||
intl.h \
|
||||
ioswrap.h \
|
||||
ipcbase.h \
|
||||
isql.h \
|
||||
isqlext.h \
|
||||
joystick.h \
|
||||
layout.h \
|
||||
laywin.h \
|
||||
list.h \
|
||||
listbox.h \
|
||||
listctrl.h \
|
||||
listimpl.cpp \
|
||||
log.h \
|
||||
longlong.h \
|
||||
matrix.h \
|
||||
mdi.h \
|
||||
memconf.h \
|
||||
memory.h \
|
||||
memtext.h \
|
||||
menu.h \
|
||||
menuitem.h \
|
||||
metafile.h \
|
||||
mimetype.h \
|
||||
minifram.h \
|
||||
module.h \
|
||||
msgdlg.h \
|
||||
mstream.h \
|
||||
notebook.h \
|
||||
object.h \
|
||||
odbc.h \
|
||||
ownerdrw.h \
|
||||
palette.h \
|
||||
panel.h \
|
||||
paper.h \
|
||||
pen.h \
|
||||
platform.h \
|
||||
popupwin.h \
|
||||
print.h \
|
||||
printdlg.h \
|
||||
prntbase.h \
|
||||
process.h \
|
||||
progdlg.h \
|
||||
prop.h \
|
||||
propform.h \
|
||||
proplist.h \
|
||||
radiobox.h \
|
||||
radiobut.h \
|
||||
regex.h \
|
||||
region.h \
|
||||
resource.h \
|
||||
sashwin.h \
|
||||
sckaddr.h \
|
||||
sckipc.h \
|
||||
sckstrm.h \
|
||||
scrolbar.h \
|
||||
scrolwin.h \
|
||||
settings.h \
|
||||
sizer.h \
|
||||
slider.h \
|
||||
snglinst.h \
|
||||
socket.h \
|
||||
spinbutt.h \
|
||||
spinctrl.h \
|
||||
splash.h \
|
||||
splitter.h \
|
||||
stack.h \
|
||||
statbmp.h \
|
||||
statbox.h \
|
||||
statline.h \
|
||||
stattext.h \
|
||||
statusbr.h \
|
||||
strconv.h \
|
||||
stream.h \
|
||||
string.h \
|
||||
sysopt.h \
|
||||
tab.h \
|
||||
tabctrl.h \
|
||||
taskbar.h \
|
||||
tbarbase.h \
|
||||
tbarsmpl.h \
|
||||
textbuf.h \
|
||||
textctrl.h \
|
||||
textdlg.h \
|
||||
textfile.h \
|
||||
tglbtn.h \
|
||||
thread.h \
|
||||
time.h \
|
||||
timer.h \
|
||||
tipdlg.h \
|
||||
tipwin.h \
|
||||
tokenzr.h \
|
||||
toolbar.h \
|
||||
tooltip.h \
|
||||
toplevel.h \
|
||||
treebase.h \
|
||||
treectrl.h \
|
||||
txtstrm.h \
|
||||
types.h \
|
||||
url.h \
|
||||
utils.h \
|
||||
valgen.h \
|
||||
validate.h \
|
||||
valtext.h \
|
||||
variant.h \
|
||||
vector.h \
|
||||
version.h \
|
||||
wave.h \
|
||||
wfstream.h \
|
||||
window.h \
|
||||
wizard.h \
|
||||
wx.h \
|
||||
wx_cw.h \
|
||||
wx_cw_cm.h \
|
||||
wx_cw_d.h \
|
||||
wxchar.h \
|
||||
wxexpr.h \
|
||||
wxhtml.h \
|
||||
wxprec.h \
|
||||
xpmdecod.h \
|
||||
zipstrm.h \
|
||||
zstream.h \
|
||||
msw/accel.h \
|
||||
msw/app.h \
|
||||
msw/bitmap.h \
|
||||
msw/bmpbuttn.h \
|
||||
msw/brush.h \
|
||||
msw/button.h \
|
||||
msw/caret.h \
|
||||
msw/checkbox.h \
|
||||
msw/checklst.h \
|
||||
msw/choice.h \
|
||||
msw/clipbrd.h \
|
||||
msw/colordlg.h \
|
||||
msw/colour.h \
|
||||
msw/combobox.h \
|
||||
msw/control.h \
|
||||
msw/curico.h \
|
||||
msw/curicop.h \
|
||||
msw/cursor.h \
|
||||
msw/dc.h \
|
||||
msw/dcclient.h \
|
||||
msw/dcmemory.h \
|
||||
msw/dcprint.h \
|
||||
msw/dcscreen.h \
|
||||
msw/dde.h \
|
||||
msw/dialog.h \
|
||||
msw/dib.h \
|
||||
msw/dibutils.h \
|
||||
msw/dirdlg.h \
|
||||
msw/dragimag.h \
|
||||
msw/enhmeta.h \
|
||||
msw/fdrepdlg.h \
|
||||
msw/filedlg.h \
|
||||
msw/font.h \
|
||||
msw/fontdlg.h \
|
||||
msw/frame.h \
|
||||
msw/gauge95.h \
|
||||
msw/gaugemsw.h \
|
||||
msw/gccpriv.h \
|
||||
msw/gdiimage.h \
|
||||
msw/gdiobj.h \
|
||||
msw/glcanvas.h \
|
||||
msw/helpbest.h \
|
||||
msw/helpchm.h \
|
||||
msw/helpwin.h \
|
||||
msw/icon.h \
|
||||
msw/imaglist.h \
|
||||
msw/iniconf.h \
|
||||
msw/joystick.h \
|
||||
msw/listbox.h \
|
||||
msw/listctrl.h \
|
||||
msw/mdi.h \
|
||||
msw/menu.h \
|
||||
msw/menuitem.h \
|
||||
msw/metafile.h \
|
||||
msw/mimetype.h \
|
||||
msw/minifram.h \
|
||||
msw/msgdlg.h \
|
||||
msw/msvcrt.h \
|
||||
msw/notebook.h \
|
||||
msw/palette.h \
|
||||
msw/pen.h \
|
||||
msw/printdlg.h \
|
||||
msw/printwin.h \
|
||||
msw/private.h \
|
||||
msw/radiobox.h \
|
||||
msw/radiobut.h \
|
||||
msw/regconf.h \
|
||||
msw/region.h \
|
||||
msw/registry.h \
|
||||
msw/scrolbar.h \
|
||||
msw/settings.h \
|
||||
msw/setup0.h \
|
||||
msw/slider95.h \
|
||||
msw/slidrmsw.h \
|
||||
msw/spinbutt.h \
|
||||
msw/spinctrl.h \
|
||||
msw/statbmp.h \
|
||||
msw/statbox.h \
|
||||
msw/statbr95.h \
|
||||
msw/statline.h \
|
||||
msw/stattext.h \
|
||||
msw/tabctrl.h \
|
||||
msw/taskbar.h \
|
||||
msw/tbar95.h \
|
||||
msw/tbarmsw.h \
|
||||
msw/textctrl.h \
|
||||
msw/tglbtn.h \
|
||||
msw/timer.h \
|
||||
msw/tooltip.h \
|
||||
msw/toplevel.h \
|
||||
msw/treectrl.h \
|
||||
msw/wave.h \
|
||||
msw/window.h \
|
||||
msw/winundef.h \
|
||||
generic/accel.h \
|
||||
generic/calctrl.h \
|
||||
generic/caret.h \
|
||||
generic/choicdgg.h \
|
||||
generic/colrdlgg.h \
|
||||
generic/dcpsg.h \
|
||||
generic/dirctrlg.h \
|
||||
generic/dirdlgg.h \
|
||||
generic/dragimgg.h \
|
||||
generic/fdrepdlg.h \
|
||||
generic/filedlgg.h \
|
||||
generic/fontdlgg.h \
|
||||
generic/grid.h \
|
||||
generic/gridctrl.h \
|
||||
generic/gridg.h \
|
||||
generic/helpext.h \
|
||||
generic/helphtml.h \
|
||||
generic/helpwxht.h \
|
||||
generic/imaglist.h \
|
||||
generic/laywin.h \
|
||||
generic/listctrl.h \
|
||||
generic/msgdlgg.h \
|
||||
generic/notebook.h \
|
||||
generic/paletteg.h \
|
||||
generic/panelg.h \
|
||||
generic/printps.h \
|
||||
generic/prntdlgg.h \
|
||||
generic/progdlgg.h \
|
||||
generic/sashwin.h \
|
||||
generic/scrolwin.h \
|
||||
generic/spinctlg.h \
|
||||
generic/splash.h \
|
||||
generic/splitter.h \
|
||||
generic/statusbr.h \
|
||||
generic/tabg.h \
|
||||
generic/textdlgg.h \
|
||||
generic/treectlg.h \
|
||||
generic/wizard.h \
|
||||
unix/execute.h \
|
||||
unix/fontutil.h \
|
||||
unix/gsockunx.h \
|
||||
unix/mimetype.h \
|
||||
html/forcelnk.h \
|
||||
html/helpctrl.h \
|
||||
html/helpdata.h \
|
||||
html/helpfrm.h \
|
||||
html/htmlcell.h \
|
||||
html/htmldefs.h \
|
||||
html/htmlfilt.h \
|
||||
html/htmlpars.h \
|
||||
html/htmltag.h \
|
||||
html/htmlwin.h \
|
||||
html/htmprint.h \
|
||||
html/m_templ.h \
|
||||
html/winpars.h \
|
||||
protocol/file.h \
|
||||
protocol/ftp.h \
|
||||
protocol/http.h \
|
||||
protocol/protocol.h
|
||||
|
||||
COMMONOBJS = \
|
||||
parser.o \
|
||||
appcmn.o \
|
||||
choiccmn.o \
|
||||
clipcmn.o \
|
||||
clntdata.o \
|
||||
cmdline.o \
|
||||
cmdproc.o \
|
||||
cmndata.o \
|
||||
config.o \
|
||||
containr.o \
|
||||
cshelp.o \
|
||||
ctrlcmn.o \
|
||||
ctrlsub.o \
|
||||
datetime.o \
|
||||
datstrm.o \
|
||||
db.o \
|
||||
dbgrid.o \
|
||||
dbtable.o \
|
||||
dcbase.o \
|
||||
dircmn.o \
|
||||
dlgcmn.o \
|
||||
dndcmn.o \
|
||||
dobjcmn.o \
|
||||
docmdi.o \
|
||||
docview.o \
|
||||
dseldlg.o \
|
||||
dynarray.o \
|
||||
dynlib.o \
|
||||
dynload.o \
|
||||
effects.o \
|
||||
encconv.o \
|
||||
event.o \
|
||||
extended.o \
|
||||
fddlgcmn.o \
|
||||
ffile.o \
|
||||
file.o \
|
||||
fileconf.o \
|
||||
filefn.o \
|
||||
filename.o \
|
||||
filesys.o \
|
||||
fontcmn.o \
|
||||
fontmap.o \
|
||||
framecmn.o \
|
||||
fs_inet.o \
|
||||
fs_mem.o \
|
||||
fs_zip.o \
|
||||
ftp.o \
|
||||
gaugecmn.o \
|
||||
gdicmn.o \
|
||||
geometry.o \
|
||||
gifdecod.o \
|
||||
hash.o \
|
||||
helpbase.o \
|
||||
http.o \
|
||||
imagall.o \
|
||||
imagbmp.o \
|
||||
image.o \
|
||||
imaggif.o \
|
||||
imagjpeg.o \
|
||||
imagpcx.o \
|
||||
imagpng.o \
|
||||
imagpnm.o \
|
||||
imagtiff.o \
|
||||
imagxpm.o \
|
||||
intl.o \
|
||||
ipcbase.o \
|
||||
layout.o \
|
||||
lboxcmn.o \
|
||||
list.o \
|
||||
log.o \
|
||||
longlong.o \
|
||||
matrix.o \
|
||||
memory.o \
|
||||
menucmn.o \
|
||||
mimecmn.o \
|
||||
module.o \
|
||||
mstream.o \
|
||||
nbkbase.o \
|
||||
object.o \
|
||||
odbc.o \
|
||||
paper.o \
|
||||
popupcmn.o \
|
||||
prntbase.o \
|
||||
process.o \
|
||||
protocol.o \
|
||||
quantize.o \
|
||||
radiocmn.o \
|
||||
regex.o \
|
||||
resource.o \
|
||||
sckaddr.o \
|
||||
sckfile.o \
|
||||
sckipc.o \
|
||||
sckstrm.o \
|
||||
sizer.o \
|
||||
socket.o \
|
||||
statbar.o \
|
||||
strconv.o \
|
||||
stream.o \
|
||||
string.o \
|
||||
sysopt.o \
|
||||
tbarbase.o \
|
||||
textbuf.o \
|
||||
textcmn.o \
|
||||
textfile.o \
|
||||
timercmn.o \
|
||||
tokenzr.o \
|
||||
toplvcmn.o \
|
||||
treebase.o \
|
||||
txtstrm.o \
|
||||
unzip.o \
|
||||
url.o \
|
||||
utilscmn.o \
|
||||
valgen.o \
|
||||
validate.o \
|
||||
valtext.o \
|
||||
variant.o \
|
||||
wfstream.o \
|
||||
wincmn.o \
|
||||
wxchar.o \
|
||||
wxexpr.o \
|
||||
xpmdecod.o \
|
||||
zipstrm.o \
|
||||
zstream.o
|
||||
|
||||
GENERICOBJS = \
|
||||
accel.o \
|
||||
busyinfo.o \
|
||||
calctrl.o \
|
||||
caret.o \
|
||||
choicdgg.o \
|
||||
colrdlgg.o \
|
||||
dcpsg.o \
|
||||
dirctrlg.o \
|
||||
dirdlgg.o \
|
||||
dragimgg.o \
|
||||
fdrepdlg.o \
|
||||
filedlgg.o \
|
||||
fontdlgg.o \
|
||||
grid.o \
|
||||
gridctrl.o \
|
||||
gridsel.o \
|
||||
helpext.o \
|
||||
helphtml.o \
|
||||
helpwxht.o \
|
||||
imaglist.o \
|
||||
laywin.o \
|
||||
listctrl.o \
|
||||
logg.o \
|
||||
msgdlgg.o \
|
||||
numdlgg.o \
|
||||
panelg.o \
|
||||
printps.o \
|
||||
prntdlgg.o \
|
||||
progdlgg.o \
|
||||
prop.o \
|
||||
propform.o \
|
||||
proplist.o \
|
||||
sashwin.o \
|
||||
scrlwing.o \
|
||||
spinctlg.o \
|
||||
splash.o \
|
||||
splitter.o \
|
||||
tabg.o \
|
||||
tbarsmpl.o \
|
||||
textdlgg.o \
|
||||
tipdlg.o \
|
||||
tipwin.o \
|
||||
treectlg.o \
|
||||
treelay.o \
|
||||
wizard.o
|
||||
|
||||
GUI_LOWLEVEL_OBJS = \
|
||||
app.o \
|
||||
bitmap.o \
|
||||
brush.o \
|
||||
caret.o \
|
||||
colour.o \
|
||||
cursor.o \
|
||||
data.o \
|
||||
dc.o \
|
||||
dcclient.o \
|
||||
dcmemory.o \
|
||||
dcprint.o \
|
||||
dcscreen.o \
|
||||
evtloop.o \
|
||||
font.o \
|
||||
fontenum.o \
|
||||
fontutil.o \
|
||||
gdiimage.o \
|
||||
gdiobj.o \
|
||||
icon.o \
|
||||
main.o \
|
||||
microwin.o \
|
||||
pen.o \
|
||||
region.o \
|
||||
settings.o \
|
||||
snglinst.o \
|
||||
timer.o \
|
||||
toplevel.o \
|
||||
utils.o \
|
||||
window.o
|
||||
|
||||
UNIXOBJS = \
|
||||
dialup.o \
|
||||
dir.o \
|
||||
gsocket.o \
|
||||
mimetype.o \
|
||||
snglinst.o \
|
||||
threadpsx.o \
|
||||
utilsunx.o
|
||||
|
||||
HTMLOBJS = \
|
||||
helpctrl.o \
|
||||
helpdata.o \
|
||||
helpfrm.o \
|
||||
htmlcell.o \
|
||||
htmlfilt.o \
|
||||
htmlpars.o \
|
||||
htmltag.o \
|
||||
htmlwin.o \
|
||||
htmprint.o \
|
||||
m_dflist.o \
|
||||
m_fonts.o \
|
||||
m_hline.o \
|
||||
m_image.o \
|
||||
m_layout.o \
|
||||
m_links.o \
|
||||
m_list.o \
|
||||
m_meta.o \
|
||||
m_pre.o \
|
||||
m_tables.o \
|
||||
winpars.o
|
||||
|
Reference in New Issue
Block a user