From: Foster B. <fos...@us...> - 2006-02-27 20:42:09
|
Update of /cvsroot/adobe-source/sandbox/adobe-source/adobe/future/widgets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8667/adobe/future/widgets Modified Files: Jamfile.v2 Log Message: image_t (icons and pictures) support for Mac and Win32, along with a GIL image factory and a (sample) Targa file format importing module for that factory. Also added alert.adm/eve as a sample for the icon support. Added the notion of a working directory to the modal dialog interface to reference external resources. Also added an alert API that leverages modal_dialog_interface. Other misc. bug fixes and changes. Index: Jamfile.v2 =================================================================== RCS file: /cvsroot/adobe-source/sandbox/adobe-source/adobe/future/widgets/Jamfile.v2,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** Jamfile.v2 23 Feb 2006 23:28:55 -0000 1.9 --- Jamfile.v2 27 Feb 2006 20:41:58 -0000 1.10 *************** *** 11,17 **** # COMMON_SOURCES = ! client_assembler ! ui_core_common ! ui_core label_t ; --- 11,19 ---- # COMMON_SOURCES = ! client_assembler ! ui_core_common ! ui_core ! label_t ! image_t label_t ; *************** *** 21,27 **** # BRIDGE_SOURCES = ! display ! ui_overlay ! ui_core_implementation label_t_impl ; --- 23,31 ---- # BRIDGE_SOURCES = ! display ! ui_overlay ! ui_core_implementation ! label_t_impl ! image_t_impl label_t_impl ; *************** *** 62,66 **** <define>WINVER=0x501 <define>_WIN32_WINNT=0x501 <define>_WIN32_IE=0x501 ! <toolset>msvc:<linkflags>"gdi32.lib user32.lib comctl32.lib shell32.lib" # --- 66,70 ---- <define>WINVER=0x501 <define>_WIN32_WINNT=0x501 <define>_WIN32_IE=0x501 ! <toolset>msvc:<linkflags>"gdi32.lib user32.lib comctl32.lib shell32.lib comdlg32.lib" # |