equal
deleted
inserted
replaced
|
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 |
|
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 int recordingTimeAvailable(const CxeVideoDetails& details, qint64 space) = 0; |
|
36 }; |
|
37 |
|
38 #endif // CXEQUALITYPRESETS_H |