sl@0: /* sl@0: * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: #ifndef FRMCONST_PARTNER_H_ sl@0: #define FRMCONST_PARTNER_H_ sl@0: sl@0: enum TCursorMove sl@0: /** sl@0: This enum holds all the allowed movements of the document cursor by this sl@0: cursor positioning framework. sl@0: @publishedPartner sl@0: @released sl@0: */ sl@0: { sl@0: /** No cursor movement sl@0: */ sl@0: ECursNoMovement, sl@0: /** Single character cursor movement to the left sl@0: */ sl@0: ECursLeft, sl@0: /** Single character cursor movement to the right sl@0: */ sl@0: ECursRight, sl@0: /** Line up cursor movement sl@0: */ sl@0: ECursLineUp, sl@0: /** Line down cursor movement sl@0: */ sl@0: ECursLineDown, sl@0: /** Not used, present for backwards compatibility for page movement sl@0: */ sl@0: ECursReserved1, sl@0: ECursReserved2, sl@0: /** Cursor movement to line start sl@0: */ sl@0: ECursLineBegin, sl@0: /** Cursor movement to line end sl@0: */ sl@0: ECursLineEnd sl@0: }; sl@0: sl@0: #endif