VC++ project file updates; minor sashwindow/splitterwindow cursor mods
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5908 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -120,10 +120,10 @@ void wxSashWindow::OnMouseEvent(wxMouseEvent& event)
|
|||||||
|
|
||||||
if (event.LeftDown())
|
if (event.LeftDown())
|
||||||
{
|
{
|
||||||
|
CaptureMouse();
|
||||||
|
|
||||||
if ( sashHit != wxSASH_NONE )
|
if ( sashHit != wxSASH_NONE )
|
||||||
{
|
{
|
||||||
CaptureMouse();
|
|
||||||
|
|
||||||
// Required for X to specify that
|
// Required for X to specify that
|
||||||
// that we wish to draw on top of all windows
|
// that we wish to draw on top of all windows
|
||||||
// - and we optimise by specifying the area
|
// - and we optimise by specifying the area
|
||||||
@@ -145,6 +145,15 @@ void wxSashWindow::OnMouseEvent(wxMouseEvent& event)
|
|||||||
m_draggingEdge = sashHit;
|
m_draggingEdge = sashHit;
|
||||||
m_firstX = x;
|
m_firstX = x;
|
||||||
m_firstY = y;
|
m_firstY = y;
|
||||||
|
|
||||||
|
if ( (sashHit == wxSASH_LEFT) || (sashHit == wxSASH_RIGHT) )
|
||||||
|
{
|
||||||
|
SetCursor(*m_sashCursorWE);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
SetCursor(*m_sashCursorNS);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if ( event.LeftUp() && m_dragMode == wxSASH_DRAG_LEFT_DOWN )
|
else if ( event.LeftUp() && m_dragMode == wxSASH_DRAG_LEFT_DOWN )
|
||||||
@@ -277,6 +286,10 @@ void wxSashWindow::OnMouseEvent(wxMouseEvent& event)
|
|||||||
event.SetDragRect(dragRect);
|
event.SetDragRect(dragRect);
|
||||||
GetEventHandler()->ProcessEvent(event);
|
GetEventHandler()->ProcessEvent(event);
|
||||||
}
|
}
|
||||||
|
else if ( event.LeftUp() )
|
||||||
|
{
|
||||||
|
ReleaseMouse();
|
||||||
|
}
|
||||||
else if (event.Moving() && !event.Dragging())
|
else if (event.Moving() && !event.Dragging())
|
||||||
{
|
{
|
||||||
// Just change the cursor if required
|
// Just change the cursor if required
|
||||||
|
@@ -189,6 +189,15 @@ void wxSplitterWindow::OnMouseEvent(wxMouseEvent& event)
|
|||||||
|
|
||||||
m_oldX = x;
|
m_oldX = x;
|
||||||
m_oldY = y;
|
m_oldY = y;
|
||||||
|
|
||||||
|
if ( m_splitMode == wxSPLIT_VERTICAL )
|
||||||
|
{
|
||||||
|
SetCursor(*m_sashCursorWE);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
SetCursor(*m_sashCursorNS);
|
||||||
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -282,6 +291,19 @@ void wxSplitterWindow::OnMouseEvent(wxMouseEvent& event)
|
|||||||
}
|
}
|
||||||
else if (event.Dragging() && (m_dragMode == wxSPLIT_DRAG_DRAGGING))
|
else if (event.Dragging() && (m_dragMode == wxSPLIT_DRAG_DRAGGING))
|
||||||
{
|
{
|
||||||
|
#ifdef __WXMSW__
|
||||||
|
// Otherwise, the cursor sometimes reverts to the normal cursor
|
||||||
|
// during dragging.
|
||||||
|
if ( m_splitMode == wxSPLIT_VERTICAL )
|
||||||
|
{
|
||||||
|
SetCursor(*m_sashCursorWE);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
SetCursor(*m_sashCursorNS);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
// Obtain window size. We are only interested in the dimension the sash
|
// Obtain window size. We are only interested in the dimension the sash
|
||||||
// splits up
|
// splits up
|
||||||
int new_sash_position =
|
int new_sash_position =
|
||||||
|
@@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
# If using Cygwin, set this to 0.
|
# If using Cygwin, set this to 0.
|
||||||
# If using Mingw32, set this to 1.
|
# If using Mingw32, set this to 1.
|
||||||
MINGW32=1
|
MINGW32=0
|
||||||
|
|
||||||
# Set to the version you have
|
# Set to the version you have
|
||||||
MINGW32VERSION=2.95
|
MINGW32VERSION=2.95
|
||||||
@@ -28,7 +28,12 @@ LD_SUPPORTS_SHARED=yes
|
|||||||
RM=rm -f
|
RM=rm -f
|
||||||
|
|
||||||
# Set to the appropriate copy command
|
# Set to the appropriate copy command
|
||||||
|
# Some possible alternatives:
|
||||||
|
# COPY=cp and COPYSEP=/
|
||||||
|
# COPY=copy and COPYSEP=\
|
||||||
|
#
|
||||||
COPY=copy
|
COPY=copy
|
||||||
|
COPYSEP=\
|
||||||
|
|
||||||
# Cross compiling? Provide the target prefix (eg., i386-mingw32-)
|
# Cross compiling? Provide the target prefix (eg., i386-mingw32-)
|
||||||
# CROSS=i386-mingw32-
|
# CROSS=i386-mingw32-
|
||||||
@@ -71,7 +76,9 @@ RCINPUTSWITCH=-i
|
|||||||
RCOUTPUTSWITCH=-o
|
RCOUTPUTSWITCH=-o
|
||||||
RCINCSWITCH=--include-dir
|
RCINCSWITCH=--include-dir
|
||||||
RCDEFSWITCH=--define
|
RCDEFSWITCH=--define
|
||||||
RCPREPROCESSOR=--preprocessor "$(CC) -c -E -xc-header -DRC_INVOKED"
|
# Note that this can cause windres to fail (Win95/98 problem?)
|
||||||
|
# but commenting out RCPREPROCESSOR then does the trick.
|
||||||
|
#RCPREPROCESSOR=--preprocessor "$(CC) -c -E -xc-header -DRC_INVOKED"
|
||||||
|
|
||||||
RESFLAGS=$(RCPREPROCESSOR) $(RCINCSWITCH) $(WXDIR)/include $(RCDEFSWITCH) __WIN32__ $(RCDEFSWITCH) __WIN95__ $(RCDEFSWITCH) __GNUWIN32__
|
RESFLAGS=$(RCPREPROCESSOR) $(RCINCSWITCH) $(WXDIR)/include $(RCDEFSWITCH) __WIN32__ $(RCDEFSWITCH) __WIN95__ $(RCDEFSWITCH) __GNUWIN32__
|
||||||
|
|
||||||
|
69
src/wxvc.dsp
69
src/wxvc.dsp
@@ -508,7 +508,7 @@ SOURCE=.\generic\choicdgg.cpp
|
|||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\generic\gridg.cpp
|
SOURCE=.\generic\grid.cpp
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
@@ -632,11 +632,11 @@ SOURCE=.\html\htmprint.cpp
|
|||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\html\m_fonts.cpp
|
SOURCE=.\html\m_dflist.cpp
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\html\m_meta.cpp
|
SOURCE=.\html\m_fonts.cpp
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
@@ -660,7 +660,7 @@ SOURCE=.\html\m_list.cpp
|
|||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\html\m_dflist.cpp
|
SOURCE=.\html\m_meta.cpp
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
@@ -1197,134 +1197,97 @@ SOURCE=.\png\pngwutil.c
|
|||||||
# PROP Default_Filter ""
|
# PROP Default_Filter ""
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\xpm\crbuffri.c
|
SOURCE=.\xpm\attrib.c
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\xpm\crbuffrp.c
|
SOURCE=.\xpm\crbuffri.c
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\xpm\crdatfri.c
|
SOURCE=.\xpm\crdatfri.c
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\xpm\crdatfrp.c
|
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\xpm\create.c
|
SOURCE=.\xpm\create.c
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\xpm\crifrbuf.c
|
SOURCE=.\xpm\crifrbuf.c
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\xpm\crifrdat.c
|
SOURCE=.\xpm\crifrdat.c
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\xpm\crpfrbuf.c
|
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\xpm\crpfrdat.c
|
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\xpm\dataxpm.c
|
SOURCE=.\xpm\dataxpm.c
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\xpm\hashtab.c
|
SOURCE=.\xpm\hashtab.c
|
||||||
# ADD CPP /D "FOR_MSW"
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\xpm\imagexpm.c
|
||||||
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\xpm\info.c
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\xpm\misc.c
|
SOURCE=.\xpm\misc.c
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\xpm\parse.c
|
SOURCE=.\xpm\parse.c
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\xpm\rdftodat.c
|
SOURCE=.\xpm\rdftodat.c
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\xpm\rdftoi.c
|
SOURCE=.\xpm\rdftoi.c
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\xpm\rdftop.c
|
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\xpm\rgb.c
|
SOURCE=.\xpm\rgb.c
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\xpm\scan.c
|
SOURCE=.\xpm\scan.c
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\xpm\simx.c
|
SOURCE=.\xpm\simx.c
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\xpm\wrffrdat.c
|
SOURCE=.\xpm\wrffrdat.c
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\xpm\wrffri.c
|
SOURCE=.\xpm\wrffri.c
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\xpm\wrffrp.c
|
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
# End Source File
|
# End Source File
|
||||||
# End Group
|
# End Group
|
||||||
|
@@ -510,7 +510,7 @@ SOURCE=.\generic\choicdgg.cpp
|
|||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\generic\gridg.cpp
|
SOURCE=.\generic\grid.cpp
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
@@ -634,10 +634,6 @@ SOURCE=.\html\m_dflist.cpp
|
|||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\html\m_meta.cpp
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\html\m_fonts.cpp
|
SOURCE=.\html\m_fonts.cpp
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
@@ -662,6 +658,10 @@ SOURCE=.\html\m_list.cpp
|
|||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\html\m_meta.cpp
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\html\m_pre.cpp
|
SOURCE=.\html\m_pre.cpp
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
@@ -1193,134 +1193,97 @@ SOURCE=.\png\pngwutil.c
|
|||||||
# PROP Default_Filter ""
|
# PROP Default_Filter ""
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\xpm\crbuffri.c
|
SOURCE=.\xpm\attrib.c
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\xpm\crbuffrp.c
|
SOURCE=.\xpm\crbuffri.c
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\xpm\crdatfri.c
|
SOURCE=.\xpm\crdatfri.c
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\xpm\crdatfrp.c
|
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\xpm\create.c
|
SOURCE=.\xpm\create.c
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\xpm\crifrbuf.c
|
SOURCE=.\xpm\crifrbuf.c
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\xpm\crifrdat.c
|
SOURCE=.\xpm\crifrdat.c
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\xpm\crpfrbuf.c
|
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\xpm\crpfrdat.c
|
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\xpm\dataxpm.c
|
SOURCE=.\xpm\dataxpm.c
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\xpm\hashtab.c
|
SOURCE=.\xpm\hashtab.c
|
||||||
# ADD CPP /D "FOR_MSW"
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\xpm\imagexpm.c
|
||||||
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\xpm\info.c
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\xpm\misc.c
|
SOURCE=.\xpm\misc.c
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\xpm\parse.c
|
SOURCE=.\xpm\parse.c
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\xpm\rdftodat.c
|
SOURCE=.\xpm\rdftodat.c
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\xpm\rdftoi.c
|
SOURCE=.\xpm\rdftoi.c
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\xpm\rdftop.c
|
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\xpm\rgb.c
|
SOURCE=.\xpm\rgb.c
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\xpm\scan.c
|
SOURCE=.\xpm\scan.c
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\xpm\simx.c
|
SOURCE=.\xpm\simx.c
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\xpm\wrffrdat.c
|
SOURCE=.\xpm\wrffrdat.c
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\xpm\wrffri.c
|
SOURCE=.\xpm\wrffri.c
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\xpm\wrffrp.c
|
|
||||||
# ADD CPP /D "FOR_MSW"
|
|
||||||
# SUBTRACT CPP /YX /Yc /Yu
|
# SUBTRACT CPP /YX /Yc /Yu
|
||||||
# End Source File
|
# End Source File
|
||||||
# End Group
|
# End Group
|
||||||
|
Reference in New Issue
Block a user