Update WIN32 projects and config file.

Fix sign of Fl::e_dy to match screen coordinate directions under WIN32.

Note: tooltips not working under WIN32...


git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1546 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Michael R Sweet
2001-08-03 02:28:32 +00:00
parent 85533d11be
commit 0771e7cc7d
11 changed files with 762 additions and 252 deletions
+4 -4
View File
@@ -1,5 +1,5 @@
//
// "$Id: Fl_Tooltip.H,v 1.16.2.2 2001/08/02 15:31:59 easysw Exp $"
// "$Id: Fl_Tooltip.H,v 1.16.2.3 2001/08/03 02:28:32 easysw Exp $"
//
// Tooltip header file for the Fast Light Tool Kit (FLTK).
//
@@ -33,7 +33,7 @@
class Fl_TooltipBox;
class Fl_Menu_Window;
FL_EXPORT class Fl_Tooltip {
class FL_EXPORT Fl_Tooltip {
friend class Fl_TooltipBox;
friend class Fl_Widget;
@@ -57,7 +57,7 @@ public:
// These functions are user-called functions
static float delay() { return delay_; }
static void delay(float f) { delay_ = (f < 0.1) ? 0.1 : f; }
static void delay(float f) { delay_ = (f < 0.1f) ? 0.1f : f; }
static int font() { return font_; }
static int size() { return size_; }
static void font(int i) { font_ = i; }
@@ -76,5 +76,5 @@ public:
#endif
//
// End of "$Id: Fl_Tooltip.H,v 1.16.2.2 2001/08/02 15:31:59 easysw Exp $".
// End of "$Id: Fl_Tooltip.H,v 1.16.2.3 2001/08/03 02:28:32 easysw Exp $".
//
+10 -10
View File
@@ -1,5 +1,5 @@
//
// "$Id: Fl_Widget.H,v 1.6.2.4.2.2 2001/08/02 15:31:59 easysw Exp $"
// "$Id: Fl_Widget.H,v 1.6.2.4.2.3 2001/08/03 02:28:32 easysw Exp $"
//
// Widget header file for the Fast Light Tool Kit (FLTK).
//
@@ -46,7 +46,7 @@ struct Fl_Label {
FL_EXPORT void measure(int&, int&) const ;
};
FL_EXPORT class Fl_Widget {
class FL_EXPORT Fl_Widget {
friend class Fl_Group;
Fl_Widget* parent_;
@@ -67,11 +67,11 @@ FL_EXPORT class Fl_Widget {
// "de-implement" the copy constructors:
Fl_Widget & operator=(const Fl_Widget &);
FL_EXPORT Fl_Widget(const Fl_Widget &);
Fl_Widget(const Fl_Widget &);
protected:
FL_EXPORT Fl_Widget(int,int,int,int,const char* =0);
Fl_Widget(int,int,int,int,const char* =0);
void x(int v) {x_ = v;}
void y(int v) {y_ = v;}
@@ -83,11 +83,11 @@ protected:
void clear_flag(int c) {flags_ &= ~c;}
enum {INACTIVE=1, INVISIBLE=2, OUTPUT=4, SHORTCUT_LABEL=64, CHANGED=128};
FL_EXPORT void draw_box() const;
FL_EXPORT void draw_box(Fl_Boxtype, Fl_Color) const;
FL_EXPORT void draw_box(Fl_Boxtype, int,int,int,int, Fl_Color) const;
FL_EXPORT void draw_label() const;
FL_EXPORT void draw_label(int, int, int, int) const;
void draw_box() const;
void draw_box(Fl_Boxtype, Fl_Color) const;
void draw_box(Fl_Boxtype, int,int,int,int, Fl_Color) const;
void draw_label() const;
void draw_label(int, int, int, int) const;
public:
@@ -195,5 +195,5 @@ public:
#endif
//
// End of "$Id: Fl_Widget.H,v 1.6.2.4.2.2 2001/08/02 15:31:59 easysw Exp $".
// End of "$Id: Fl_Widget.H,v 1.6.2.4.2.3 2001/08/03 02:28:32 easysw Exp $".
//
+4 -4
View File
@@ -1,5 +1,5 @@
//
// "$Id: Fl_win32.cxx,v 1.33.2.37.2.1 2001/08/02 20:09:25 easysw Exp $"
// "$Id: Fl_win32.cxx,v 1.33.2.37.2.2 2001/08/03 02:28:32 easysw Exp $"
//
// WIN32-specific code for the Fast Light Tool Kit (FLTK).
//
@@ -592,8 +592,8 @@ static LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lPar
case WM_MOUSEWHEEL: {
static int delta = 0; // running total of all motion
delta += (SHORT)(HIWORD(wParam));
Fl::e_dy = delta / WHEEL_DELTA;
delta -= Fl::e_dy * WHEEL_DELTA;
Fl::e_dy = -delta / WHEEL_DELTA;
delta += Fl::e_dy * WHEEL_DELTA;
if (Fl::e_dy) Fl::handle(FL_MOUSEWHEEL, window);
return 0;
}
@@ -991,5 +991,5 @@ void Fl_Window::make_current() {
}
//
// End of "$Id: Fl_win32.cxx,v 1.33.2.37.2.1 2001/08/02 20:09:25 easysw Exp $".
// End of "$Id: Fl_win32.cxx,v 1.33.2.37.2.2 2001/08/03 02:28:32 easysw Exp $".
//
+1 -1
View File
@@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.00
version 1.0100
header_name {.h}
code_name {.cxx}
gridx 2
+16 -2
View File
@@ -1,5 +1,5 @@
/*
* "$Id: config.h,v 1.5.2.5 2001/04/30 17:17:01 easysw Exp $"
* "$Id: config.h,v 1.5.2.5.2.1 2001/08/03 02:28:32 easysw Exp $"
*
* Configuration file for the Fast Light Tool Kit (FLTK) for Visual C++.
*
@@ -153,5 +153,19 @@
#define HAVE_POLL 0
/*
* End of "$Id: config.h,v 1.5.2.5 2001/04/30 17:17:01 easysw Exp $".
* Do we have various image libraries?
*/
#undef HAVE_LIBPNG
#undef HAVE_LIBZ
#undef HAVE_LIBJPEG
/*
* Do we have the png_get_valid() function?
*/
#undef HAVE_PNG_GET_VALID
/*
* End of "$Id: config.h,v 1.5.2.5.2.1 2001/08/03 02:28:32 easysw Exp $".
*/
+63
View File
@@ -14,6 +14,9 @@ Package=<4>
Begin Project Dependency
Project_Dep_Name fltk
End Project Dependency
Begin Project Dependency
Project_Dep_Name fltkgl
End Project Dependency
}}}
###############################################################################
@@ -209,6 +212,9 @@ Package=<4>
Begin Project Dependency
Project_Dep_Name fltk
End Project Dependency
Begin Project Dependency
Project_Dep_Name fltkgl
End Project Dependency
}}}
###############################################################################
@@ -510,6 +516,30 @@ Package=<4>
###############################################################################
Project: "fltkgl"=".\fltkgl.dsp" - Package Owner=<4>
Package=<5>
{{{
}}}
Package=<4>
{{{
}}}
###############################################################################
Project: "fltkgldll"=".\fltkgldll.dsp" - Package Owner=<4>
Package=<5>
{{{
}}}
Package=<4>
{{{
}}}
###############################################################################
Project: "fluid"=".\fluid.dsp" - Package Owner=<4>
Package=<5>
@@ -566,6 +596,9 @@ Package=<4>
Begin Project Dependency
Project_Dep_Name fltk
End Project Dependency
Begin Project Dependency
Project_Dep_Name fltkgl
End Project Dependency
}}}
###############################################################################
@@ -581,6 +614,9 @@ Package=<4>
Begin Project Dependency
Project_Dep_Name fltk
End Project Dependency
Begin Project Dependency
Project_Dep_Name fltkgl
End Project Dependency
}}}
###############################################################################
@@ -596,6 +632,9 @@ Package=<4>
Begin Project Dependency
Project_Dep_Name fltk
End Project Dependency
Begin Project Dependency
Project_Dep_Name fltkgl
End Project Dependency
}}}
###############################################################################
@@ -611,6 +650,9 @@ Package=<4>
Begin Project Dependency
Project_Dep_Name fltk
End Project Dependency
Begin Project Dependency
Project_Dep_Name fltkgl
End Project Dependency
}}}
###############################################################################
@@ -630,6 +672,21 @@ Package=<4>
###############################################################################
Project: "help"=".\help.dsp" - Package Owner=<4>
Package=<5>
{{{
}}}
Package=<4>
{{{
Begin Project Dependency
Project_Dep_Name fltk
End Project Dependency
}}}
###############################################################################
Project: "iconize"=".\iconize.dsp" - Package Owner=<4>
Package=<5>
@@ -953,6 +1010,9 @@ Package=<4>
Begin Project Dependency
Project_Dep_Name fltk
End Project Dependency
Begin Project Dependency
Project_Dep_Name fltkgl
End Project Dependency
}}}
###############################################################################
@@ -968,6 +1028,9 @@ Package=<4>
Begin Project Dependency
Project_Dep_Name fltk
End Project Dependency
Begin Project Dependency
Project_Dep_Name fltkgl
End Project Dependency
}}}
###############################################################################
+32 -32
View File
@@ -255,6 +255,22 @@ SOURCE=..\src\fl_file_chooser.cxx
# End Source File
# Begin Source File
SOURCE=..\src\Fl_FileBrowser.cxx
# End Source File
# Begin Source File
SOURCE=..\src\Fl_FileChooser.cxx
# End Source File
# Begin Source File
SOURCE=..\src\Fl_FileChooser2.cxx
# End Source File
# Begin Source File
SOURCE=..\src\Fl_FileIcon.cxx
# End Source File
# Begin Source File
SOURCE=..\src\fl_font.cxx
# End Source File
# Begin Source File
@@ -267,22 +283,6 @@ SOURCE=..\src\Fl_get_system_colors.cxx
# End Source File
# Begin Source File
SOURCE=..\src\Fl_Gl_Choice.cxx
# End Source File
# Begin Source File
SOURCE=..\src\Fl_Gl_Choice.H
# End Source File
# Begin Source File
SOURCE=..\src\Fl_Gl_Overlay.cxx
# End Source File
# Begin Source File
SOURCE=..\src\Fl_Gl_Window.cxx
# End Source File
# Begin Source File
SOURCE=..\src\Fl_grab.cxx
# End Source File
# Begin Source File
@@ -291,6 +291,14 @@ SOURCE=..\src\Fl_Group.cxx
# End Source File
# Begin Source File
SOURCE=..\src\Fl_HelpDialog.cxx
# End Source File
# Begin Source File
SOURCE=..\src\Fl_HelpView.cxx
# End Source File
# Begin Source File
SOURCE=..\src\Fl_Image.cxx
# End Source File
# Begin Source File
@@ -463,6 +471,10 @@ SOURCE=..\src\Fl_Tile.cxx
# End Source File
# Begin Source File
SOURCE=..\src\Fl_Tooltip.cxx
# End Source File
# Begin Source File
SOURCE=..\src\Fl_Valuator.cxx
# End Source File
# Begin Source File
@@ -507,6 +519,10 @@ SOURCE=..\src\Fl_Window_iconize.cxx
# End Source File
# Begin Source File
SOURCE=..\src\Fl_Wizard.cxx
# End Source File
# Begin Source File
SOURCE=..\src\Fl_x.cxx
# End Source File
# Begin Source File
@@ -535,22 +551,6 @@ SOURCE=..\src\forms_timer.cxx
# End Source File
# Begin Source File
SOURCE=..\src\gl_draw.cxx
# End Source File
# Begin Source File
SOURCE=..\src\gl_start.cxx
# End Source File
# Begin Source File
SOURCE=..\src\glut_compatability.cxx
# End Source File
# Begin Source File
SOURCE=..\src\glut_font.cxx
# End Source File
# Begin Source File
SOURCE=..\src\numericsort.c
# End Source File
# Begin Source File
+190 -199
View File
File diff suppressed because it is too large Load Diff
+113
View File
@@ -0,0 +1,113 @@
# Microsoft Developer Studio Project File - Name="fltkgl" - Package Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Static Library" 0x0104
CFG=fltkgl - Win32 Release
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
!MESSAGE use the Export Makefile command and run
!MESSAGE
!MESSAGE NMAKE /f "fltkgl.mak".
!MESSAGE
!MESSAGE You can specify a configuration when running NMAKE
!MESSAGE by defining the macro CFG on the command line. For example:
!MESSAGE
!MESSAGE NMAKE /f "fltkgl.mak" CFG="fltkgl - Win32 Release"
!MESSAGE
!MESSAGE Possible choices for configuration are:
!MESSAGE
!MESSAGE "fltkgl - Win32 Release" (based on "Win32 (x86) Static Library")
!MESSAGE "fltkgl - Win32 Debug" (based on "Win32 (x86) Static Library")
!MESSAGE
# Begin Project
# PROP AllowPerConfigDependencies 0
# PROP Scc_ProjName ""
# PROP Scc_LocalPath ""
CPP=cl.exe
RSC=rc.exe
!IF "$(CFG)" == "fltkgl - Win32 Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "Release"
# PROP BASE Intermediate_Dir "Release"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "Release"
# PROP Intermediate_Dir "Release"
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c
# ADD CPP /nologo /MD /GX /Ot /Op /Ob2 /I "." /I ".." /D "FL_STATIC" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "WIN32_LEAN_AND_MEAN" /D "VC_EXTRA_LEAN" /D "WIN32_EXTRA_LEAN" /YX /FD /c
# SUBTRACT CPP /Os
# ADD BASE RSC /l 0x409
# ADD RSC /l 0x409
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo /out:"..\lib\fltkgl.lib"
!ELSEIF "$(CFG)" == "fltkgl - Win32 Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "Debug"
# PROP BASE Intermediate_Dir "Debug"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "Debug"
# PROP Intermediate_Dir "Debug"
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c
# ADD CPP /nologo /MDd /GX /Z7 /Od /I "." /I ".." /D "FL_STATIC" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "WIN32_LEAN_AND_MEAN" /D "VC_EXTRA_LEAN" /D "WIN32_EXTRA_LEAN" /FR /YX /FD /c
# ADD BASE RSC /l 0x409
# ADD RSC /l 0x409
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo /out:"..\lib\fltkgld.lib"
!ENDIF
# Begin Target
# Name "fltkgl - Win32 Release"
# Name "fltkgl - Win32 Debug"
# Begin Source File
SOURCE=..\src\Fl_Gl_Choice.cxx
# End Source File
# Begin Source File
SOURCE=..\src\Fl_Gl_Overlay.cxx
# End Source File
# Begin Source File
SOURCE=..\src\Fl_Gl_Window.cxx
# End Source File
# Begin Source File
SOURCE=..\src\gl_draw.cxx
# End Source File
# Begin Source File
SOURCE=..\src\gl_start.cxx
# End Source File
# Begin Source File
SOURCE=..\src\glut_compatability.cxx
# End Source File
# Begin Source File
SOURCE=..\src\glut_font.cxx
# End Source File
# End Target
# End Project
+232
View File
@@ -0,0 +1,232 @@
# Microsoft Developer Studio Project File - Name="fltkgldll" - Package Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102
CFG=fltkgldll - Win32 Release
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
!MESSAGE use the Export Makefile command and run
!MESSAGE
!MESSAGE NMAKE /f "fltkgldll.mak".
!MESSAGE
!MESSAGE You can specify a configuration when running NMAKE
!MESSAGE by defining the macro CFG on the command line. For example:
!MESSAGE
!MESSAGE NMAKE /f "fltkgldll.mak" CFG="fltkgldll - Win32 Release"
!MESSAGE
!MESSAGE Possible choices for configuration are:
!MESSAGE
!MESSAGE "fltkgldll - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library")
!MESSAGE "fltkgldll - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")
!MESSAGE
# Begin Project
# PROP AllowPerConfigDependencies 0
# PROP Scc_ProjName ""
# PROP Scc_LocalPath ""
CPP=cl.exe
MTL=midl.exe
RSC=rc.exe
!IF "$(CFG)" == "fltkgldll - Win32 Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "fltkgldll0"
# PROP BASE Intermediate_Dir "fltkgldll0"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "../lib"
# PROP Intermediate_Dir "fltkgldll"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c
# ADD CPP /nologo /MT /W3 /GX /Os /Ob2 /I "." /I ".." /D "FL_DLL" /D "FL_LIBRARY" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "WIN32_LEAN_AND_MEAN" /D "VC_EXTRA_LEAN" /D "WIN32_EXTRA_LEAN" /YX /c
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o /win32 "NUL"
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o /win32 "NUL"
# ADD BASE RSC /l 0x409 /d "NDEBUG"
# ADD RSC /l 0x409 /d "NDEBUG"
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /dll /machine:I386
# ADD LINK32 opengl32.lib wsock32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /version:1.0 /subsystem:windows /dll /pdb:"fltkgldll.pdb" /machine:I386 /out:"fltkgldll.dll"
# SUBTRACT LINK32 /pdb:none
!ELSEIF "$(CFG)" == "fltkgldll - Win32 Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "fltkgldll1"
# PROP BASE Intermediate_Dir "fltkgldll1"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "../lib"
# PROP Intermediate_Dir "fltkgldlld"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c
# ADD CPP /nologo /MTd /GX /ZI /Od /I "." /I ".." /D "FL_DLL" /D "FL_LIBRARY" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "WIN32_LEAN_AND_MEAN" /D "VC_EXTRA_LEAN" /D "WIN32_EXTRA_LEAN" /YX /c
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o /win32 "NUL"
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o /win32 "NUL"
# ADD BASE RSC /l 0x409 /d "_DEBUG"
# ADD RSC /l 0x409 /d "_DEBUG"
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept
# ADD LINK32 opengl32.lib wsock32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /version:1.0 /subsystem:windows /dll /pdb:"fltkgldlld.pdb" /debug /machine:I386 /out:"fltkgldlld.dll" /pdbtype:sept
# SUBTRACT LINK32 /pdb:none /incremental:no
!ENDIF
# Begin Target
# Name "fltkgldll - Win32 Release"
# Name "fltkgldll - Win32 Debug"
# Begin Source File
SOURCE=..\src\Fl_Gl_Choice.cxx
DEP_CPP_FL_GL=\
"..\fl\enumerations.h"\
"..\fl\fl.h"\
"..\fl\fl_group.h"\
"..\fl\fl_widget.h"\
"..\fl\fl_window.h"\
"..\FL\gl.h"\
"..\fl\win32.h"\
"..\fl\x.h"\
"..\src\Fl_Gl_Choice.H"\
".\config.h"\
NODEP_CPP_FL_GL=\
".\L\gl.h"\
# End Source File
# Begin Source File
SOURCE=..\src\Fl_Gl_Overlay.cxx
DEP_CPP_FL_GL_=\
"..\fl\enumerations.h"\
"..\fl\fl.h"\
"..\fl\fl_gl_window.h"\
"..\fl\fl_group.h"\
"..\fl\fl_widget.h"\
"..\fl\fl_window.h"\
"..\FL\gl.h"\
"..\fl\win32.h"\
"..\fl\x.h"\
"..\src\Fl_Gl_Choice.H"\
".\config.h"\
NODEP_CPP_FL_GL_=\
".\L\gl.h"\
# End Source File
# Begin Source File
SOURCE=..\src\Fl_Gl_Window.cxx
DEP_CPP_FL_GL_W=\
"..\fl\enumerations.h"\
"..\fl\fl.h"\
"..\fl\fl_gl_window.h"\
"..\fl\fl_group.h"\
"..\fl\fl_widget.h"\
"..\fl\fl_window.h"\
"..\FL\gl.h"\
"..\fl\win32.h"\
"..\fl\x.h"\
"..\src\Fl_Gl_Choice.H"\
".\config.h"\
NODEP_CPP_FL_GL_W=\
".\L\gl.h"\
# End Source File
# Begin Source File
SOURCE=..\src\gl_draw.cxx
DEP_CPP_GL_DR=\
"..\fl\enumerations.h"\
"..\fl\fl.h"\
"..\fl\fl_draw.h"\
"..\fl\fl_group.h"\
"..\fl\fl_widget.h"\
"..\fl\fl_window.h"\
"..\FL\gl.h"\
"..\fl\win32.h"\
"..\fl\x.h"\
"..\src\fl_font.h"\
"..\src\Fl_Gl_Choice.H"\
".\config.h"\
NODEP_CPP_GL_DR=\
".\L\gl.h"\
# End Source File
# Begin Source File
SOURCE=..\src\gl_start.cxx
DEP_CPP_GL_ST=\
"..\fl\enumerations.h"\
"..\fl\fl.h"\
"..\fl\fl_draw.h"\
"..\fl\fl_group.h"\
"..\fl\fl_widget.h"\
"..\fl\fl_window.h"\
"..\FL\gl.h"\
"..\fl\win32.h"\
"..\fl\x.h"\
"..\src\Fl_Gl_Choice.H"\
".\config.h"\
NODEP_CPP_GL_ST=\
".\L\gl.h"\
# End Source File
# Begin Source File
SOURCE=..\src\glut_compatability.cxx
DEP_CPP_GLUT_=\
"..\fl\enumerations.h"\
"..\fl\fl.h"\
"..\fl\fl_gl_window.h"\
"..\fl\fl_group.h"\
"..\fl\fl_menu_item.h"\
"..\fl\fl_widget.h"\
"..\fl\fl_window.h"\
"..\FL\gl.h"\
"..\fl\glut.h"\
".\config.h"\
NODEP_CPP_GLUT_=\
".\L\gl.h"\
".\L\glu.h"\
# End Source File
# Begin Source File
SOURCE=..\src\glut_font.cxx
DEP_CPP_GLUT_F=\
"..\fl\enumerations.h"\
"..\fl\fl.h"\
"..\fl\fl_gl_window.h"\
"..\fl\fl_group.h"\
"..\fl\fl_widget.h"\
"..\fl\fl_window.h"\
"..\FL\gl.h"\
"..\fl\glut.h"\
".\config.h"\
NODEP_CPP_GLUT_F=\
".\L\gl.h"\
".\L\glu.h"\
# End Source File
# End Target
# End Project
+97
View File
@@ -0,0 +1,97 @@
# Microsoft Developer Studio Project File - Name="help" - Package Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Application" 0x0101
CFG=help - Win32 Debug
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
!MESSAGE use the Export Makefile command and run
!MESSAGE
!MESSAGE NMAKE /f "help.mak".
!MESSAGE
!MESSAGE You can specify a configuration when running NMAKE
!MESSAGE by defining the macro CFG on the command line. For example:
!MESSAGE
!MESSAGE NMAKE /f "help.mak" CFG="help - Win32 Debug"
!MESSAGE
!MESSAGE Possible choices for configuration are:
!MESSAGE
!MESSAGE "help - Win32 Release" (based on "Win32 (x86) Application")
!MESSAGE "help - Win32 Debug" (based on "Win32 (x86) Application")
!MESSAGE
# Begin Project
# PROP AllowPerConfigDependencies 0
# PROP Scc_ProjName ""
# PROP Scc_LocalPath ""
CPP=cl.exe
MTL=midl.exe
RSC=rc.exe
!IF "$(CFG)" == "help - Win32 Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "Release"
# PROP BASE Intermediate_Dir "Release"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "Release"
# PROP Intermediate_Dir "Release"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c
# ADD CPP /nologo /MD /GX /Os /Ob2 /I "." /I ".." /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "WIN32_LEAN_AND_MEAN" /D "VC_EXTRA_LEAN" /D "WIN32_EXTRA_LEAN" /YX /FD /c
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
# ADD BASE RSC /l 0x409 /d "NDEBUG"
# ADD RSC /l 0x409 /d "NDEBUG"
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /machine:I386
# ADD LINK32 fltk.lib wsock32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /machine:I386 /nodefaultlib:"libcd" /out:"../test/help.exe" /libpath:"..\lib"
# SUBTRACT LINK32 /pdb:none /incremental:yes
!ELSEIF "$(CFG)" == "help - Win32 Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "help_"
# PROP BASE Intermediate_Dir "help_"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "help_"
# PROP Intermediate_Dir "help_"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c
# ADD CPP /nologo /MDd /Gm /GX /ZI /Od /I "." /I ".." /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "WIN32_LEAN_AND_MEAN" /D "VC_EXTRA_LEAN" /D "WIN32_EXTRA_LEAN" /YX /FD /c
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
# ADD BASE RSC /l 0x409 /d "_DEBUG"
# ADD RSC /l 0x409 /d "_DEBUG"
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept
# ADD LINK32 fltkd.lib wsock32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /debug /machine:I386 /nodefaultlib:"libcd" /out:"../test/helpd.exe" /pdbtype:sept /libpath:"..\lib"
# SUBTRACT LINK32 /pdb:none /incremental:no
!ENDIF
# Begin Target
# Name "help - Win32 Release"
# Name "help - Win32 Debug"
# Begin Source File
SOURCE=..\test\help.cxx
# End Source File
# End Target
# End Project