From: Foster B. <fos...@us...> - 2006-02-27 20:42:13
|
Update of /cvsroot/adobe-source/sandbox/adobe-source/ide_projects/darwin/asl_widgets.xcodeproj In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8667/ide_projects/darwin/asl_widgets.xcodeproj Modified Files: project.pbxproj 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: project.pbxproj =================================================================== RCS file: /cvsroot/adobe-source/sandbox/adobe-source/ide_projects/darwin/asl_widgets.xcodeproj/project.pbxproj,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** project.pbxproj 23 Feb 2006 23:28:57 -0000 1.4 --- project.pbxproj 27 Feb 2006 20:42:00 -0000 1.5 *************** *** 10,13 **** --- 10,15 ---- CE4EF96B09AA773B006AB513 /* label_t.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CE4EF96A09AA773B006AB513 /* label_t.cpp */; }; CE4EF96D09AA7741006AB513 /* label_t_impl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CE4EF96C09AA7741006AB513 /* label_t_impl.cpp */; }; + CE4EFA8609AA976B006AB513 /* image_t.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CE4EFA8509AA976B006AB513 /* image_t.cpp */; }; + CE4EFA8809AA9772006AB513 /* image_t_impl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CE4EFA8709AA9772006AB513 /* image_t_impl.cpp */; }; CE5C209A094799D100EB4BB6 /* client_assembler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CE5C2097094799D100EB4BB6 /* client_assembler.cpp */; }; CE5C209B094799D100EB4BB6 /* ui_core_common.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CE5C2098094799D100EB4BB6 /* ui_core_common.cpp */; }; *************** *** 57,60 **** --- 59,64 ---- CE4EF96A09AA773B006AB513 /* label_t.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = label_t.cpp; path = ../../adobe/future/widgets/sources/label_t.cpp; sourceTree = SOURCE_ROOT; }; CE4EF96C09AA7741006AB513 /* label_t_impl.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = label_t_impl.cpp; path = ../../adobe/future/widgets/sources/mac/label_t_impl.cpp; sourceTree = SOURCE_ROOT; }; + CE4EFA8509AA976B006AB513 /* image_t.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = image_t.cpp; path = ../../adobe/future/widgets/sources/image_t.cpp; sourceTree = SOURCE_ROOT; }; + CE4EFA8709AA9772006AB513 /* image_t_impl.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = image_t_impl.cpp; path = ../../adobe/future/widgets/sources/mac/image_t_impl.cpp; sourceTree = SOURCE_ROOT; }; CE5C2036094797C700EB4BB6 /* adobe_debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.xcconfig; path = adobe_debug.xcconfig; sourceTree = "<group>"; }; CE5C2037094797C700EB4BB6 /* adobe_release.xcconfig */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.xcconfig; path = adobe_release.xcconfig; sourceTree = "<group>"; }; *************** *** 104,107 **** --- 108,113 ---- CE4EF96A09AA773B006AB513 /* label_t.cpp */, CE4EF96C09AA7741006AB513 /* label_t_impl.cpp */, + CE4EFA8509AA976B006AB513 /* image_t.cpp */, + CE4EFA8709AA9772006AB513 /* image_t_impl.cpp */, CE5C20A0094799FA00EB4BB6 /* metrics.cpp */, CE5C20A1094799FA00EB4BB6 /* ui_core_implementation.cpp */, *************** *** 242,245 **** --- 248,253 ---- CE4EF96B09AA773B006AB513 /* label_t.cpp in Sources */, CE4EF96D09AA7741006AB513 /* label_t_impl.cpp in Sources */, + CE4EFA8609AA976B006AB513 /* image_t.cpp in Sources */, + CE4EFA8809AA9772006AB513 /* image_t_impl.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; |