camerauis/cameraxui/cxui/inc/cxuiprecaptureview.h
branchRCL_3
changeset 53 61bc0f252b2b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/camerauis/cameraxui/cxui/inc/cxuiprecaptureview.h	Tue Aug 31 15:03:46 2010 +0300
@@ -0,0 +1,190 @@
+/*
+* Copyright (c) 2009-2010 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:
+*
+*/
+#ifndef CXUIPRECAPTUREVIEW_H
+#define CXUIPRECAPTUREVIEW_H
+
+#include <QObject>
+#include <QTimer>
+#include <QList>
+#include <hbview.h>
+#include <hbradiobuttonlist.h>
+#include <hbframedrawer.h>
+
+#include "cxezoomcontrol.h"
+#include "cxegeotaggingtrail.h"
+#include "cxeviewfindercontrol.h"
+#include "cxuidisplaypropertyhandler.h"
+#include "cxuiview.h"
+
+
+class HbAction;
+class HbLabel;
+class HbSlider;
+class CxeEngine;
+class HbMainWindow;
+class CxuiSettingsInfo;
+class HbToolBarExtension;
+class CxuiDocumentLoader;
+class HbTransparentWindow;
+class CxuiCaptureKeyHandler;
+class CxuiCaptureKeyHandler;
+class CxuiSettingDialog;
+class CxuiSettingRadioButtonList;
+class CxuiSettingSlider;
+class HbToolBarExtension;
+class HbWidget;
+class CxuiZoomSlider;
+class CxuiFullScreenPopup;
+
+
+/**
+ * Pre-capture view
+ */
+class CxuiPrecaptureView : public CxuiView
+{
+    Q_OBJECT
+
+public:
+    CxuiPrecaptureView(QGraphicsItem *parent = 0);
+
+    virtual ~CxuiPrecaptureView();
+
+public:
+
+    virtual void construct(HbMainWindow *mainWindow,
+                           CxeEngine *engine,
+                           CxuiDocumentLoader *documentLoader,
+                           CxuiCaptureKeyHandler *keyHandler,
+                           HbActivityManager *activityManager);
+
+    virtual bool isStandbyModeSupported() const;
+    /**
+    * Loads widgets that are not part of the default section in layouts xml.
+    * Widgets are created at the time they are first loaded.
+    */
+    virtual void loadWidgets() = 0;
+
+signals:
+
+    /*!
+    * Signal that view is ready to be used.
+    */
+    void viewReady();
+
+    // signals to switch to post/pre-capture view.
+    void changeToPostcaptureView();
+    void changeToPrecaptureView();
+
+    // Switching between cameras
+    void switchCamera();
+
+    // signals to start and stop standby timer
+    void startStandbyTimer();
+    void stopStandbyTimer();
+
+    // signal to report error to ErrorManager for further actions.
+    void errorEncountered(CxeError::Id id);
+
+public slots:
+
+    void initCamera();
+    void requestCameraSwitch();
+
+    // whenever a setting is changed on the engine side, an icon might need updating
+    // connects to the settingValueChanged signal of CxeSettings
+    virtual void handleSettingValueChanged(const QString& key, QVariant newValue);
+
+    void toolbarExtensionDisappearEffectFinished(const HbEffect::EffectStatus &status);
+    void toolbarExtensionAppearEffectFinished(const HbEffect::EffectStatus &status);
+
+    // From CxuiView
+    virtual void enterStandby();
+    virtual void exitStandby();
+
+protected slots:
+
+    // Key events
+    virtual void handleAutofocusKeyPressed();
+
+    // Camera / Engine
+    void handleEngineZoomStateChange(CxeZoomControl::State newState, CxeError::Id error);
+    void handleZoomLevelChange(int);
+    void handleVfStateChanged(CxeViewfinderControl::State newState, CxeError::Id error);
+    // UI: Zoom slider change notification
+    void zoomTo(int value);
+
+    void disableControlsTimeout();
+
+    void toggleZoom();
+
+    // Settings related
+    void showSettingsGrid();
+    void hideSettingsGrid();
+    void launchSliderSetting();
+    void prepareToShowDialog(HbAction *action);
+    void prepareToCloseDialog(HbAction *action);
+    void updateLocationIndicator(CxeGeoTaggingTrail::State newState, CxeError::Id error);
+
+private slots:
+    void disableGeotaggingDisclaimer();
+    void launchGeoTaggingSetting();
+
+protected:
+    void toggleControls();
+    virtual void initializeSettingsGrid() = 0;
+    void showEvent(QShowEvent *event);
+    void hideEvent(QHideEvent *event);
+    bool eventFilter(QObject *object, QEvent *event);
+    void launchSettingsDialog(QObject *action);
+    virtual bool isPostcaptureOn() const = 0;
+    void addIncreaseDecreaseButtons(CxuiZoomSlider *slider);
+    QString getSettingItemIcon(const QString &key, QVariant value);
+    virtual void updateQualityIcon() = 0;
+    virtual void updateSceneIcon(const QString& sceneId) = 0;
+    void launchGeoTaggingDisclaimerDialog();
+
+private:
+    CxuiSettingDialog* createSettingsDialog();
+    CxuiSettingDialog* createSliderSettingsDialog();
+    QPointF getDialogPosition();
+
+protected:
+    HbTransparentWindow *mViewfinder; // not own, owned by the graphics scene
+    CxuiDisplayPropertyHandler *mDisplayHandler;
+    HbToolBarExtension *mSettingsGrid;
+    bool mWidgetsLoaded;
+    CxuiSettingDialog *mSettingsDialog;
+    CxuiSettingRadioButtonList *mSettingsDialogList;
+    HbLabel *mQualityIcon;
+    HbLabel *mGeoTaggingIndicatorIcon;
+    HbLabel *mFaceTrackingIcon;
+    CxuiFullScreenPopup *mStandbyPopup;
+
+private:
+    HbLabel *mSettingsDialogHeading;
+
+    CxuiSettingDialog *mSliderSettingsDialog;
+    HbLabel *mSliderSettingsDialogHeading;
+    CxuiSettingSlider *mSettingsSlider;
+
+    CxuiSettingsInfo *mSettingsInfo;
+
+    HbAction *mSettingsDialogOkAction;
+    HbAction *mSliderSettingsDialogOkAction;
+};
+
+#endif // CXUIPRECAPTUREVIEW_H