javauis/amms_qt/module/src/cammseffectmodule.cpp
branchRCL_3
changeset 24 0fd27995241b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/javauis/amms_qt/module/src/cammseffectmodule.cpp	Tue May 11 16:07:20 2010 +0300
@@ -0,0 +1,104 @@
+/*
+* Copyright (c) 2006-2007 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:  Module for holding control groups belonging to EffectModule.
+*
+*/
+
+
+// INCLUDE FILES
+#include "cammseffectmodule.h"
+#include "cammsaudiovirtualizercontrolgroup.h"
+#include "cammsglobalmanager.h"
+#include <logger.h>
+
+
+// ============================ MEMBER FUNCTIONS ===============================
+
+// -----------------------------------------------------------------------------
+// CAMMSEffectModule::NewLC
+// Two-phased constructor.
+// -----------------------------------------------------------------------------
+CAMMSEffectModule* CAMMSEffectModule::NewLC(
+    CAMMSGlobalManager* aGlobalManager)
+{
+    LOG( EJavaAMMS, EInfo, "AMMS:CAMMSEffectModule::NewLC +");
+
+    CAMMSEffectModule* self = new(ELeave) CAMMSEffectModule(aGlobalManager);
+
+    CleanupStack::PushL(self);
+    self->ConstructL();
+
+    LOG( EJavaAMMS, EInfo, "AMMS:CAMMSEffectModule::NewLC -");
+
+    return self;
+}
+
+// -----------------------------------------------------------------------------
+// CAMMSEffectModule::~CAMMSEffectModule()
+// Destructor.
+// -----------------------------------------------------------------------------
+//
+CAMMSEffectModule::~CAMMSEffectModule()
+{
+    LOG( EJavaAMMS, EInfo, "AMMS:CAMMSEffectModule::~");
+}
+
+// -----------------------------------------------------------------------------
+// CAMMSEffectModule::AddPlayerNoStateCheckL
+// Adds player without checking its state.
+// (other items were commented in a header).
+// -----------------------------------------------------------------------------
+//
+void CAMMSEffectModule::AddPlayerNoStateCheckL(CMMAPlayer* aPlayer)
+{
+    LOG( EJavaAMMS, EInfo, "AMMS:CAMMSEffectModule::AddPlayerNoStateCheckL +");
+
+    // Check that the player can be added.
+    User::LeaveIfError(iGlobalManager->PlayerAddingAllowed(aPlayer));
+
+    // Add the player to this module.
+    CAMMSModule::AddPlayerNoStateCheckL(aPlayer);
+
+    LOG( EJavaAMMS, EInfo, "AMMS:CAMMSEffectModule::AddPlayerNoStateCheckL -");
+}
+
+
+// -----------------------------------------------------------------------------
+// CAMMSSoundSource3D::ConstructL
+// Symbian 2nd phase constructor can leave.
+// -----------------------------------------------------------------------------
+void CAMMSEffectModule::ConstructL()
+{
+    LOG( EJavaAMMS, EInfo, "AMMS:CAMMSEffectModule::ConstructL +");
+
+    CAMMSModule::ConstructL();
+
+    // Add required controls to the EffectModule.
+
+    AddControlGroupAndPopL(CAMMSAudioVirtualizerControlGroup::NewLC());
+
+    LOG( EJavaAMMS, EInfo, "AMMS:CAMMSEffectModule::ConstructL -");
+}
+
+// -----------------------------------------------------------------------------
+// CAMMSEffectModule::CAMMSEffectModule
+// C++ default constructor can NOT contain any code, that
+// might leave.
+// -----------------------------------------------------------------------------
+CAMMSEffectModule::CAMMSEffectModule(CAMMSGlobalManager* aGlobalManager)
+        : iGlobalManager(aGlobalManager)
+{
+}
+
+//  End of File