inc/screensaver.hrh
branchRCL_3
changeset 23 e8d784ac1a4b
parent 0 040fcad49f44
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/inc/screensaver.hrh	Wed Sep 01 12:30:40 2010 +0100
@@ -0,0 +1,103 @@
+/*
+* Copyright (c) 2003 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:     The enumeration for screensaver
+*
+*/
+
+
+
+
+
+
+#ifndef SCREENSAVER_HRH
+#define SCREENSAVER_HRH
+
+#include <avkon.hrh>
+
+//
+// Screensaver indicator id's.
+//
+enum TScreensaverIndicatorId
+    {
+    ESsNewMessagesInd,
+    ESsMissedCallsInd,
+    ESsKeyLockInd,
+    ESsProfileInd,
+    ESsImInd,           // Instant message (chat)
+    ESsMailInd,         // New email
+    ESsVoicemailInd,    // New voice mail
+    ESsAmPmInd          // AM / PM indicator
+    };
+
+//
+// Indicator types.
+//
+enum TScreensaverIndicatorType
+    {
+    ESsNumericIndicator,
+    ESsIconIndicator,
+    ESsTextIndicator,
+    ESsNumberAndIconIndicator
+    };
+
+//
+// Indicator aligments.
+//
+enum TScreensaverAlignment
+    {
+    ESsAlignLeft,
+    ESsAlignRight
+    };
+
+
+//
+// Indicator drawing priorities.
+//
+enum TScreensaverDrawType
+    {
+    ESsDrawTypeNotDrawn,
+    ESsDrawTypeSecondary,
+    ESsDrawTypePrimary
+    };
+
+
+//
+// Default screensaver bar color modes.
+//
+enum TScreensaverBarColorModel
+    {
+    ESsColorModel3BitMode,
+    ESsColorModelHighColor
+    };
+
+//
+// Factory for display objects
+//
+enum TDisplayObjectType
+    {
+    EDisplayText = 0,
+    EDisplayTime,
+    EDisplayBitmap,
+    EDisplayPlugin,
+    EDisplayNone
+    };
+
+enum TDisplayState
+    {
+    EDisplayOff = 0,
+    EDisplayOn
+    };
+#endif //SCREENSAVER_HRH
+
+// End of file.