Update of /cvsroot/wgui/wgui
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2833
Modified Files:
CHANGES wGui-VS7.vcproj wGui-VS71.vcproj wgui.dsp
Log Message:
Added CRangeControl.
Index: CHANGES
===================================================================
RCS file: /cvsroot/wgui/wgui/CHANGES,v
retrieving revision 1.136
retrieving revision 1.137
diff -C2 -d -r1.136 -r1.137
*** CHANGES 23 Apr 2004 03:45:42 -0000 1.136
--- CHANGES 26 Apr 2004 22:38:00 -0000 1.137
***************
*** 1,3 ****
--- 1,4 ----
0.3.2 -> 0.3.3
+ + Added CRangeControl class: An abstraction of all controls that have a value that's constricted to a certain range (progress bar, scroll bar, etc)
***************
*** 12,16 ****
+ Added CView: The view now has a "floating window" pointer, which is used to ensure that a floating window (menu or drop list) is drawn on top of everything
+ Added wUtil::CLog class: A logging utility
! + Added messages: CTRL_GAININKEYFOCUS, CTRL_LOSINGKEYFOCUS, CTRL_GAININGMOUSEFOCUS, CTRL_LOSINGMOUSEFOCUS
which are sent to controls when they gain or lose mouse and keyboard focus
+ Added Bullseye Tutorial: A custom control (widget) tutorial
--- 13,17 ----
+ Added CView: The view now has a "floating window" pointer, which is used to ensure that a floating window (menu or drop list) is drawn on top of everything
+ Added wUtil::CLog class: A logging utility
! + Added messages: CTRL_GAININKEYFOCUS, CTRL_LOSINGKEYFOCUS, CTRL_GAININGMOUSEFOCUS, CTRL_LOSINGMOUSEFOCUS
which are sent to controls when they gain or lose mouse and keyboard focus
+ Added Bullseye Tutorial: A custom control (widget) tutorial
Index: wgui.dsp
===================================================================
RCS file: /cvsroot/wgui/wgui/wgui.dsp,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** wgui.dsp 31 Mar 2004 15:37:48 -0000 1.9
--- wgui.dsp 26 Apr 2004 22:38:00 -0000 1.10
***************
*** 8,24 ****
!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 "wgui.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 "wgui.mak" CFG="wgui - Win32 Debug"
! !MESSAGE
!MESSAGE Possible choices for configuration are:
! !MESSAGE
!MESSAGE "wgui - Win32 Release" (based on "Win32 (x86) Static Library")
!MESSAGE "wgui - Win32 Debug" (based on "Win32 (x86) Static Library")
! !MESSAGE
# Begin Project
--- 8,24 ----
!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 "wgui.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 "wgui.mak" CFG="wgui - Win32 Debug"
! !MESSAGE
!MESSAGE Possible choices for configuration are:
! !MESSAGE
!MESSAGE "wgui - Win32 Release" (based on "Win32 (x86) Static Library")
!MESSAGE "wgui - Win32 Debug" (based on "Win32 (x86) Static Library")
! !MESSAGE
# Begin Project
***************
*** 77,81 ****
# ADD LIB32 /nologo /out:"lib\wguid.lib"
! !ENDIF
# Begin Target
--- 77,81 ----
# ADD LIB32 /nologo /out:"lib\wguid.lib"
! !ENDIF
# Begin Target
***************
*** 172,175 ****
--- 172,179 ----
# Begin Source File
+ SOURCE=src\wg_range_control.cpp
+ # End Source File
+ # Begin Source File
+
SOURCE=src\wg_rect.cpp
# End Source File
***************
*** 364,367 ****
--- 368,375 ----
# Begin Source File
+ SOURCE=includes\wg_range_control.h
+ # End Source File
+ # Begin Source File
+
SOURCE=includes\wg_rect.h
# End Source File
Index: wGui-VS7.vcproj
===================================================================
RCS file: /cvsroot/wgui/wgui/wGui-VS7.vcproj,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** wGui-VS7.vcproj 31 Mar 2004 15:37:48 -0000 1.17
--- wGui-VS7.vcproj 26 Apr 2004 22:38:00 -0000 1.18
***************
*** 162,165 ****
--- 162,168 ----
</File>
<File
+ RelativePath="src\wg_range_control.cpp">
+ </File>
+ <File
RelativePath="src\wg_rect.cpp">
</File>
***************
*** 280,283 ****
--- 283,289 ----
</File>
<File
+ RelativePath="includes\wg_range_control.h">
+ </File>
+ <File
RelativePath="includes\wg_rect.h">
</File>
Index: wGui-VS71.vcproj
===================================================================
RCS file: /cvsroot/wgui/wgui/wGui-VS71.vcproj,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** wGui-VS71.vcproj 31 Mar 2004 15:37:48 -0000 1.3
--- wGui-VS71.vcproj 26 Apr 2004 22:38:00 -0000 1.4
***************
*** 176,179 ****
--- 176,182 ----
</File>
<File
+ RelativePath="src\wg_range_control.cpp">
+ </File>
+ <File
RelativePath="src\wg_rect.cpp">
</File>
***************
*** 291,294 ****
--- 294,300 ----
</File>
<File
+ RelativePath="includes\wg_range_control.h">
+ </File>
+ <File
RelativePath="includes\wg_rect.h">
</File>
|