igarden-commit Mailing List for GardenSketch (Page 65)
Status: Beta
Brought to you by:
jlbedell
You can subscribe to this list here.
| 2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(24) |
Nov
(77) |
Dec
(122) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2007 |
Jan
(103) |
Feb
(278) |
Mar
(130) |
Apr
(66) |
May
(56) |
Jun
(31) |
Jul
(94) |
Aug
(73) |
Sep
(22) |
Oct
(306) |
Nov
(52) |
Dec
|
| 2008 |
Jan
(27) |
Feb
(90) |
Mar
(218) |
Apr
(145) |
May
(114) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Jeffrey B. <jlb...@us...> - 2007-02-22 04:38:18
|
Update of /cvsroot/igarden/CommonSource/YAAFExtensions In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv3923 Modified Files: RGDialog.h RGDisclosureView.h Log Message: Win32 changes Index: RGDialog.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGDialog.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** RGDialog.h 1 Oct 2006 02:40:28 -0000 1.6 --- RGDialog.h 22 Feb 2007 04:38:17 -0000 1.7 *************** *** 40,44 **** typedef dialogCBResult_t (*RGPDialogCallbackProc)(XGDialog *d, class RGDialog *rgd,long msg,long arg,void *parg, void *callbackContext); ! class RGDialog { public: --- 40,44 ---- typedef dialogCBResult_t (*RGPDialogCallbackProc)(XGDialog *d, class RGDialog *rgd,long msg,long arg,void *parg, void *callbackContext); ! class YAAF_API RGDialog { public: Index: RGDisclosureView.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGDisclosureView.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** RGDisclosureView.h 5 Feb 2006 04:06:58 -0000 1.3 --- RGDisclosureView.h 22 Feb 2007 04:38:17 -0000 1.4 *************** *** 34,42 **** using yaaf::XGSViewInitRecord; ! class RGDisclosureView : public XGView { public: enum { ! kClassID = 'Disc' }; --- 34,42 ---- using yaaf::XGSViewInitRecord; ! class YAAF_API RGDisclosureView : public XGView { public: enum { ! kClassID = CHAR4('D','i','s','c') //'Disc' }; |
|
From: Jeffrey B. <jlb...@us...> - 2007-02-22 04:35:15
|
Update of /cvsroot/igarden/CommonSource/YAAFExtensions In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv2647 Modified Files: RGClipboard.h RGClipboard.cpp RGDateTime.h RGCompression.h Log Message: Win32 changes Index: RGCompression.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGCompression.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** RGCompression.h 15 Oct 2006 01:03:28 -0000 1.7 --- RGCompression.h 22 Feb 2007 04:35:14 -0000 1.8 *************** *** 46,50 **** class CGWorld; ! class RGCompression { public: static void CompressFileJPEG( CGWorld *image, --- 46,50 ---- class CGWorld; ! class YAAF_API RGCompression { public: static void CompressFileJPEG( CGWorld *image, Index: RGClipboard.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGClipboard.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** RGClipboard.h 18 Oct 2006 01:16:10 -0000 1.4 --- RGClipboard.h 22 Feb 2007 04:35:14 -0000 1.5 *************** *** 51,55 **** kClipText = 0 #else ! #error TO_BE_PORTED #endif }; --- 51,55 ---- kClipText = 0 #else ! kClipText = 0 // TO_BE_PORTED #endif }; *************** *** 67,71 **** */ ! class RGClipboard { public: /* --- 67,71 ---- */ ! class YAAF_API RGClipboard { public: /* Index: RGClipboard.cpp =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGClipboard.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** RGClipboard.cpp 18 Oct 2006 01:16:11 -0000 1.9 --- RGClipboard.cpp 22 Feb 2007 04:35:14 -0000 1.10 *************** *** 93,97 **** * Copy text */ ! text.SetSize(0); // zero out old handle /* --- 93,97 ---- * Copy text */ ! // TO_BE_PORTED text.SetSize(0); // zero out old handle /* *************** *** 182,188 **** h = ::GetClipboardData(CF_TEXT); if (!h) { ! text.SetSize(0); } else { ! CvtFromCRLF(text,h); } ::CloseClipboard(); --- 182,188 ---- h = ::GetClipboardData(CF_TEXT); if (!h) { ! // TO_BE_PORTED text.SetSize(0); } else { ! // TO_BE_PORTED CvtFromCRLF(text,h); } ::CloseClipboard(); Index: RGDateTime.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGDateTime.h,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** RGDateTime.h 7 Oct 2006 23:42:58 -0000 1.9 --- RGDateTime.h 22 Feb 2007 04:35:14 -0000 1.10 *************** *** 44,48 **** } RGDateBinaryFormat_t; ! class RGDateTime : public XGDateTime { public: --- 44,48 ---- } RGDateBinaryFormat_t; ! class YAAF_API RGDateTime : public XGDateTime { public: |
|
From: Jeffrey B. <jlb...@us...> - 2007-02-22 04:29:25
|
Update of /cvsroot/igarden/CommonSource/YAAFExtensions In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv32618 Modified Files: RGAction.cpp RGAreaFill.cpp Log Message: Win32 changes Index: RGAreaFill.cpp =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGAreaFill.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** RGAreaFill.cpp 15 Oct 2006 18:00:36 -0000 1.5 --- RGAreaFill.cpp 22 Feb 2007 04:29:24 -0000 1.6 *************** *** 95,97 **** AreaFillPattern(texture, outline, foreColor, destination, destArea); } ! #endif \ No newline at end of file --- 95,97 ---- AreaFillPattern(texture, outline, foreColor, destination, destArea); } ! #endif Index: RGAction.cpp =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGAction.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RGAction.cpp 8 Sep 2004 01:07:39 -0000 1.2 --- RGAction.cpp 22 Feb 2007 04:29:24 -0000 1.3 *************** *** 208,210 **** } ! } \ No newline at end of file --- 208,210 ---- } ! } |
|
From: Jeffrey B. <jlb...@us...> - 2007-02-22 04:29:21
|
Update of /cvsroot/igarden/CommonSource/CalendarView In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv32605 Modified Files: CalendarView.cpp Log Message: Win32 changes Index: CalendarView.cpp =================================================================== RCS file: /cvsroot/igarden/CommonSource/CalendarView/CalendarView.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** CalendarView.cpp 18 Oct 2006 01:15:29 -0000 1.9 --- CalendarView.cpp 22 Feb 2007 04:29:17 -0000 1.10 *************** *** 38,41 **** --- 38,42 ---- #include <XGArgStream.h> #include <XModifiers.h> + #include <stdio.h> //===================================================================================== |
|
From: Jeffrey B. <jlb...@us...> - 2007-02-22 04:27:39
|
Update of /cvsroot/igarden/CommonSource/YAAFExtensions In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv31799 Modified Files: RGBorderlessIcon.h Log Message: Win32 changes Index: RGBorderlessIcon.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGBorderlessIcon.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** RGBorderlessIcon.h 26 Aug 2004 11:39:37 -0000 1.1 --- RGBorderlessIcon.h 22 Feb 2007 04:27:36 -0000 1.2 *************** *** 75,79 **** } iconDragInfo_t; ! const long KXGIconDrag = 'icdg'; /************************************************************************/ --- 75,79 ---- } iconDragInfo_t; ! const long KXGIconDrag = CHAR4('i','c','d','g'); //'icdg'; /************************************************************************/ *************** *** 84,88 **** ! class RGBorderlessIcon : public XGControl { public: RGBorderlessIcon(XGView *parent, XGArgStream &init); --- 84,88 ---- ! class YAAF_API RGBorderlessIcon : public XGControl { public: RGBorderlessIcon(XGView *parent, XGArgStream &init); *************** *** 91,95 **** enum { ! kClassID = 'bicn' }; --- 91,95 ---- enum { ! kClassID = CHAR4('b','i','c','n') }; |
|
From: Jeffrey B. <jlb...@us...> - 2007-02-22 04:25:39
|
Update of /cvsroot/igarden/CommonSource/YAAFExtensions In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv30992 Modified Files: RGAreaFill.h DateSelectDialog.h RGAction.h RGBackdropView.h Log Message: Win32 changes Index: RGAreaFill.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGAreaFill.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** RGAreaFill.h 7 Oct 2006 23:48:49 -0000 1.3 --- RGAreaFill.h 22 Feb 2007 04:25:36 -0000 1.4 *************** *** 29,34 **** #include "CColor.h" ! void AreaFillPattern(CGWorld *pattern, CGWorld *outline, RGBColor edgeColor, XGView *destination, Rect destArea); //void AreaFillPattern(CGWorld pattern, CGWorld *destination, Rect destArea); ! void AreaFillColor(Color color, CGWorld *outline, Point fillStart, XGView *destination, Rect destArea); //void AreaFillColor(Color color, CGWorld *destination, Rect destArea); --- 29,34 ---- #include "CColor.h" ! YAAF_API void AreaFillPattern(CGWorld *pattern, CGWorld *outline, RGBColor edgeColor, XGView *destination, Rect destArea); //void AreaFillPattern(CGWorld pattern, CGWorld *destination, Rect destArea); ! YAAF_API void AreaFillColor(Color color, CGWorld *outline, Point fillStart, XGView *destination, Rect destArea); //void AreaFillColor(Color color, CGWorld *destination, Rect destArea); Index: DateSelectDialog.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/DateSelectDialog.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** DateSelectDialog.h 16 May 2005 22:40:45 -0000 1.3 --- DateSelectDialog.h 22 Feb 2007 04:25:36 -0000 1.4 *************** *** 30,34 **** #include "RGDialog.h" ! class DateSelectDialog : public RGDialog { public: --- 30,34 ---- #include "RGDialog.h" ! class YAAF_API DateSelectDialog : public RGDialog { public: Index: RGBackdropView.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGBackdropView.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** RGBackdropView.h 9 Oct 2006 12:09:13 -0000 1.4 --- RGBackdropView.h 22 Feb 2007 04:25:36 -0000 1.5 *************** *** 35,39 **** using namespace yaaf; ! class RGBackdropView : public XGView { public: --- 35,39 ---- using namespace yaaf; ! class YAAF_API RGBackdropView : public XGView { public: *************** *** 43,47 **** enum { ! kClassID = 'back' }; --- 43,47 ---- enum { ! kClassID = CHAR4('b','a','c','k') //'back' }; Index: RGAction.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGAction.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RGAction.h 8 Sep 2004 01:07:39 -0000 1.2 --- RGAction.h 22 Feb 2007 04:25:36 -0000 1.3 *************** *** 37,41 **** // --------------------------------------------------------------------------- ! class RGAction { public: RGAction( const RGAction& inOriginal ); --- 37,41 ---- // --------------------------------------------------------------------------- ! class YAAF_API RGAction { public: RGAction( const RGAction& inOriginal ); |
|
From: Jeffrey B. <jlb...@us...> - 2007-02-22 04:25:32
|
Update of /cvsroot/igarden/CommonSource/CalendarView In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv30972 Modified Files: CalendarView.h Log Message: Win32 changes Index: CalendarView.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/CalendarView/CalendarView.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** CalendarView.h 7 Oct 2006 23:38:39 -0000 1.5 --- CalendarView.h 22 Feb 2007 04:25:30 -0000 1.6 *************** *** 33,37 **** #include <XGSend.h> ! const long kCalendarDoubleClock = 'cdbl'; using namespace yaaf; --- 33,37 ---- #include <XGSend.h> ! const long kCalendarDoubleClock = CHAR4('c','d','b','l'); //'cdbl'; using namespace yaaf; *************** *** 94,98 **** // CCalendarControl Declaration //===================================================================================== ! class CalendarView : public XGView, public XGSend { --- 94,98 ---- // CCalendarControl Declaration //===================================================================================== ! class YAAF_API CalendarView : public XGView, public XGSend { *************** *** 102,106 **** // Public Object Enums and Constants //====================================== ! enum { kClassID = 'CDRP' }; enum { nextMonthHotSpot = 1, --- 102,107 ---- // Public Object Enums and Constants //====================================== ! enum { kClassID = CHAR4('C','D','R','P') //'CDRP' ! }; enum { nextMonthHotSpot = 1, |
|
From: Jeffrey B. <jlb...@us...> - 2007-02-22 04:23:38
|
Update of /cvsroot/igarden/CommonSource/CQTImagePane In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv30128 Modified Files: CGWorld.cpp CQTImagePane.h Log Message: Win32 changes Index: CGWorld.cpp =================================================================== RCS file: /cvsroot/igarden/CommonSource/CQTImagePane/CGWorld.cpp,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** CGWorld.cpp 18 Oct 2006 01:15:38 -0000 1.24 --- CGWorld.cpp 22 Feb 2007 04:23:37 -0000 1.25 *************** *** 13,19 **** --- 13,27 ---- #include <XCoreError.h> #include "MyAssert.h" + #if OPT_MACOS #include <OpenGL/glu.h> #include <OpenGL/glext.h> #include <OpenGL/gl.h> + #include <quickdraw.h> + #include <AGL/agl.h> + #elif OPT_WINOS + #include <gl/glu.h> + #include <gl/glext.h> + #include <gl/gl.h> + #endif #if OPT_MACOS Index: CQTImagePane.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/CQTImagePane/CQTImagePane.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** CQTImagePane.h 15 Oct 2006 01:02:58 -0000 1.7 --- CQTImagePane.h 22 Feb 2007 04:23:37 -0000 1.8 *************** *** 50,56 **** // ================================================================================= // Simple class for displaying an image (decompressible by QuickTime) in a Pane ! class CQTImagePane : public XGView { public: ! enum { kClassID = 'qtIM' }; CQTImagePane(); --- 50,56 ---- // ================================================================================= // Simple class for displaying an image (decompressible by QuickTime) in a Pane ! class YAAF_API CQTImagePane : public XGView { public: ! enum { kClassID = CHAR4('q','t','I','M') }; //'qtIM' }; CQTImagePane(); |
|
From: Jeffrey B. <jlb...@us...> - 2007-02-22 04:20:22
|
Update of /cvsroot/igarden/CommonSource/CColor In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv28877 Modified Files: CColor.h Log Message: Win32 changes Index: CColor.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/CColor/CColor.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** CColor.h 7 Oct 2006 23:49:35 -0000 1.3 --- CColor.h 22 Feb 2007 04:20:21 -0000 1.4 *************** *** 62,66 **** #endif ! class CColor { public: --- 62,66 ---- #endif ! class YAAF_API CColor { public: *************** *** 102,104 **** void CalcHexCode(); unsigned char NumToHex(unsigned char inValue, bool inHighBitsFlag = false) const; ! }; \ No newline at end of file --- 102,104 ---- void CalcHexCode(); unsigned char NumToHex(unsigned char inValue, bool inHighBitsFlag = false) const; ! }; |
|
From: Jeffrey B. <jlb...@us...> - 2007-02-22 04:20:14
|
Update of /cvsroot/igarden/CommonSource/CQTImagePane In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv28705 Modified Files: CGWorld.h Log Message: Win32 changes Index: CGWorld.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/CQTImagePane/CGWorld.h,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** CGWorld.h 7 Oct 2006 23:57:28 -0000 1.11 --- CGWorld.h 22 Feb 2007 04:20:10 -0000 1.12 *************** *** 10,14 **** --- 10,16 ---- #if OPT_MACOS #include <QDOffscreen.h> + #include <opengl/gl.h> #else + #include <gl/gl.h> typedef uint32 GWorldFlags; typedef void* CTabHandle; // Placeholder JeffB *************** *** 22,26 **** using namespace yaaf; ! class CGWorld { public: CGWorld(const Rect& inBounds, --- 24,28 ---- using namespace yaaf; ! class YAAF_API CGWorld { public: CGWorld(const Rect& inBounds, |
|
From: Jeffrey B. <jlb...@us...> - 2007-02-22 04:17:48
|
Update of /cvsroot/igarden/CommonSource/YAAFExtensions In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv27713 Modified Files: PictureSelectDialog.cpp Log Message: Win32 changes Index: PictureSelectDialog.cpp =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/PictureSelectDialog.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** PictureSelectDialog.cpp 18 Oct 2006 01:16:10 -0000 1.17 --- PictureSelectDialog.cpp 22 Feb 2007 04:17:47 -0000 1.18 *************** *** 29,32 **** --- 29,34 ---- #if OPT_MACOS #include "RedstartGarden.h" + #elif OPT_WINOS + #define NOMINMAX 1 #endif #include "PictureSelectDialog.h" |
|
From: Jeffrey B. <jlb...@us...> - 2007-02-22 04:14:27
|
Update of /cvsroot/igarden/CommonSource/YAAFExtensions In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv26512 Modified Files: RGDOMParser.h Log Message: Win32 changes Index: RGDOMParser.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGDOMParser.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RGDOMParser.h 20 Sep 2005 00:42:10 -0000 1.2 --- RGDOMParser.h 22 Feb 2007 04:14:21 -0000 1.3 *************** *** 35,39 **** using namespace yaaf; ! class RGDOMParser : public XGXMLDOMParser { public: --- 35,39 ---- using namespace yaaf; ! class YAAF_API RGDOMParser : public XGXMLDOMParser { public: *************** *** 49,51 **** }; ! #endif // __RGDOMParser \ No newline at end of file --- 49,51 ---- }; ! #endif // __RGDOMParser |
|
From: Jeffrey B. <jlb...@us...> - 2007-02-22 04:14:16
|
Update of /cvsroot/igarden/CommonSource/IC In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv26496 Modified Files: CInternetConfig.h Log Message: Win32 changes Index: CInternetConfig.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/IC/CInternetConfig.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** CInternetConfig.h 9 Oct 2006 01:45:39 -0000 1.2 --- CInternetConfig.h 22 Feb 2007 04:14:15 -0000 1.3 *************** *** 150,152 **** #endif ! #endif // C_INTERNET_CONFIG \ No newline at end of file --- 150,152 ---- #endif ! #endif // C_INTERNET_CONFIG |
|
From: Jeffrey B. <jlb...@us...> - 2007-02-22 04:13:31
|
Update of /cvsroot/igarden/CommonSource/YAAFExtensions In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv26099 Modified Files: RGSimpleDialogs.h PictureSelectDialog.h Log Message: Win32 changes Index: PictureSelectDialog.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/PictureSelectDialog.h,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** PictureSelectDialog.h 9 Feb 2006 13:41:09 -0000 1.9 --- PictureSelectDialog.h 22 Feb 2007 04:13:30 -0000 1.10 *************** *** 30,33 **** --- 30,34 ---- #include "CQTImagePane.h" #include "RGDialog.h" + #include "CGWorld.h" const int kPicturePickerDialog = 186; *************** *** 36,40 **** extern const char *kPictureLoadTag; ! class PictureSelectDialog : public RGDialog { public: --- 37,41 ---- extern const char *kPictureLoadTag; ! class YAAF_API PictureSelectDialog : public RGDialog { public: Index: RGSimpleDialogs.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGSimpleDialogs.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** RGSimpleDialogs.h 17 May 2006 00:07:15 -0000 1.3 --- RGSimpleDialogs.h 22 Feb 2007 04:13:30 -0000 1.4 *************** *** 32,36 **** #include <stdarg.h> ! class BooleanQueryDialog : public RGDialog { virtual void Setup(XGDialog *dlog); --- 32,36 ---- #include <stdarg.h> ! class YAAF_API BooleanQueryDialog : public RGDialog { virtual void Setup(XGDialog *dlog); *************** *** 44,48 **** ! class MultiOptionQueryDialog : public RGDialog { virtual void Setup(XGDialog *dlog); --- 44,48 ---- ! class YAAF_API MultiOptionQueryDialog : public RGDialog { virtual void Setup(XGDialog *dlog); |
|
From: Jeffrey B. <jlb...@us...> - 2007-02-22 04:11:03
|
Update of /cvsroot/igarden/CommonSource/YAAFExtensions In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv24908 Modified Files: RGGLView.cpp RGGLSVGDraw.h RGGLBitmapFont.h RGGLView.h Log Message: Win32 changes Index: RGGLView.cpp =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGGLView.cpp,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** RGGLView.cpp 18 Oct 2006 02:17:14 -0000 1.15 --- RGGLView.cpp 22 Feb 2007 04:11:01 -0000 1.16 *************** *** 36,39 **** --- 36,40 ---- #include "MyAssert.h" #include <XGWindow.h> + #include <stdio.h> static OSStatus aglReportError () Index: RGGLSVGDraw.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGGLSVGDraw.h,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** RGGLSVGDraw.h 3 Oct 2005 02:20:10 -0000 1.8 --- RGGLSVGDraw.h 22 Feb 2007 04:11:01 -0000 1.9 *************** *** 52,56 **** class SVGCacheEntry; ! class RGGLSVGDraw { public: --- 52,56 ---- class SVGCacheEntry; ! class YAAF_API RGGLSVGDraw { public: *************** *** 67,69 **** }; ! #endif // __RGGLSVGDraw \ No newline at end of file --- 67,69 ---- }; ! #endif // __RGGLSVGDraw Index: RGGLBitmapFont.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGGLBitmapFont.h,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** RGGLBitmapFont.h 22 Feb 2007 04:06:41 -0000 1.12 --- RGGLBitmapFont.h 22 Feb 2007 04:11:01 -0000 1.13 *************** *** 49,53 **** using namespace yaaf; ! class RGGLBitmapFont { public: --- 49,53 ---- using namespace yaaf; ! class YAAF_API RGGLBitmapFont { public: Index: RGGLView.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGGLView.h,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** RGGLView.h 18 Oct 2006 02:17:14 -0000 1.13 --- RGGLView.h 22 Feb 2007 04:11:01 -0000 1.14 *************** *** 37,40 **** --- 37,44 ---- #if OPT_MACOS #include <AGL/agl.h> + #elif OPT_WINOS + #include <gl/glu.h> + #include <gl/glext.h> + #include <gl/gl.h> #endif #include <XGView.h> *************** *** 88,92 **** ! class RGGLView : public XGView { public: --- 92,96 ---- ! class YAAF_API RGGLView : public XGView { public: |
|
From: Jeffrey B. <jlb...@us...> - 2007-02-22 04:06:42
|
Update of /cvsroot/igarden/CommonSource/YAAFExtensions In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv23254 Modified Files: RGGLBitmapFont.h Log Message: Win32 changes Index: RGGLBitmapFont.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGGLBitmapFont.h,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** RGGLBitmapFont.h 18 Oct 2006 02:17:18 -0000 1.11 --- RGGLBitmapFont.h 22 Feb 2007 04:06:41 -0000 1.12 *************** *** 37,40 **** --- 37,44 ---- #if OPT_MACOS #include <AGL/agl.h> + #elif OPT_WINOS + #include <gl/glu.h> + #include <gl/glext.h> + #include <gl/gl.h> #endif #include <XGString.h> |
|
From: Jeffrey B. <jlb...@us...> - 2007-02-22 04:03:33
|
Update of /cvsroot/igarden/CommonSource/YAAFExtensions In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv22062 Modified Files: RGUndoer.h RGUndoer.cpp Log Message: Win32 changes Index: RGUndoer.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGUndoer.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** RGUndoer.h 7 Oct 2006 23:47:27 -0000 1.4 --- RGUndoer.h 22 Feb 2007 04:03:32 -0000 1.5 *************** *** 37,43 **** } SCommandStatus, *SCommandStatusP; ! class RGUndoer/*!!! : public LAttachment*/ { public: ! enum { class_ID = 'undo' }; RGUndoer(); --- 37,44 ---- } SCommandStatus, *SCommandStatusP; ! class YAAF_API RGUndoer/*!!! : public LAttachment*/ { public: ! enum { class_ID = CHAR4('u','n','d','o') //'undo' ! }; RGUndoer(); Index: RGUndoer.cpp =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGUndoer.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** RGUndoer.cpp 1 Oct 2006 03:59:12 -0000 1.4 --- RGUndoer.cpp 22 Feb 2007 04:03:32 -0000 1.5 *************** *** 200,202 **** ! } \ No newline at end of file --- 200,202 ---- ! } |
|
From: Jeffrey B. <jlb...@us...> - 2007-02-22 04:02:42
|
Update of /cvsroot/igarden/CommonSource/YAAFExtensions In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv21653 Modified Files: RGColorCell.h RGTableView.h Log Message: Win32 changes Index: RGColorCell.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGColorCell.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** RGColorCell.h 7 Oct 2006 23:44:27 -0000 1.4 --- RGColorCell.h 22 Feb 2007 04:02:41 -0000 1.5 *************** *** 21,25 **** #include "RGTableCell.h" ! class RGColorCell : public RGTableCell { public: --- 21,25 ---- #include "RGTableCell.h" ! class YAAF_API RGColorCell : public RGTableCell { public: Index: RGTableView.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGTableView.h,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** RGTableView.h 7 Oct 2006 23:48:02 -0000 1.18 --- RGTableView.h 22 Feb 2007 04:02:41 -0000 1.19 *************** *** 51,54 **** --- 51,57 ---- class RGString; + using yaaf::RGInlineEdit; + using yaaf::XGView; + /************************************************************************/ /* */ *************** *** 57,64 **** /************************************************************************/ ! #define KTableChange 'Tcha' ! #define KTableRowMove 'Trmv' ! #define kTableSelectChange 'Tsch' ! #define kTableInputErr 'TsIE' /************************************************************************/ --- 60,67 ---- /************************************************************************/ ! #define KTableChange CHAR4('T','c','h','a') ! #define KTableRowMove CHAR4('T','r','m','v') ! #define kTableSelectChange CHAR4('T','s','c','h') ! #define kTableInputErr CHAR4('T','s','I','E') /************************************************************************/ *************** *** 100,104 **** }; - /************************************************************************/ /* */ --- 103,106 ---- *************** *** 113,117 **** */ ! class RGTableView : public XGView, public XGSend { public: RGTableView(XGView *, XGArgStream &); --- 115,119 ---- */ ! class YAAF_API RGTableView : public XGView, public XGSend { public: RGTableView(XGView *, XGArgStream &); *************** *** 122,130 **** RGTableView(const RGTableView& p); // copy constructor public: ! ! enum { ! kClassID = 'GTab' ! }; ! bool HasUndo() { return _undoer != NULL; } void SetDialogCallback(RGPDialogCallbackProc proc, void *callbackContext); --- 124,132 ---- RGTableView(const RGTableView& p); // copy constructor public: ! ! enum { ! kClassID = CHAR4('G','T','a','b') //'GTab' ! }; ! bool HasUndo() { return _undoer != NULL; } void SetDialogCallback(RGPDialogCallbackProc proc, void *callbackContext); *************** *** 195,199 **** void ShowRow(short row); virtual bool isRowVisible(short row); ! // virtual void SetCell(short row, short col, RGTableCell *cell); RGTableCell *GetCell(short row, short col); --- 197,201 ---- void ShowRow(short row); virtual bool isRowVisible(short row); ! // virtual void SetCell(short row, short col, RGTableCell *cell); RGTableCell *GetCell(short row, short col); *************** *** 222,226 **** } void SetSelectRow(short, short col = -1); ! void Update(); // Make proected friend to cell!!! XGPopWindow *_imagePopup; // Make proected friend to cell!!! --- 224,228 ---- } void SetSelectRow(short, short col = -1); ! void Update(); // Make proected friend to cell!!! XGPopWindow *_imagePopup; // Make proected friend to cell!!! *************** *** 262,266 **** void RecalcScroll(); void ScrollInRange(); ! void SetDataType(short row, short col, short type); --- 264,268 ---- void RecalcScroll(); void ScrollInRange(); ! void SetDataType(short row, short col, short type); |
|
From: Jeffrey B. <jlb...@us...> - 2007-02-22 03:53:24
|
Update of /cvsroot/igarden/CommonSource/YAAFExtensions In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv18029 Modified Files: RGTableCell.h Log Message: Win32 changes Index: RGTableCell.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGTableCell.h,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** RGTableCell.h 7 Oct 2006 23:41:41 -0000 1.25 --- RGTableCell.h 22 Feb 2007 03:53:23 -0000 1.26 *************** *** 125,129 **** ! class RGTableCell { public: static RGTableCell *Factory(XGCollection *fdata, struct RowRecord *myRow, struct ColRecord *myCol, class RGTableView *parent); --- 125,129 ---- ! class YAAF_API RGTableCell { public: static RGTableCell *Factory(XGCollection *fdata, struct RowRecord *myRow, struct ColRecord *myCol, class RGTableView *parent); *************** *** 231,235 **** }; ! class AddRemoveDialog : public RGDialog { virtual void Setup(XGDialog *dlog) {} --- 231,235 ---- }; ! class YAAF_API AddRemoveDialog : public RGDialog { virtual void Setup(XGDialog *dlog) {} |
|
From: Jeffrey B. <jlb...@us...> - 2007-02-22 03:52:37
|
Update of /cvsroot/igarden/CommonSource/YAAFExtensions In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv17640 Modified Files: RGTableAction.h Log Message: Win32 changes Index: RGTableAction.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGTableAction.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** RGTableAction.h 30 Jun 2005 15:10:35 -0000 1.5 --- RGTableAction.h 22 Feb 2007 03:52:36 -0000 1.6 *************** *** 42,46 **** using yaaf::XGString; ! class RGTableAction : public yaaf::RGAction { public: --- 42,46 ---- using yaaf::XGString; ! class YAAF_API RGTableAction : public yaaf::RGAction { public: |
|
From: Jeffrey B. <jlb...@us...> - 2007-02-22 03:49:37
|
Update of /cvsroot/igarden/CommonSource/YAAFExtensions In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv16443 Modified Files: RGDOMParser.cpp TextEntryDialog.h Log Message: Win32 changes Index: TextEntryDialog.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/TextEntryDialog.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** TextEntryDialog.h 13 Jan 2006 23:05:31 -0000 1.4 --- TextEntryDialog.h 22 Feb 2007 03:49:36 -0000 1.5 *************** *** 29,33 **** #include "RGDialog.h" ! class TextEntryDialog : public RGDialog { public: --- 29,33 ---- #include "RGDialog.h" ! class YAAF_API TextEntryDialog : public RGDialog { public: Index: RGDOMParser.cpp =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGDOMParser.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RGDOMParser.cpp 20 Sep 2005 00:42:10 -0000 1.2 --- RGDOMParser.cpp 22 Feb 2007 03:49:36 -0000 1.3 *************** *** 31,34 **** --- 31,35 ---- #include "RGDOMParser.h" #include "XErrorDialogs.h" + #include <stdio.h> RGDOMParser::RGDOMParser(char *referenceName, bool raiseDialog, yaaf::XGStringScanner::StringTable *s) : XGXMLDOMParser(s) |
|
From: Jeffrey B. <jlb...@us...> - 2007-02-22 03:48:05
|
Update of /cvsroot/igarden/CommonSource/yaaf/Libraries/yaaf_gui/headers In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv15705 Modified Files: XGTablePlacement.h Log Message: Win32 changes Index: XGTablePlacement.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/yaaf/Libraries/yaaf_gui/headers/XGTablePlacement.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** XGTablePlacement.h 2 Oct 2006 02:27:38 -0000 1.1 --- XGTablePlacement.h 22 Feb 2007 03:48:04 -0000 1.2 *************** *** 3,6 **** --- 3,8 ---- * This arranges it's children views around the borders of the * view. + Some contributions by: + je...@re... */ *************** *** 27,31 **** */ ! class XGTablePlacement : public XGPlacementView { public: XGTablePlacement(XGView *p, XGArgStream &s); --- 29,33 ---- */ ! class YAAF_API XGTablePlacement : public XGPlacementView { public: XGTablePlacement(XGView *p, XGArgStream &s); *************** *** 33,37 **** enum { ! kClassID = 'tabp' }; --- 35,39 ---- enum { ! kClassID = CHAR4('t','a','b','p') //'tabp' }; |
|
From: Jeffrey B. <jlb...@us...> - 2007-02-22 03:47:28
|
Update of /cvsroot/igarden/CommonSource/yaaf/Libraries/yaaf_gui/headers In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv15598 Modified Files: XGButton.h XGDraw.h Log Message: Win32 changes Index: XGButton.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/yaaf/Libraries/yaaf_gui/headers/XGButton.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** XGButton.h 1 Oct 2006 19:14:19 -0000 1.1 --- XGButton.h 22 Feb 2007 03:47:25 -0000 1.2 *************** *** 2,5 **** --- 2,7 ---- * * Button object; this handles the basic button view + Some contributions by: + je...@re... */ *************** *** 33,37 **** */ ! class XGButton : public XGControl { public: XGButton(XGView *, XGArgStream &); --- 35,39 ---- */ ! class YAAF_API XGButton : public XGControl { public: XGButton(XGView *, XGArgStream &); Index: XGDraw.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/yaaf/Libraries/yaaf_gui/headers/XGDraw.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** XGDraw.h 1 Oct 2006 19:14:40 -0000 1.1 --- XGDraw.h 22 Feb 2007 03:47:25 -0000 1.2 *************** *** 3,6 **** --- 3,8 ---- * Drawing support class. This is a thread safe mechanism for * grabbing the drawing context of a view and drawing into it. + Some contributions by: + je...@re... */ *************** *** 131,135 **** */ ! class XGDraw { public: XGDraw(XGView *v, bool lc = true); --- 133,137 ---- */ ! class YAAF_API XGDraw { public: XGDraw(XGView *v, bool lc = true); |
|
From: Jeffrey B. <jlb...@us...> - 2007-02-22 03:44:03
|
Update of /cvsroot/igarden/CommonSource/yaaf/Libraries/yaaf_gui/headers In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv14036 Modified Files: XGDropper.h Log Message: Win32 changes Index: XGDropper.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/yaaf/Libraries/yaaf_gui/headers/XGDropper.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** XGDropper.h 1 Oct 2006 19:14:41 -0000 1.1 --- XGDropper.h 22 Feb 2007 03:44:01 -0000 1.2 *************** *** 34,37 **** --- 34,39 ---- Contact: wo...@al... Web page: http://www.pandawave.com/yaaf/ + Some contributions by: + je...@re... **********************************************************************/ *************** *** 70,74 **** */ ! class XGDropper { public: XGDropper(); --- 72,76 ---- */ ! class YAAF_API XGDropper { public: XGDropper(); |
|
From: Jeffrey B. <jlb...@us...> - 2007-02-22 03:42:37
|
Update of /cvsroot/igarden/CommonSource/yaaf/Libraries/yaaf_gui/headers In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv13621 Modified Files: XGView.h Log Message: Win32 changes Index: XGView.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/yaaf/Libraries/yaaf_gui/headers/XGView.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** XGView.h 1 Oct 2006 19:15:06 -0000 1.1 --- XGView.h 22 Feb 2007 03:42:36 -0000 1.2 *************** *** 31,34 **** --- 31,36 ---- Contact: wo...@al... Web page: http://www.pandawave.com/yaaf/ + Some contributions by: + je...@re... **********************************************************************/ *************** *** 111,115 **** */ ! class XGView : public XGDispatch { public: /* --- 113,117 ---- */ ! class YAAF_API XGView : public XGDispatch { public: /* |