camerauis/cameraxui/cxengine/inc/cxequalitypresets.h
changeset 19 d9aefe59d544
child 29 699651f2666f
equal deleted inserted replaced
3:8b2d6d0384b0 19:d9aefe59d544
       
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 *
       
    16 */
       
    17 #ifndef CXEQUALITYPRESETS_H
       
    18 #define CXEQUALITYPRESETS_H
       
    19 
       
    20 #include <imagingconfigmanager.h>
       
    21 #include "cxequalitydetails.h"
       
    22 
       
    23 
       
    24 /**!
       
    25 * Interface Class for CxeQualityPresetsSymbian
       
    26 * Queries supported image and video qualities from ICM and creates the related 
       
    27 * data and wraps up the quality settings for the client. 
       
    28 */
       
    29 class CxeQualityPresets
       
    30 {
       
    31 public:
       
    32     virtual ~CxeQualityPresets() {};
       
    33     virtual QList<CxeImageDetails> imageQualityPresets(Cxe::CameraIndex cameraId) = 0;
       
    34     virtual QList<CxeVideoDetails> videoQualityPresets(Cxe::CameraIndex cameraId) = 0;
       
    35     virtual qreal avgVideoBitRateScaler() = 0;
       
    36 };
       
    37 
       
    38 #endif  // CXEQUALITYPRESETS_H