os/graphics/windowing/windowserver/nga/SERVER/debughelper.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/nga/SERVER/debughelper.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,302 @@
     1.4 +#include "debughelper.h"
     1.5 +
     1.6 +const TDesC& RawEventName(const TRawEvent& aEvent) 
     1.7 +	{
     1.8 +	switch(aEvent.Type())
     1.9 +		{	
    1.10 +		case TRawEvent::ENone:
    1.11 +			_LIT(ENone,"ENone");
    1.12 +			return ENone;
    1.13 +			
    1.14 +		case TRawEvent::EPointerMove:
    1.15 +			_LIT(EPointerMove,"EPointerMove");
    1.16 +			return EPointerMove;	
    1.17 +			
    1.18 +		case TRawEvent::EPointerSwitchOn:
    1.19 +			_LIT(EPointerSwitchOn,"EPointerSwitchOn");
    1.20 +			return EPointerSwitchOn;	
    1.21 +			
    1.22 +		case TRawEvent::EKeyDown:
    1.23 +			_LIT(EKeyDown,"EKeyDown");
    1.24 +			return EKeyDown;	
    1.25 +			
    1.26 +		case TRawEvent::EKeyUp:
    1.27 +			_LIT(EKeyUp,"EKeyUp");
    1.28 +			return EKeyUp;		
    1.29 +			
    1.30 +		case TRawEvent::ERedraw:
    1.31 +			_LIT(ERedraw,"ERedraw");
    1.32 +			return ERedraw;		
    1.33 +			
    1.34 +		case TRawEvent::ESwitchOn:
    1.35 +			_LIT(ESwitchOn,"ESwitchOn");
    1.36 +			return ESwitchOn;		
    1.37 +			
    1.38 +		case TRawEvent::EActive:
    1.39 +			_LIT(EActive,"EActive");
    1.40 +			return EActive;			
    1.41 +			
    1.42 +		case TRawEvent::EInactive:
    1.43 +			_LIT(EInactive,"EInactive");
    1.44 +		    return EInactive;		    
    1.45 +		    
    1.46 +		case TRawEvent::EUpdateModifiers:
    1.47 +			_LIT(EUpdateModifiers,"EUpdateModifiers");
    1.48 +			return EUpdateModifiers;		
    1.49 +			
    1.50 +		case TRawEvent::EButton1Down:
    1.51 +			_LIT(EButton1Down,"EButton1Down");
    1.52 +			return EButton1Down;		
    1.53 +			
    1.54 +		case TRawEvent::EButton1Up:
    1.55 +			_LIT(EButton1Up,"EButton1Up");
    1.56 +			return EButton1Up;			
    1.57 +			
    1.58 +		case TRawEvent::EButton2Down:
    1.59 +			_LIT(EButton2Down,"EButton2Down");
    1.60 +			return EButton2Down;		
    1.61 +			
    1.62 +		case TRawEvent::EButton2Up:
    1.63 +			_LIT(EButton2Up,"EButton2Up");
    1.64 +			return EButton2Up;			
    1.65 +			
    1.66 +		case TRawEvent::EButton3Down:
    1.67 +			_LIT(EButton3Down,"EButton3Down");
    1.68 +			return EButton3Down;	
    1.69 +			
    1.70 +		case TRawEvent::EButton3Up:
    1.71 +			_LIT(EButton3Up,"EButton3Up");
    1.72 +			return EButton3Up;		
    1.73 +			
    1.74 +		case TRawEvent::ESwitchOff:
    1.75 +			_LIT(ESwitchOff,"ESwitchOff");
    1.76 +			return ESwitchOff;		
    1.77 +			
    1.78 +		case TRawEvent::EKeyRepeat:
    1.79 +			_LIT(EKeyRepeat,"EKeyRepeat");
    1.80 +			return EKeyRepeat;	
    1.81 +			
    1.82 +		case TRawEvent::ECaseOpen:
    1.83 +			_LIT(ECaseOpen,"ECaseOpen");
    1.84 +			return ECaseOpen;			
    1.85 +			
    1.86 +		case TRawEvent::ECaseClose:
    1.87 +			_LIT(ECaseClose,"ECaseClose");
    1.88 +			return ECaseClose;		
    1.89 +			
    1.90 +		case TRawEvent::EPointer3DInRange:
    1.91 +			_LIT(EPointer3DInRange,"EPointer3DInRange");
    1.92 +			return EPointer3DInRange;	
    1.93 +			
    1.94 +		case TRawEvent::EPointer3DOutOfRange:
    1.95 +			_LIT(EPointer3DOutOfRange,"EPointer3DOutOfRange");
    1.96 +			return EPointer3DOutOfRange;	
    1.97 +			
    1.98 +		case TRawEvent::EPointer3DTilt:
    1.99 +			_LIT(EPointer3DTilt,"EPointer3DTilt");
   1.100 +			return EPointer3DTilt;	
   1.101 +			
   1.102 +		case TRawEvent::EPointer3DRotation:
   1.103 +			_LIT(EPointer3DRotation,"EPointer3DRotation");
   1.104 +			return EPointer3DRotation;	
   1.105 +			
   1.106 +		case TRawEvent::EPointer3DTiltAndMove:
   1.107 +			_LIT(EPointer3DTiltAndMove,"EPointer3DTiltAndMove");
   1.108 +			return EPointer3DTiltAndMove;	
   1.109 +			
   1.110 +		case TRawEvent::EButton4Down:
   1.111 +			_LIT(EButton4Down,"EButton4Down");
   1.112 +			return EButton4Down;	
   1.113 +			
   1.114 +		case TRawEvent::EButton4Up:
   1.115 +			_LIT(EButton4Up,"EButton4Up");
   1.116 +			return EButton4Up;		
   1.117 +			
   1.118 +		case TRawEvent::EButton5Down:
   1.119 +			_LIT(EButton5Down,"EButton5Down");
   1.120 +			return EButton5Down;	
   1.121 +			
   1.122 +		case TRawEvent::EButton5Up:
   1.123 +			_LIT(EButton5Up,"EButton5Up");
   1.124 +			return EButton5Up;	
   1.125 +			
   1.126 +		case TRawEvent::EButton6Down:
   1.127 +			_LIT(EButton6Down,"EButton6Down");
   1.128 +			return EButton6Down;	
   1.129 +			
   1.130 +		case TRawEvent::EButton6Up:
   1.131 +			_LIT(EButton6Up,"EButton6Up");
   1.132 +			return EButton6Up;		
   1.133 +			
   1.134 +		case TRawEvent::ERestartSystem:
   1.135 +			_LIT(ERestartSystem,"ERestartSystem");
   1.136 +			return ERestartSystem;
   1.137 +			
   1.138 +		default:
   1.139 +			_LIT(KUndef,"User Defined Event");
   1.140 +			return KUndef;
   1.141 +		}
   1.142 +	}
   1.143 +
   1.144 +const TDesC& WsEventName(const TWsEvent& aEvent) 
   1.145 +	{
   1.146 +	switch(aEvent.Type())
   1.147 +		{
   1.148 +		case EEventNull:
   1.149 +			_LIT(EEventNull,"EEventNull");
   1.150 +			return EEventNull;
   1.151 +			
   1.152 +		case EEventKey:
   1.153 +			_LIT(EEventKey,"EEventKey");
   1.154 +			return EEventKey;
   1.155 +			
   1.156 +		case EEventKeyUp:
   1.157 +			_LIT(EEventKeyUp,"EEventKeyUp");
   1.158 +			return EEventKeyUp;
   1.159 +			
   1.160 +		case EEventKeyDown:
   1.161 +			_LIT(EEventKeyDown,"EEventKeyDown");
   1.162 +			return EEventKeyDown;
   1.163 +			
   1.164 +		case EEventModifiersChanged:
   1.165 +			_LIT(EEventModifiersChanged,"EEventModifiersChanged");
   1.166 +			return EEventModifiersChanged;
   1.167 +			
   1.168 +		case EEventPointer:
   1.169 +			_LIT(EEventPointer,"EEventPointer");
   1.170 +			return EEventPointer;
   1.171 +			
   1.172 +		case EEventPointerEnter:
   1.173 +			_LIT(EEventPointerEnter,"EEventPointerEnter");
   1.174 +			return EEventPointerEnter;
   1.175 +			
   1.176 +		case EEventPointerExit:
   1.177 +			_LIT(EEventPointerExit,"EEventPointerExit");
   1.178 +			return EEventPointerExit;
   1.179 +			
   1.180 +		case EEventPointerBufferReady:
   1.181 +			_LIT(EEventPointerBufferReady,"EEventPointerBufferReady");
   1.182 +			return EEventPointerBufferReady;
   1.183 +			
   1.184 +		case EEventDragDrop:
   1.185 +			_LIT(EEventDragDrop,"EEventDragDrop");
   1.186 +			return EEventDragDrop;
   1.187 +			
   1.188 +		case EEventFocusLost:
   1.189 +			_LIT(EEventFocusLost,"EEventFocusLost");
   1.190 +			return EEventFocusLost;
   1.191 +			
   1.192 +		case EEventFocusGained:
   1.193 +			_LIT(EEventFocusGained,"EEventFocusGained");
   1.194 +			return EEventFocusGained;
   1.195 +			
   1.196 +		case EEventSwitchOn:
   1.197 +			_LIT(EEventSwitchOn,"EEventSwitchOn");
   1.198 +			return EEventSwitchOn;
   1.199 +			
   1.200 +		case EEventPassword:
   1.201 +			_LIT(EEventPassword,"EEventPassword");
   1.202 +			return EEventPassword;
   1.203 +			
   1.204 +		case EEventWindowGroupsChanged:
   1.205 +			_LIT(EEventWindowGroupsChanged,"EEventWindowGroupsChanged");
   1.206 +			return EEventWindowGroupsChanged;
   1.207 +			
   1.208 +		case EEventErrorMessage:
   1.209 +			_LIT(EEventErrorMessage,"EEventErrorMessage");
   1.210 +			return EEventErrorMessage;
   1.211 +			
   1.212 +		case EEventMessageReady:
   1.213 +			_LIT(EEventMessageReady,"EEventMessageReady");
   1.214 +			return EEventMessageReady;
   1.215 +			
   1.216 +		case EEventMarkInvalid:
   1.217 +			_LIT(EEventMarkInvalid,"EEventMarkInvalid");
   1.218 +			return EEventMarkInvalid;
   1.219 +			
   1.220 +		case EEventSwitchOff:
   1.221 +			_LIT(EEventSwitchOff,"EEventSwitchOff");
   1.222 +			return EEventSwitchOff;
   1.223 +			
   1.224 +		case EEventKeySwitchOff:
   1.225 +			_LIT(EEventKeySwitchOff,"EEventKeySwitchOff");
   1.226 +			return EEventKeySwitchOff;
   1.227 +			
   1.228 +		case EEventScreenDeviceChanged:
   1.229 +			_LIT(EEventScreenDeviceChanged,"EEventScreenDeviceChanged");
   1.230 +			return EEventScreenDeviceChanged;
   1.231 +			
   1.232 +		case EEventFocusGroupChanged:
   1.233 +			_LIT(EEventFocusGroupChanged,"EEventFocusGroupChanged");
   1.234 +			return EEventFocusGroupChanged;
   1.235 +				
   1.236 +		case EEventCaseOpened:
   1.237 +			_LIT(EEventCaseOpened,"EEventCaseOpened");
   1.238 +			return EEventCaseOpened;
   1.239 +			
   1.240 +		case EEventCaseClosed:
   1.241 +			_LIT(EEventCaseClosed,"EEventCaseClosed");
   1.242 +			return EEventCaseClosed;
   1.243 +			
   1.244 +		case EEventWindowGroupListChanged:
   1.245 +			_LIT(EEventWindowGroupListChanged,"EEventWindowGroupListChanged");
   1.246 +			return EEventWindowGroupListChanged;
   1.247 +			
   1.248 +		case EEventWindowVisibilityChanged:
   1.249 +			_LIT(EEventWindowVisibilityChanged,"EEventWindowVisibilityChanged");
   1.250 +			return EEventWindowVisibilityChanged;
   1.251 +			
   1.252 +		case EEventRestartSystem:
   1.253 +			_LIT(EEventRestartSystem,"EEventRestartSystem");
   1.254 +			return EEventRestartSystem;
   1.255 +		case EEventDisplayChanged:
   1.256 +			_LIT(EEventDisplayChanged,"EEventDisplayChanged");
   1.257 +			return EEventDisplayChanged;
   1.258 +			
   1.259 +		case EEventKeyRepeat:
   1.260 +			_LIT(EEventKeyRepeat,"EEventKeyRepeat");
   1.261 +			return EEventKeyRepeat;
   1.262 +			
   1.263 +		case EEventGroupWindowOpen:
   1.264 +			_LIT(EEventGroupWindowOpen,"EEventGroupWindowOpen");
   1.265 +			return EEventGroupWindowOpen;
   1.266 +			
   1.267 +		case EEventGroupWindowClose:
   1.268 +			_LIT(EEventGroupWindowClose,"EEventGroupWindowClose");
   1.269 +			return EEventGroupWindowClose;
   1.270 +			
   1.271 +		case EEventWindowClose:
   1.272 +			_LIT(EEventWindowClose,"EEventWindowClose");
   1.273 +			return EEventWindowClose;
   1.274 +			
   1.275 +		case EEventDirectScreenAccessBegin:
   1.276 +			_LIT(EEventDirectScreenAccessBegin,"EEventDirectScreenAccessBegin");
   1.277 +			return EEventDirectScreenAccessBegin;
   1.278 +			
   1.279 +		case EEventDirectScreenAccessEnd:
   1.280 +			_LIT(EEventDirectScreenAccessEnd,"EEventDirectScreenAccessEnd");
   1.281 +			return EEventDirectScreenAccessEnd;
   1.282 +			
   1.283 +		case EEventHeartbeatTimerStateChange:
   1.284 +			_LIT(EEventHeartbeatTimerStateChange,"EEventHeartbeatTimerStateChange");
   1.285 +			return EEventHeartbeatTimerStateChange;
   1.286 +			
   1.287 +		case EEventPowerMgmt:
   1.288 +			_LIT(EEventPowerMgmt,"EEventPowerMgmt");
   1.289 +			return EEventPowerMgmt;
   1.290 +			
   1.291 +		case EEventReserved:
   1.292 +			_LIT(EEventReserved,"EEventReserved");
   1.293 +			return EEventReserved;
   1.294 +			
   1.295 +		case EEventUser:
   1.296 +			_LIT(EEventUser,"EEventUser");
   1.297 +			return EEventUser;
   1.298 +
   1.299 +		default:
   1.300 +			_LIT(KUndef,"User Defined Event");
   1.301 +			return KUndef;						
   1.302 +		}
   1.303 +	}
   1.304 +
   1.305 +