From: Foster B. <fos...@us...> - 2006-01-24 19:39:05
|
Update of /cvsroot/adobe-source/sandbox/adobe-source/adobe/test/gil In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12473/adobe-source/adobe/test/gil Modified Files: pixel.cpp pixel_iterator.cpp Log Message: moved win/ directories to win32/ to anticipate a possible widgets port for WPF; added a 'mini-sheet' to Eve so you can save UI state information (what tab is currently selected) without mucking up your Adam model; started the modal_dialog_interface, an API that'll be used to direct a modal dialog interaction between the user and the application (it's still in its infancy); other misc bug fixes Index: pixel.cpp =================================================================== RCS file: /cvsroot/adobe-source/sandbox/adobe-source/adobe/test/gil/pixel.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** pixel.cpp 6 Jan 2006 18:03:03 -0000 1.1 --- pixel.cpp 24 Jan 2006 19:38:51 -0000 1.2 *************** *** 53,59 **** gil_function_requires<PixelConcept<rgb8c_pixel> >(); ! gil_function_requires<PixelsConvertibleConcept<rgb8_pixel,cmyk16_pixel> >(); ! gil_function_requires<PixelsConvertibleConcept<rgb8_pixel,cmyk16_planar_ref> >(); ! gil_function_requires<PixelsConvertibleConcept<gray8c_pixel,cmyk16_planar_ref> >(); BOOST_STATIC_ASSERT(rgb_tag::num_channels==3); --- 53,59 ---- gil_function_requires<PixelConcept<rgb8c_pixel> >(); ! gil_function_requires<PixelConvertibleConcept<rgb8_pixel,cmyk16_pixel> >(); ! gil_function_requires<PixelConvertibleConcept<rgb8_pixel,cmyk16_planar_ref> >(); ! gil_function_requires<PixelConvertibleConcept<gray8c_pixel,cmyk16_planar_ref> >(); BOOST_STATIC_ASSERT(rgb_tag::num_channels==3); Index: pixel_iterator.cpp =================================================================== RCS file: /cvsroot/adobe-source/sandbox/adobe-source/adobe/test/gil/pixel_iterator.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** pixel_iterator.cpp 6 Jan 2006 18:03:03 -0000 1.1 --- pixel_iterator.cpp 24 Jan 2006 19:38:51 -0000 1.2 *************** *** 36,41 **** boost::function_requires<MutablePixelStepIteratorConcept<rgb8_step_ptr> >(); ! boost::function_requires<MutableXYLocatorConcept<rgb8_step_loc> >(); ! boost::function_requires<XYLocatorConcept<rgb8c_planar_step_loc> >(); boost::function_requires<MutablePixelStepIteratorConcept<cmyk8_planar_step_ptr> >(); --- 36,41 ---- boost::function_requires<MutablePixelStepIteratorConcept<rgb8_step_ptr> >(); ! boost::function_requires<MutablePixelLocatorConcept<rgb8_step_loc> >(); ! boost::function_requires<PixelLocatorConcept<rgb8c_planar_step_loc> >(); boost::function_requires<MutablePixelStepIteratorConcept<cmyk8_planar_step_ptr> >(); |