Hi Sean, On Sat, 6 Nov 2010 03:09:14 am ext Sean Kelley wrote: > Hi, > Can someone explain what options exist for bringing out controls from a > camerabin for APIs that QtMobility does not currently support? For > example, say I have a camerabin wtih red-eye control. But Qt-Mobility > lacks that API. What is the best way to handle it?
It depends on the level of complexity of platform specific functions, for simple controls like flags/simple values it's possible to add an QObject property to QCameraControl. It's not implemented yet but we are considering to automatically forward such properties to QCamera level to be easily accessible by application. In some cases the appropriate solution is to extend the current QCamera* enum values, like QCameraExposure::ExposureMode (starting with ExposureModeVendor), or to to add an extended QCameraExposureControl::ExposureParameter or QCameraImageProcessingControl::ProcessingParameter. For advanced/complex platform specific extensions it's possible to introduce new platform specific QMediaControls. > > Thanks, > > Sean Regards Dmytro. _______________________________________________ Qt-mobility-feedback mailing list [email protected] http://lists.trolltech.com/mailman/listinfo/qt-mobility-feedback
