sl@0: // Copyright (c) 2001-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: // Client interface to the click plugin. sl@0: // sl@0: // sl@0: sl@0: #ifndef __CLICK_H__ sl@0: #define __CLICK_H__ sl@0: sl@0: #define CLICK_THIRD_UID 268455780 sl@0: sl@0: enum TClickOutputModes sl@0: { sl@0: EClickNone, sl@0: EClickCheck, sl@0: EClickToWindow, //For WINS only sl@0: }; sl@0: sl@0: enum TClickCommands sl@0: { sl@0: // Control Between Plug-in Types sl@0: EClickCommandToggleOutput=1, sl@0: EClickCommandSetOutput, sl@0: // Key and Pointer Testing sl@0: EClickEventAdd=100, sl@0: EClickFailed, sl@0: EClickEvents, sl@0: EClickReset, sl@0: // Other Event Testing sl@0: EClickCreateGroupWin=200, sl@0: EClickCheckGpWinId, sl@0: EClickCloseGroupWin, sl@0: EClickCloseWin, sl@0: EClickPointerEvent, sl@0: }; sl@0: sl@0: class TPointerEventInfo sl@0: { sl@0: public: sl@0: TInt iClientHandle; sl@0: TInt iWinGpId; sl@0: TPoint iWinOrigin; //Relative to parent sl@0: TPoint iParentOrigin; //Relative to screen sl@0: }; sl@0: sl@0: #endif //__CLICK_H__