|
From: Ralph T. <ra...@us...> - 2005-04-08 21:03:58
|
Update of /cvsroot/adobe-source/sandbox/adobe-source/adobe/test/visual In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31751/adobe-source/adobe/test/visual Modified Files: Jamfile Log Message: Visual Styles are enabled by default on Windows XP, and controls appear correctly on tabs, etc. A resource file has been added, and the generated exe now has the Adobe Begin icon. The following items still need to be completed on the Windows implementation of ui-core before it reaches parity with the Mac implementation: - slider_t needs to report changes, and actually set it's value. - progress_bar_t also needs work. - link_t's event mechanism should be looked at, it may not be painting when required. Index: Jamfile =================================================================== RCS file: /cvsroot/adobe-source/sandbox/adobe-source/adobe/test/visual/Jamfile,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Jamfile 5 Apr 2005 05:46:04 -0000 1.5 --- Jamfile 8 Apr 2005 21:03:49 -0000 1.6 *************** *** 8,22 **** if [ os.name ] = NT { ! PLATFORM_HEADERS = headers/win ; PLATFORM_SOURCE_DIR = sources/win ; ! PLATFORM_SOURCES = sources/win/metrics.cpp sources/win/event_dispatcher.cpp ; } else { PLATFORM_HEADERS = headers/mac ; PLATFORM_SOURCE_DIR = sources/mac ; PLATFORM_SOURCES = ; } project adobe/visual ! : requirements <toolset>msvc:<linkflags>"uxtheme.lib gdi32.lib user32.lib comctl32.lib /subsystem:windows" : requirements <include>headers <link>static ; --- 8,29 ---- if [ os.name ] = NT { ! PLATFORM_HEADERS = headers/win resources ; PLATFORM_SOURCE_DIR = sources/win ; ! PLATFORM_SOURCES = sources/win/metrics.cpp sources/win/event_dispatcher.cpp resources/resources.rc ; ! # ! # These two definitions say that we're targetting Windows XP. That ! # means that we get various preprocessor definitions which we need, ! # such as the WS_EX_COMPOSITED window style. ! # ! PLATFORM_DEFINITIONS = <define>WINVER=0x501 <define>_WIN32_WINNT=0x501 ; } else { PLATFORM_HEADERS = headers/mac ; PLATFORM_SOURCE_DIR = sources/mac ; PLATFORM_SOURCES = ; + PLATFORM_DEFINITIONS = ; } project adobe/visual ! : requirements <toolset>msvc:<linkflags>"gdi32.lib user32.lib comctl32.lib /subsystem:windows" : requirements <include>headers <link>static ; *************** *** 32,35 **** /adobe//asl_lib_dev /boost/filesystem//boost_filesystem ! : <include>$(PLATFORM_HEADERS) <link>static ; ! # <variant>release:<define>NDEBUG ; --- 39,41 ---- /adobe//asl_lib_dev /boost/filesystem//boost_filesystem ! : <include>$(PLATFORM_HEADERS) $(PLATFORM_DEFINITIONS) <link>static ; |