uiacceltk/hitchcock/goommonitor/inc/goomapplicationconfig.h
changeset 0 15bf7259bb7c
child 3 d8a3531bc6b8
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/uiacceltk/hitchcock/goommonitor/inc/goomapplicationconfig.h	Tue Feb 02 07:56:43 2010 +0200
@@ -0,0 +1,91 @@
+/*
+* Copyright (c) 2008 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:  Configuration representation classes for Out of Memory Monitor
+*
+*/
+
+
+#ifndef GOOMAPPLICATIONCONFIG_
+#define GOOMAPPLICATIONCONFIG_
+
+#include <e32base.h>
+
+class CGOomCloseAppConfig;
+class MGOomRuleConfig;
+
+/*
+ * A list of action configurations for a particular target application.
+ *
+ * All configured actions in this list must be for the same target application.
+ * Actions may be configured to close the application or to run an OOM plugin.
+ *  
+ *  @lib oommonitor.lib
+ *  @since S60 v5.0
+ */
+NONSHARABLE_CLASS(CGOomApplicationConfig) : public CBase
+    {
+public:
+    
+    /**
+     * Two-phased constructor
+     * @param aApplicationId the UID of the application
+     */
+	static CGOomApplicationConfig* NewL(TUint aApplicationId);
+    
+// Functions for getting configuration  
+    
+    /**
+     * Return a pointer to the close app config, this may be NULL if no app close config has been configured
+     * Ownership is NOT passed to the caller
+     */
+    inline CGOomCloseAppConfig* GetAppCloseConfig();
+        
+    inline TUint Id();
+    
+// Functions for setting configuration  
+
+    inline void SetAppCloseConfig(CGOomCloseAppConfig* aActionConfig);
+    
+    /**
+     * Add a rule
+     * 
+     * This class takes ownership of the given rule
+     * The rule would will apply to the "application close" event
+     */
+    void AddRuleL(MGOomRuleConfig* aRule);
+    
+    ~CGOomApplicationConfig();
+
+public:
+    
+    TUint iGoodRamThreshold;
+    TUint iLowRamThreshold; 
+    TUint iTargetFree;
+    
+private:
+    
+    void ConstructL();
+    
+    CGOomApplicationConfig(TUint aApplicationId);
+    
+    CGOomCloseAppConfig* iCloseAppConfig;
+    
+    TInt iIndex;
+    
+    TUint iApplicationId;
+    };
+
+#include "goomapplicationconfig.inl"
+
+#endif /*GOOMAPPLICATIONCONFIG_*/