diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2001-08-03 02:28:32 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2001-08-03 02:28:32 +0000 |
| commit | 0771e7cc7d5f6008260058511bfc2d273282d926 (patch) | |
| tree | 0e47ee7c63ba885df5e76c81356034bbdba8186c | |
| parent | 85533d11be0b32799d1baf343a13a633cb041ea2 (diff) | |
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
| -rw-r--r-- | FL/Fl_Tooltip.H | 8 | ||||
| -rw-r--r-- | FL/Fl_Widget.H | 20 | ||||
| -rw-r--r-- | src/Fl_win32.cxx | 8 | ||||
| -rw-r--r-- | test/CubeViewUI.fl | 2 | ||||
| -rw-r--r-- | visualc/config.h | 18 | ||||
| -rw-r--r-- | visualc/fltk.dsw | 63 | ||||
| -rw-r--r-- | visualc/fltk.lib.dsp | 46 | ||||
| -rw-r--r-- | visualc/fltkdll.dsp | 355 | ||||
| -rw-r--r-- | visualc/fltkgl.dsp | 113 | ||||
| -rw-r--r-- | visualc/fltkgldll.dsp | 232 | ||||
| -rw-r--r-- | visualc/help.dsp | 97 |
11 files changed, 736 insertions, 226 deletions
diff --git a/FL/Fl_Tooltip.H b/FL/Fl_Tooltip.H index 62875dc38..19dba0cf7 100644 --- a/FL/Fl_Tooltip.H +++ b/FL/Fl_Tooltip.H @@ -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 $". // diff --git a/FL/Fl_Widget.H b/FL/Fl_Widget.H index 9fbdc862b..5ca21e3bb 100644 --- a/FL/Fl_Widget.H +++ b/FL/Fl_Widget.H @@ -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 $". // diff --git a/src/Fl_win32.cxx b/src/Fl_win32.cxx index e6d97dd7c..a1388fe88 100644 --- a/src/Fl_win32.cxx +++ b/src/Fl_win32.cxx @@ -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 $". // diff --git a/test/CubeViewUI.fl b/test/CubeViewUI.fl index e619ff82f..e4d8fe3d1 100644 --- a/test/CubeViewUI.fl +++ b/test/CubeViewUI.fl @@ -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 diff --git a/visualc/config.h b/visualc/config.h index d2f8a9438..6ad48fa47 100644 --- a/visualc/config.h +++ b/visualc/config.h @@ -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 $". */ diff --git a/visualc/fltk.dsw b/visualc/fltk.dsw index 112de0f7b..44c2d485b 100644 --- a/visualc/fltk.dsw +++ b/visualc/fltk.dsw @@ -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
}}}
###############################################################################
diff --git a/visualc/fltk.lib.dsp b/visualc/fltk.lib.dsp index fe7247c11..c655d9878 100644 --- a/visualc/fltk.lib.dsp +++ b/visualc/fltk.lib.dsp @@ -255,31 +255,31 @@ SOURCE=..\src\fl_file_chooser.cxx # End Source File
# Begin Source File
-SOURCE=..\src\fl_font.cxx
+SOURCE=..\src\Fl_FileBrowser.cxx
# End Source File
# Begin Source File
-SOURCE=..\src\Fl_get_key.cxx
+SOURCE=..\src\Fl_FileChooser.cxx
# End Source File
# Begin Source File
-SOURCE=..\src\Fl_get_system_colors.cxx
+SOURCE=..\src\Fl_FileChooser2.cxx
# End Source File
# Begin Source File
-SOURCE=..\src\Fl_Gl_Choice.cxx
+SOURCE=..\src\Fl_FileIcon.cxx
# End Source File
# Begin Source File
-SOURCE=..\src\Fl_Gl_Choice.H
+SOURCE=..\src\fl_font.cxx
# End Source File
# Begin Source File
-SOURCE=..\src\Fl_Gl_Overlay.cxx
+SOURCE=..\src\Fl_get_key.cxx
# End Source File
# Begin Source File
-SOURCE=..\src\Fl_Gl_Window.cxx
+SOURCE=..\src\Fl_get_system_colors.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
diff --git a/visualc/fltkdll.dsp b/visualc/fltkdll.dsp index eee5707df..369dd2b12 100644 --- a/visualc/fltkdll.dsp +++ b/visualc/fltkdll.dsp @@ -95,9 +95,6 @@ SOURCE=..\src\filename_absolute.cxx DEP_CPP_FILEN=\
"..\fl\filename.h"\
-NODEP_CPP_FILEN=\
- ".\ys\types.h"\
-
# End Source File
# Begin Source File
@@ -105,9 +102,6 @@ SOURCE=..\src\filename_expand.cxx DEP_CPP_FILENA=\
"..\fl\filename.h"\
-NODEP_CPP_FILENA=\
- ".\ys\types.h"\
-
# End Source File
# Begin Source File
@@ -115,9 +109,6 @@ SOURCE=..\src\filename_ext.cxx DEP_CPP_FILENAM=\
"..\fl\filename.h"\
-NODEP_CPP_FILENAM=\
- ".\ys\types.h"\
-
# End Source File
# Begin Source File
@@ -126,10 +117,6 @@ DEP_CPP_FILENAME=\ "..\fl\filename.h"\
".\config.h"\
-NODEP_CPP_FILENAME=\
- ".\ys\stat.h"\
- ".\ys\types.h"\
-
# End Source File
# Begin Source File
@@ -138,9 +125,6 @@ DEP_CPP_FILENAME_=\ "..\fl\filename.h"\
".\config.h"\
-NODEP_CPP_FILENAME_=\
- ".\ys\types.h"\
-
# End Source File
# Begin Source File
@@ -148,9 +132,6 @@ SOURCE=..\src\filename_match.cxx DEP_CPP_FILENAME_M=\
"..\fl\filename.h"\
-NODEP_CPP_FILENAME_M=\
- ".\ys\types.h"\
-
# End Source File
# Begin Source File
@@ -158,9 +139,6 @@ SOURCE=..\src\filename_setext.cxx DEP_CPP_FILENAME_S=\
"..\fl\filename.h"\
-NODEP_CPP_FILENAME_S=\
- ".\ys\types.h"\
-
# End Source File
# Begin Source File
@@ -170,6 +148,7 @@ DEP_CPP_FL_CX=\ "..\fl\fl.h"\
"..\fl\fl_draw.h"\
"..\fl\fl_group.h"\
+ "..\fl\fl_tooltip.h"\
"..\fl\fl_widget.h"\
"..\fl\fl_window.h"\
"..\fl\win32.h"\
@@ -188,11 +167,15 @@ DEP_CPP_FL_AB=\ # Begin Source File
SOURCE=..\src\Fl_add_idle.cxx
+DEP_CPP_FL_AD=\
+ "..\fl\enumerations.h"\
+ "..\fl\fl.h"\
+
# End Source File
# Begin Source File
SOURCE=..\src\Fl_Adjuster.cxx
-DEP_CPP_FL_AD=\
+DEP_CPP_FL_ADJ=\
"..\fl\enumerations.h"\
"..\fl\fl.h"\
"..\fl\fl_adjuster.h"\
@@ -242,9 +225,6 @@ DEP_CPP_FL_ARG=\ "..\fl\win32.h"\
"..\fl\x.h"\
-NODEP_CPP_FL_ARG=\
- ".\ys\types.h"\
-
# End Source File
# Begin Source File
@@ -262,6 +242,8 @@ DEP_CPP_FL_AS=\ "..\fl\fl_secret_input.h"\
"..\fl\fl_widget.h"\
"..\fl\fl_window.h"\
+ "..\fl\win32.h"\
+ "..\fl\x.h"\
".\config.h"\
# End Source File
@@ -451,6 +433,10 @@ DEP_CPP_FL_COL=\ # Begin Source File
SOURCE=..\src\Fl_compose.cxx
+DEP_CPP_FL_COM=\
+ "..\fl\enumerations.h"\
+ "..\fl\fl.h"\
+
# End Source File
# Begin Source File
@@ -601,16 +587,21 @@ DEP_CPP_FL_EN=\ SOURCE=..\src\fl_file_chooser.cxx
DEP_CPP_FL_FI=\
"..\fl\enumerations.h"\
- "..\fl\filename.h"\
"..\fl\fl.h"\
- "..\fl\fl_box.h"\
+ "..\fl\fl_ask.h"\
+ "..\fl\fl_browser.h"\
"..\fl\fl_browser_.h"\
"..\fl\fl_button.h"\
- "..\fl\fl_draw.h"\
+ "..\fl\fl_choice.h"\
"..\fl\fl_file_chooser.h"\
+ "..\fl\fl_filebrowser.h"\
+ "..\fl\fl_filechooser.h"\
+ "..\fl\fl_fileicon.h"\
"..\fl\fl_group.h"\
"..\fl\fl_input.h"\
"..\fl\fl_input_.h"\
+ "..\fl\fl_menu_.h"\
+ "..\fl\fl_menu_item.h"\
"..\fl\fl_return_button.h"\
"..\fl\fl_scrollbar.h"\
"..\fl\fl_slider.h"\
@@ -619,116 +610,140 @@ DEP_CPP_FL_FI=\ "..\fl\fl_window.h"\
".\config.h"\
-NODEP_CPP_FL_FI=\
- ".\ys\types.h"\
-
# End Source File
# Begin Source File
-SOURCE=..\src\fl_font.cxx
-DEP_CPP_FL_FO=\
+SOURCE=..\src\Fl_FileBrowser.cxx
+DEP_CPP_FL_FIL=\
"..\fl\enumerations.h"\
+ "..\fl\filename.h"\
"..\fl\fl.h"\
+ "..\fl\fl_browser.h"\
+ "..\fl\fl_browser_.h"\
"..\fl\fl_draw.h"\
+ "..\fl\fl_filebrowser.h"\
+ "..\fl\fl_fileicon.h"\
"..\fl\fl_group.h"\
+ "..\fl\fl_scrollbar.h"\
+ "..\fl\fl_slider.h"\
+ "..\fl\fl_valuator.h"\
"..\fl\fl_widget.h"\
- "..\fl\fl_window.h"\
- "..\fl\win32.h"\
- "..\fl\x.h"\
- "..\src\fl_font.h"\
- "..\src\fl_font_win32.cxx"\
- ".\config.h"\
# End Source File
# Begin Source File
-SOURCE=..\src\Fl_get_key.cxx
-DEP_CPP_FL_GE=\
+SOURCE=..\src\Fl_FileChooser.cxx
+DEP_CPP_FL_FILE=\
"..\fl\enumerations.h"\
"..\fl\fl.h"\
+ "..\fl\fl_ask.h"\
+ "..\fl\fl_bitmap.h"\
+ "..\fl\fl_browser.h"\
+ "..\fl\fl_browser_.h"\
+ "..\fl\fl_button.h"\
+ "..\fl\fl_choice.h"\
+ "..\fl\fl_filebrowser.h"\
+ "..\fl\fl_filechooser.h"\
+ "..\fl\fl_fileicon.h"\
"..\fl\fl_group.h"\
+ "..\fl\fl_input.h"\
+ "..\fl\fl_input_.h"\
+ "..\fl\fl_menu_.h"\
+ "..\fl\fl_menu_item.h"\
+ "..\fl\fl_return_button.h"\
+ "..\fl\fl_scrollbar.h"\
+ "..\fl\fl_slider.h"\
+ "..\fl\fl_valuator.h"\
"..\fl\fl_widget.h"\
"..\fl\fl_window.h"\
- "..\fl\win32.h"\
- "..\fl\x.h"\
- "..\src\fl_get_key_win32.cxx"\
# End Source File
# Begin Source File
-SOURCE=..\src\Fl_get_system_colors.cxx
-DEP_CPP_FL_GET=\
+SOURCE=..\src\Fl_FileChooser2.cxx
+DEP_CPP_FL_FILEC=\
"..\fl\enumerations.h"\
+ "..\fl\filename.h"\
"..\fl\fl.h"\
+ "..\fl\fl_ask.h"\
+ "..\fl\fl_browser.h"\
+ "..\fl\fl_browser_.h"\
+ "..\fl\fl_button.h"\
+ "..\fl\fl_choice.h"\
+ "..\fl\fl_filebrowser.h"\
+ "..\fl\fl_filechooser.h"\
+ "..\fl\fl_fileicon.h"\
"..\fl\fl_group.h"\
+ "..\fl\fl_input.h"\
+ "..\fl\fl_input_.h"\
+ "..\fl\fl_menu_.h"\
+ "..\fl\fl_menu_item.h"\
+ "..\fl\fl_return_button.h"\
+ "..\fl\fl_scrollbar.h"\
+ "..\fl\fl_slider.h"\
+ "..\fl\fl_valuator.h"\
"..\fl\fl_widget.h"\
"..\fl\fl_window.h"\
- "..\FL\math.h"\
"..\fl\win32.h"\
"..\fl\x.h"\
# End Source File
# Begin Source File
-SOURCE=..\src\Fl_Gl_Choice.cxx
-DEP_CPP_FL_GL=\
+SOURCE=..\src\Fl_FileIcon.cxx
+DEP_CPP_FL_FILEI=\
+ "..\fl\enumerations.h"\
+ "..\fl\filename.h"\
+ "..\fl\fl.h"\
+ "..\fl\fl_draw.h"\
+ "..\fl\fl_fileicon.h"\
+ "..\fl\fl_widget.h"\
+ ".\config.h"\
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\src\fl_font.cxx
+DEP_CPP_FL_FO=\
"..\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"\
+ "..\src\fl_font.h"\
+ "..\src\fl_font_win32.cxx"\
".\config.h"\
-NODEP_CPP_FL_GL=\
- ".\L\gl.h"\
-
# End Source File
# Begin Source File
-SOURCE=..\src\Fl_Gl_Choice.H
-# End Source File
-# Begin Source File
-
-SOURCE=..\src\Fl_Gl_Overlay.cxx
-DEP_CPP_FL_GL_=\
+SOURCE=..\src\Fl_get_key.cxx
+DEP_CPP_FL_GE=\
"..\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"\
+ "..\src\fl_get_key_win32.cxx"\
# End Source File
# Begin Source File
-SOURCE=..\src\Fl_Gl_Window.cxx
-DEP_CPP_FL_GL_W=\
+SOURCE=..\src\Fl_get_system_colors.cxx
+DEP_CPP_FL_GET=\
"..\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\math.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
@@ -753,12 +768,49 @@ DEP_CPP_FL_GRO=\ "..\fl\fl.h"\
"..\fl\fl_draw.h"\
"..\fl\fl_group.h"\
+ "..\fl\fl_tooltip.h"\
"..\fl\fl_widget.h"\
"..\fl\fl_window.h"\
# End Source File
# Begin Source File
+SOURCE=..\src\Fl_HelpDialog.cxx
+DEP_CPP_FL_HE=\
+ "..\fl\enumerations.h"\
+ "..\fl\fl.h"\
+ "..\fl\fl_button.h"\
+ "..\fl\fl_draw.h"\
+ "..\fl\fl_group.h"\
+ "..\fl\fl_helpdialog.h"\
+ "..\fl\fl_helpview.h"\
+ "..\fl\fl_scrollbar.h"\
+ "..\fl\fl_slider.h"\
+ "..\fl\fl_valuator.h"\
+ "..\fl\fl_widget.h"\
+ "..\fl\fl_window.h"\
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\src\Fl_HelpView.cxx
+DEP_CPP_FL_HEL=\
+ "..\fl\enumerations.h"\
+ "..\fl\fl.h"\
+ "..\fl\fl_draw.h"\
+ "..\fl\fl_group.h"\
+ "..\fl\fl_helpview.h"\
+ "..\fl\fl_image.h"\
+ "..\fl\fl_pixmap.h"\
+ "..\fl\fl_scrollbar.h"\
+ "..\fl\fl_slider.h"\
+ "..\fl\fl_valuator.h"\
+ "..\fl\fl_widget.h"\
+ ".\config.h"\
+
+# End Source File
+# Begin Source File
+
SOURCE=..\src\Fl_Image.cxx
DEP_CPP_FL_IM=\
"..\fl\enumerations.h"\
@@ -823,6 +875,15 @@ DEP_CPP_FL_LI=\ # Begin Source File
SOURCE=..\src\fl_line_style.cxx
+DEP_CPP_FL_LIN=\
+ "..\fl\enumerations.h"\
+ "..\fl\fl_draw.h"\
+ "..\fl\fl_group.h"\
+ "..\fl\fl_widget.h"\
+ "..\fl\fl_window.h"\
+ "..\fl\win32.h"\
+ "..\fl\x.h"\
+
# End Source File
# Begin Source File
@@ -1206,7 +1267,13 @@ SOURCE=..\src\fl_shortcut.cxx DEP_CPP_FL_SHO=\
"..\fl\enumerations.h"\
"..\fl\fl.h"\
+ "..\fl\fl_button.h"\
+ "..\fl\fl_draw.h"\
+ "..\fl\fl_group.h"\
"..\fl\fl_widget.h"\
+ "..\fl\fl_window.h"\
+ "..\fl\win32.h"\
+ "..\fl\x.h"\
# End Source File
# Begin Source File
@@ -1283,6 +1350,22 @@ DEP_CPP_FL_TI=\ # End Source File
# Begin Source File
+SOURCE=..\src\Fl_Tooltip.cxx
+DEP_CPP_FL_TO=\
+ "..\fl\enumerations.h"\
+ "..\fl\fl.h"\
+ "..\fl\fl_box.h"\
+ "..\fl\fl_draw.h"\
+ "..\fl\fl_group.h"\
+ "..\fl\fl_menu_window.h"\
+ "..\fl\fl_single_window.h"\
+ "..\fl\fl_tooltip.h"\
+ "..\fl\fl_widget.h"\
+ "..\fl\fl_window.h"\
+
+# End Source File
+# Begin Source File
+
SOURCE=..\src\Fl_Valuator.cxx
DEP_CPP_FL_VA=\
"..\fl\enumerations.h"\
@@ -1366,6 +1449,7 @@ DEP_CPP_FL_WI=\ "..\fl\enumerations.h"\
"..\fl\fl.h"\
"..\fl\fl_group.h"\
+ "..\fl\fl_tooltip.h"\
"..\fl\fl_widget.h"\
# End Source File
@@ -1419,9 +1503,21 @@ DEP_CPP_FL_WINDOW=\ # End Source File
# Begin Source File
+SOURCE=..\src\Fl_Wizard.cxx
+DEP_CPP_FL_WIZ=\
+ "..\fl\enumerations.h"\
+ "..\fl\fl_draw.h"\
+ "..\fl\fl_group.h"\
+ "..\fl\fl_widget.h"\
+ "..\fl\fl_wizard.h"\
+
+# End Source File
+# Begin Source File
+
SOURCE=..\src\Fl_x.cxx
DEP_CPP_FL_X_=\
"..\fl\enumerations.h"\
+ "..\fl\filename.h"\
"..\fl\fl.h"\
"..\fl\fl_group.h"\
"..\fl\fl_widget.h"\
@@ -1431,9 +1527,6 @@ DEP_CPP_FL_X_=\ "..\src\fl_win32.cxx"\
".\config.h"\
-NODEP_CPP_FL_X_=\
- ".\ys\types.h"\
-
# End Source File
# Begin Source File
@@ -1479,9 +1572,6 @@ DEP_CPP_FORMS=\ "..\fl\fl_window.h"\
"..\fl\forms.h"\
-NODEP_CPP_FORMS=\
- ".\ys\types.h"\
-
# End Source File
# Begin Source File
@@ -1529,9 +1619,6 @@ DEP_CPP_FORMS_=\ "..\fl\fl_window.h"\
"..\fl\forms.h"\
-NODEP_CPP_FORMS_=\
- ".\ys\types.h"\
-
# End Source File
# Begin Source File
@@ -1587,9 +1674,6 @@ DEP_CPP_FORMS_FS=\ "..\fl\fl_window.h"\
"..\fl\forms.h"\
-NODEP_CPP_FORMS_FS=\
- ".\ys\types.h"\
-
# End Source File
# Begin Source File
@@ -1635,9 +1719,6 @@ DEP_CPP_FORMS_P=\ "..\fl\fl_window.h"\
"..\fl\forms.h"\
-NODEP_CPP_FORMS_P=\
- ".\ys\types.h"\
-
# End Source File
# Begin Source File
@@ -1649,90 +1730,6 @@ DEP_CPP_FORMS_T=\ "..\fl\fl_timer.h"\
"..\fl\fl_widget.h"\
-NODEP_CPP_FORMS_T=\
- ".\ys\timeb.h"\
- ".\ys\types.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
# Begin Source File
@@ -1741,9 +1738,6 @@ DEP_CPP_NUMER=\ "..\fl\filename.h"\
".\config.h"\
-NODEP_CPP_NUMER=\
- ".\ys\types.h"\
-
# End Source File
# Begin Source File
@@ -1752,9 +1746,6 @@ DEP_CPP_SCAND=\ "..\src\scandir_win32.c"\
".\config.h"\
-NODEP_CPP_SCAND=\
- ".\ys\types.h"\
-
# End Source File
# Begin Source File
diff --git a/visualc/fltkgl.dsp b/visualc/fltkgl.dsp new file mode 100644 index 000000000..c8dd5ac7c --- /dev/null +++ b/visualc/fltkgl.dsp @@ -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
diff --git a/visualc/fltkgldll.dsp b/visualc/fltkgldll.dsp new file mode 100644 index 000000000..c78a1422b --- /dev/null +++ b/visualc/fltkgldll.dsp @@ -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
diff --git a/visualc/help.dsp b/visualc/help.dsp new file mode 100644 index 000000000..593b54769 --- /dev/null +++ b/visualc/help.dsp @@ -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
|
