Update contrib.
1 // Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // e32\ewsrv\ws_win.cpp
21 #include <domainmanager.h>
24 #pragma setlocale("english")
27 //#define __CHARACTERPOINTER
29 GLREF_D CKeyTranslator *KeyTranslator;
30 GLREF_D CKeyRepeat *KeyRepeat;
32 const TInt KTabSize=4;
34 #if defined(_UNICODE) // K.K
37 TBool CWsWindow::IsHankaku(const TText aCode)
39 if (aCode >= 0xff61 && aCode <= 0xff9f)
40 return ETrue; // HANKAKU KATAKANA code
41 if (aCode >= 0x2550 && aCode <= 0x259f)
42 return ETrue; // HANKAKU Graphics code
44 return ETrue; // Alphanumeric codes means HANKAKU
48 TInt CWsWindow::FitInWidth(TText* aDest,TInt aWidth,TInt aAsciiCol,TText aCode)
50 TInt pixel=aAsciiCol*FONTWIDTH;
56 TInt width=IsHankaku(aDest[aJpnCol++]) ? FONTWIDTH : FONTWIDTH*2;
60 width=IsHankaku(aCode) ? FONTWIDTH : FONTWIDTH*2;
61 TInt w=jw+width-aWidth*FONTWIDTH;
63 w-=IsHankaku(aDest[aJpnCol-- - 1]) ? FONTWIDTH : FONTWIDTH*2;
68 TInt CWsWindow::OffsetHZa(const TText* aDest,const TPoint& aPosition,const TSize& aSize,TInt& aX)
70 TInt i=aPosition.iY*aSize.iWidth;
72 TInt x=aPosition.iX*FONTWIDTH;
74 x-=IsHankaku(aDest[i+j++]) ? FONTWIDTH : FONTWIDTH * 2;
80 TInt CWsWindow::OffsetHZwP(const TText* aDest,const TPoint& aPosition,const TSize& aSize,TPoint& aP)
84 TInt offset=OffsetHZa(aDest,aPosition,aSize,x);
89 TInt CWsWindow::OffsetHZ(const TText* aDest,const TPoint& aPosition,const TSize& aSize)
92 return OffsetHZa(aDest, aPosition, aSize, x);
95 TText CWsWindow::GetCharFromOffset(const TText* aDest,const TPoint& aPosition,const TSize& aSize)
97 return aDest[OffsetHZ(aDest, aPosition, aSize)];
100 TText* CWsWindow::GetCpFromOffset(const TText* aDest,const TPoint& aPosition,const TSize& aSize)
102 return (TText * )(& aDest[OffsetHZ(aDest, aPosition, aSize)]);
106 typedef CScreenDriver* (*TScreenDriverCreate)();
108 void CWsWindow::New()
110 // Acquire resources needed to run window system
113 // Load EDISP.DLL from Z:\SYSTEM\LIBS and invoke ordinal 1 to
114 // create the screen driver. This is because EDISP.DLL is hardware dependent.
117 TInt r=edisp.Load(_L("EDISP.DLL"), KNullDesC);
118 if (r!=KErrNone && r!=KErrAlreadyExists)
119 Fault(EWindowsInitialisation);
120 TScreenDriverCreate f=(TScreenDriverCreate)edisp.Lookup(1);
123 __ASSERT_ALWAYS(ScreenDriver!=NULL,Fault(EWindowsInitialisation));
124 ScreenDriver->Init(ScreenSize,FontSize);
125 ScreenDriver->SetMode(EMono);
127 ScreenColor=IndexOf[ETextAttributeNormal+1];
128 BorderColor=IndexOf[ETextAttributeNormal];
129 WindowBgColor=IndexOf[ETextAttributeNormal+1];
130 ScreenDriver->GetAttributeColors(IndexOf);
131 CursorPeriodic=CPeriodic::New(ECursorPeriodicPriority);
132 __ASSERT_ALWAYS(CursorPeriodic!=NULL,Fault(EWindowsInitialisation));
133 CursorPeriodic->Start(500000,500000,TCallBack(CWsWindow::FlashCursor,NULL));
134 Numbers=CBitMapAllocator::New(EMaxOpenWindows);
135 __ASSERT_ALWAYS(Numbers!=NULL,Fault(EWindowsInitialisation));
136 Numbers->AllocAt(EBackgroundNumber);
137 VisibilityMap=(TInt8 *)User::Alloc(ScreenSize.iWidth*ScreenSize.iHeight);
138 __ASSERT_ALWAYS(VisibilityMap!=NULL,Fault(EWindowsInitialisation));
139 Mem::Fill(VisibilityMap,ScreenSize.iWidth*ScreenSize.iHeight,0);
140 BlankLineText=(TText *)User::Alloc(sizeof(TText)*ScreenSize.iWidth);
141 __ASSERT_ALWAYS(BlankLineText!=NULL,Fault(EWindowsInitialisation));
142 BlankLineAttributes=(ColorInformation *)User::Alloc(ScreenSize.iWidth*sizeof(ColorInformation));
143 __ASSERT_ALWAYS(BlankLineAttributes!=NULL,Fault(EWindowsInitialisation));
144 TextFill(BlankLineText,ScreenSize.iWidth,_S(" "));
145 Mem::Fill(BlankLineAttributes,ScreenSize.iWidth*sizeof(ColorInformation),ScreenColor);
146 TInt err=MouseMutex.CreateLocal();
147 __ASSERT_ALWAYS(err==KErrNone,Fault(EWindowsInitialisation));
148 err=ServiceMutex.CreateLocal();
149 __ASSERT_ALWAYS(err==KErrNone,Fault(EWindowsInitialisation));
153 void CWsWindow::Delete()
155 // Release resources needed to run window system
160 delete CursorPeriodic;
162 User::Free(VisibilityMap);
163 User::Free(BlankLineText);
164 User::Free(BlankLineAttributes);
166 ServiceMutex.Close();
169 void CWsWindow::TextFill(TText *aBuffer,TInt aLength,const TText *aValue)
171 // This helper function provided because no UNICODE compatible fill function exists in User::
175 TPtr(aBuffer,aLength).Fill(*aValue,aLength);
178 TInt CWsWindow::Offset(const TPoint &aPosition,const TSize &aSize)
180 // Finds the offset of aPosition within an area of aSize dimensions
184 return(aPosition.iY*aSize.iWidth+aPosition.iX);
187 TInt8 CWsWindow::NewNumberL()
189 // Issue a unique window id
193 TInt8 n=(TInt8)Numbers->Alloc();
195 User::Leave(ETooManyWindowsOpen);
199 void CWsWindow::ReleaseNumber(TInt8 aNumber)
201 // Return unique window id back to the pool for future issuing
205 Numbers->Free((TUint)aNumber);
208 TInt CWsWindow::FlashCursor(TAny* /*aParameter*/)
210 // Flash the cursor if it is on
214 CWsWindow *pT=TopWindow();
220 TPoint p=pT->iCursorPos-pT->iCurrentOffset;
221 if (pT->IsInClippedTextArea(p) && p+pT->iViewOrigin!=MousePos)
223 //#if defined(_UNICODE) // K.K
225 // TInt offset=pT->OffsetHZwP(pT->iTextBuffer, pT->iCursorPos, pT->iCurrentSize, sp); //K.K
226 // const TText c = pT->iTextBuffer[offset]; // K.K
227 // sp= sp - pT->iCurrentOffset; // K.K
228 // ScreenDriver->Blit(&c, 1, sp+pT->iViewOrigin); // K.K
230 TInt i=Offset(pT->iCursorPos,pT->iCurrentSize);
231 const TText c=pT->iTextBuffer[i];
232 ScreenDriver->SetForegroundColor(pT->iAttributeBuffer[i].iFg);
233 ScreenDriver->SetBackgroundColor(pT->iAttributeBuffer[i].iBg);
234 ScreenDriver->Blit(&c,1,p+pT->iViewOrigin);
237 pT->iCursorIsOn=EFalse;
241 if (pT->iCursorRequired && pT->iReadIsValid)
243 TPoint p=pT->iCursorPos-pT->iCurrentOffset;
244 if (pT->IsInClippedTextArea(p))
246 if (p+pT->iViewOrigin!=MousePos)
248 ScreenDriver->Blit(&(pT->iCursor),1,p+pT->iViewOrigin);
249 //#if defined(_UNICODE) // K.K
251 // pT->OffsetHZwP(pT->iTextBuffer, pT->iCursorPos, pT->iCurrentSize, sp); //K.K
252 // sp= sp - pT->iCurrentOffset; // K.K
253 // ScreenDriver->Blit(&(pT->iCursor),1,sp+pT->iViewOrigin); // K.K
255 ScreenDriver->SetForegroundColor(pT->iFgColor);
256 ScreenDriver->SetBackgroundColor(WindowBgColor);
257 ScreenDriver->Blit(&(pT->iCursor),1,p+pT->iViewOrigin);
260 pT->iCursorIsOn=ETrue;
269 void CWsWindow::SetCursor()
271 // Place the text cursor for this window (if required)
278 if (iCursorPos!=iLastCursorPos || !IsTop() || !iCursorRequired)
280 TPoint p=iLastCursorPos-iCurrentOffset;
281 if (IsInClippedTextArea(p))
283 TPoint q=p+iViewOrigin;
286 if(VisibilityMap[Offset(q,ScreenSize)]==iNumber)
288 //#if defined(_UNICODE) // K.K
290 // TInt offset = OffsetHZwP(iTextBuffer, iLastCursorPos, iCurrentSize, sp); //K.K
291 // sp= sp - iCurrentOffset; // K.K
292 // const TText c = iTextBuffer[offset]; // K.K
293 // sp = sp + iViewOrigin; // K.K
294 // ScreenDriver->Blit(&c,1,sp); // K.K
296 TInt i=Offset(iLastCursorPos,iCurrentSize);
297 const TText c=iTextBuffer[i];
298 ScreenDriver->SetForegroundColor(iAttributeBuffer[i].iFg);
299 ScreenDriver->SetBackgroundColor(iAttributeBuffer[i].iBg);
300 ScreenDriver->Blit(&c,1,q);
308 if (IsTop() && iCursorRequired && iReadIsValid)
310 TPoint p=iCursorPos-iCurrentOffset;
311 if (IsInClippedTextArea(p))
313 TPoint q=p+iViewOrigin;
316 //#if defined(_UNICODE) // K.K
318 // OffsetHZwP(iTextBuffer, iLastCursorPos, iCurrentSize, sp); //K.K
319 // sp= sp - iCurrentOffset; // K.K
320 // sp = sp + iViewOrigin; // K.K
321 // ScreenDriver->Blit(&iCursor,1,sp); // K.K
323 ScreenDriver->SetForegroundColor(iFgColor);
324 ScreenDriver->SetBackgroundColor(WindowBgColor);
325 ScreenDriver->Blit(&iCursor,1,q);
328 iLastCursorPos=iCursorPos;
335 void CWsWindow::SetClip()
337 // Set the clipped width and depth.
341 iClippedSize=ScreenSize-iViewOrigin;
342 if (iClippedSize.iWidth>iViewSize.iWidth)
343 iClippedSize.iWidth=iViewSize.iWidth;
344 if (iClippedSize.iHeight>iViewSize.iHeight)
345 iClippedSize.iHeight=iViewSize.iHeight;
348 void CWsWindow::ResetVisibilityMap()
350 // Recreate visibility map from window queue
354 TDblQueIter<CWsWindow> q(WQueue);
356 Mem::Fill(VisibilityMap,ScreenSize.iWidth*ScreenSize.iHeight,0);
358 while((pW=q--)!=NULL)
362 TInt8 *pV=&VisibilityMap[Offset(pW->iViewOrigin,ScreenSize)];
363 for(TInt i=0; i<pW->iClippedSize.iHeight; i++)
365 Mem::Fill(pV,pW->iClippedSize.iWidth,pW->iNumber);
366 pV+=ScreenSize.iWidth;
372 void CWsWindow::BeginUpdateScreen()
374 // Prepare for a whole bunch of UpdateScreen() calls
381 void CWsWindow::EndUpdateScreen()
383 // End of bunch of UpdateScreen() calls
390 void CWsWindow::UpdateScreen(TPoint &aPosition,TInt aLength,TInt8 aNumber,TText *aTextBuffer,ColorInformation * anAttributeBuffer)
392 // This function purposefully made static,so that it can be used to update the background (aNumber=0) as well as
393 // window data. Line by line, it finds contiguous sections of visible window (using aNumber in the visibility map)
394 // and passes them to CScreenDriver::Blit().
399 TInt8 *pV=&VisibilityMap[Offset(q,ScreenSize)];
407 TColorIndex fg=anAttributeBuffer[aLength-w].iFg;
408 TColorIndex bg=anAttributeBuffer[aLength-w].iBg;
411 if (*pV==aNumber && w!=0 && anAttributeBuffer[aLength-w].iFg==fg && anAttributeBuffer[aLength-w].iBg==bg)
420 TText *pT=&aTextBuffer[p.iX-aPosition.iX];
421 ScreenDriver->SetForegroundColor(fg);
422 ScreenDriver->SetBackgroundColor(bg);
423 ScreenDriver->Blit(pT,l,p);
424 if (p.iY==MousePos.iY)
426 if (MousePos.iX>=p.iX && MousePos.iX<p.iX+l)
442 TInt CWsWindow::SetMode(TVideoMode aMode)
445 TInt r=CWsWindow::ScreenDriver->SetMode(aMode);
448 CWsWindow::ScreenDriver->GetAttributeColors(IndexOf);
449 CWsWindow::ScreenColor=IndexOf[ETextAttributeNormal+1];
450 CWsWindow::BorderColor=IndexOf[ETextAttributeNormal];
451 CWsWindow::WindowBgColor=IndexOf[ETextAttributeNormal+1];
452 CWsWindow::ChangeUIColors();
454 TDblQueIter<CWsWindow>q(WQueue);
457 w->iFgColor=IndexOf[ETextAttributeNormal];
458 w->iBgColor=IndexOf[ETextAttributeNormal+1];
464 void CWsWindow::Display()
466 // Display a windows contents on the screen.
472 TPoint p=iViewOrigin;
473 TSize s=iClippedSize;
475 TText *pT=&iTextBuffer[Offset(iCurrentOffset,iCurrentSize)];
476 ColorInformation *pA=&iAttributeBuffer[Offset(iCurrentOffset,iCurrentSize)];
479 UpdateScreen(p,s.iWidth,iNumber,pT,pA);
482 pT=&pT[iCurrentSize.iWidth];
483 pA=&pA[iCurrentSize.iWidth];
490 void CWsWindow::Background()
492 // Update wallpaper to physical screen
498 while(p.iY<ScreenSize.iHeight)
500 UpdateScreen(p,ScreenSize.iWidth,0,BlankLineText,BlankLineAttributes);
506 void CWsWindow::Redraw()
508 // Redraw the whole screen including all the windows and the background
512 CWsWindow *pW=TopWindow();
517 ResetVisibilityMap();
522 void CWsWindow::Refresh()
524 // Refresh this window and those below it
529 TDblQueIter<CWsWindow> q(WQueue);
530 ResetVisibilityMap();
534 Display(); // this window
536 w->Display(); // lower windows
540 void CWsWindow::ChangeUIColors()
542 // Change UI colours as set by the user
547 TDblQueIter<CWsWindow>q(WQueue);
550 TInt i=w->iCurrentSize.iWidth*w->iCurrentSize.iHeight;
551 TColorIndex c=w->iAttributeBuffer[i-1].iBg;
552 for(TInt t=0;t<i;t++)
553 if (w->iAttributeBuffer[t].iBg==c)
554 w->iAttributeBuffer[t].iBg=WindowBgColor;
557 Mem::Fill(BlankLineAttributes,ScreenSize.iWidth*sizeof(ColorInformation),ScreenColor);
561 void CWsWindow::SetTextAttribute(TTextAttribute anAttribute)
567 iFgColor=IndexOf[anAttribute*2];
568 iBgColor=IndexOf[anAttribute*2+1];
571 void CWsWindow::Clear()
573 // Clear the whole window and place cursor at top left.
577 TextFill(iTextBuffer,iCurrentSize.iWidth*iCurrentSize.iHeight,_S(" "));
578 Mem::Fill(iAttributeBuffer,iCurrentSize.iWidth*iCurrentSize.iHeight*sizeof(ColorInformation),WindowBgColor);
580 iCursorPos=TPoint(1,1);
584 void CWsWindow::Write(const TDesC &aBuffer)
586 // Write characters to the window
590 const TText *b=aBuffer.Ptr();
591 const TText *bE=b+aBuffer.Length();
599 User::Beep(440,100000);
601 case 0x08://Backspace
611 case 0x0b://Vertical tab - do nothing
626 void CWsWindow::WriteCharacter(const TText *aCharacter)
628 // Write a single character at the current cursor location - must check if it's being written to an
629 // position temporarily occupied by the frame. In this case, the character goes to the 'edge' of the
630 // buffer. It will be restored from here when necessary.
635 TText *pT=&iTextBuffer[Offset(p,iCurrentSize)];
636 ColorInformation *pA=&iAttributeBuffer[Offset(p,iCurrentSize)];
637 if (p.iX>=iCurrentOffset.iX && p.iX<iCurrentOffset.iX+iViewSize.iWidth) // within view width
639 if (p.iY==iCurrentOffset.iY) // top edge
643 pT=&iTextBuffer[Offset(q,iCurrentSize)];
644 pA=&iAttributeBuffer[Offset(q,iCurrentSize)];
646 else if (p.iY==iCurrentOffset.iY+iViewSize.iHeight-1) // bottom edge
649 q.iY=iCurrentSize.iHeight-1;
650 pT=&iTextBuffer[Offset(q,iCurrentSize)];
651 pA=&iAttributeBuffer[Offset(q,iCurrentSize)];
654 if (p.iY>=iCurrentOffset.iY && p.iY<iCurrentOffset.iY+iViewSize.iHeight) // within view depth
656 if (p.iX==iCurrentOffset.iX) // left edge
660 pT=&iTextBuffer[Offset(q,iCurrentSize)];
661 pA=&iAttributeBuffer[Offset(q,iCurrentSize)];
663 else if (p.iX==iCurrentOffset.iX+iViewSize.iWidth-1) // right edge
666 q.iX=iCurrentSize.iWidth-1;
667 pT=&iTextBuffer[Offset(q,iCurrentSize)];
668 pA=&iAttributeBuffer[Offset(q,iCurrentSize)];
678 if (IsInClippedTextArea(p))
681 TInt8 *pV=&VisibilityMap[Offset(p,ScreenSize)];
682 if (*pV==iNumber && p!=MousePos)
685 ScreenDriver->SetForegroundColor(iFgColor);
686 ScreenDriver->SetBackgroundColor(iBgColor);
687 ScreenDriver->Blit(aCharacter,1,p);
690 if (iCursorIsOn && iCursorPos==((CWsWindow*)this)->iLastCursorPos)
691 iCursorIsOn=EFalse; // Just overwrote the cursor character
696 void CWsWindow::BackSpace()
702 if (iCursorPos!=TPoint(1,1))
705 TColorIndex col=iBgColor;
706 iBgColor=WindowBgColor;
707 WriteCharacter(_S(" "));
713 void CWsWindow::HorizontalTab()
715 // Tab on this window
719 iCursorPos.iX=iCursorPos.iX-(iCursorPos.iX-1)%KTabSize+KTabSize;
720 if (iCursorPos.iX>iCurrentSize.iWidth-1)
728 void CWsWindow::FormFeed()
730 // FF on this window = clear the screen and place cursor at top left corner
738 void CWsWindow::LineFeed()
740 // LF on this window (must do CR separately)
746 if (iCursorPos.iY<(iCurrentSize.iHeight-2))
752 void CWsWindow::CarriageReturn()
754 // CR on this wiondow
761 void CWsWindow::Right()
763 // Move the cursor right one character.
767 if (++iCursorPos.iX>=iCurrentSize.iWidth-1)
774 else iCursorPos.iX--;
779 void CWsWindow::Left()
781 // Move the cursor left one character
785 if (iCursorPos!=TPoint(1,1))
787 if (iCursorPos.iX==1)
789 iCursorPos.iX+=iCurrentSize.iWidth-2;
796 void CWsWindow::RestoreEdges()
798 // Restore saved charcters from the 'edges' of the buffer back into their proper place in the buffer
802 if (iCurrentOffset.iY!=0) // need to restore top edge
804 TPoint t(iCurrentOffset.iX,0); // Top left point of buffer 'edge'
805 TPoint f(iCurrentOffset.iX,iCurrentOffset.iY); // Top left point of frame in buffer
806 TText *pTT=&iTextBuffer[Offset(t,iCurrentSize)];
807 TText *pTF=&iTextBuffer[Offset(f,iCurrentSize)];
808 Mem::Copy(pTF,pTT,iViewSize.iWidth*sizeof(TText));
809 ColorInformation *pAT=&iAttributeBuffer[Offset(t,iCurrentSize)];
810 ColorInformation *pAF=&iAttributeBuffer[Offset(f,iCurrentSize)];
811 Mem::Copy(pAF,pAT,iViewSize.iWidth*sizeof(ColorInformation));
813 if (iCurrentOffset.iY+iViewSize.iHeight!=iCurrentSize.iHeight) // need to save bottom edge
815 TPoint b(iCurrentOffset.iX,iCurrentSize.iHeight-1); // Bottom left point of buffer 'edge'
816 TPoint f(iCurrentOffset.iX,iCurrentOffset.iY+iViewSize.iHeight-1); // Bottom left point of frame in buffer
817 TText *pTB=&iTextBuffer[Offset(b,iCurrentSize)];
818 TText *pTF=&iTextBuffer[Offset(f,iCurrentSize)];
819 Mem::Copy(pTF,pTB,iViewSize.iWidth*sizeof(TText));
820 ColorInformation *pAB=&iAttributeBuffer[Offset(b,iCurrentSize)];
821 ColorInformation *pAF=&iAttributeBuffer[Offset(f,iCurrentSize)];
822 Mem::Copy(pAF,pAB,iViewSize.iWidth*sizeof(ColorInformation));
824 if (iCurrentOffset.iX!=0) // need to save left hand edge
826 TPoint l(0,iCurrentOffset.iY); // Top left point of buffer 'edge'
827 TPoint f(iCurrentOffset.iX,iCurrentOffset.iY); // Top left point of frame in buffer
828 for(TInt y=0;y<iViewSize.iHeight;y++)
830 TText *pTL=&iTextBuffer[Offset(l,iCurrentSize)];
831 TText *pTF=&iTextBuffer[Offset(f,iCurrentSize)];
833 ColorInformation *pAL=&iAttributeBuffer[Offset(l,iCurrentSize)];
834 ColorInformation *pAF=&iAttributeBuffer[Offset(f,iCurrentSize)];
841 if (iCurrentOffset.iX+iViewSize.iWidth!=iCurrentSize.iWidth) // need to save right hand edge
843 TPoint r(iCurrentSize.iWidth-1,iCurrentOffset.iY); // Top right point of buffer 'edge'
844 TPoint f(iCurrentOffset.iX+iViewSize.iWidth-1,iCurrentOffset.iY); // Top right point of frame in buffer
845 for(TInt y=0;y<iViewSize.iHeight;y++)
847 TText *pTL=&iTextBuffer[Offset(r,iCurrentSize)];
848 TText *pTF=&iTextBuffer[Offset(f,iCurrentSize)];
850 ColorInformation *pAL=&iAttributeBuffer[Offset(r,iCurrentSize)];
851 ColorInformation *pAF=&iAttributeBuffer[Offset(f,iCurrentSize)];
861 void CWsWindow::SaveEdges()
863 // Save charcters about to be stonked by the frame into the 'edges' of the buffer - the buffer is already 2 positions
864 // wider and 2 positions deeper than requested when the window was set.
868 if (iCurrentOffset.iY!=0) // need to save top edge
870 TPoint t(iCurrentOffset.iX,0); // Top left point of buffer 'edge'
871 TPoint f(iCurrentOffset.iX,iCurrentOffset.iY); // Top left point of frame in buffer
872 TText *pTT=&iTextBuffer[Offset(t,iCurrentSize)];
873 TText *pTF=&iTextBuffer[Offset(f,iCurrentSize)];
874 Mem::Copy(pTT,pTF,iViewSize.iWidth*sizeof(TText));
875 ColorInformation *pAT=&iAttributeBuffer[Offset(t,iCurrentSize)];
876 ColorInformation *pAF=&iAttributeBuffer[Offset(f,iCurrentSize)];
877 Mem::Copy(pAT,pAF,iViewSize.iWidth*sizeof(ColorInformation));
879 if (iCurrentOffset.iY+iViewSize.iHeight!=iCurrentSize.iHeight) // need to save bottom edge
881 TPoint b(iCurrentOffset.iX,iCurrentSize.iHeight-1); // Bottom left point of buffer 'edge'
882 TPoint f(iCurrentOffset.iX,iCurrentOffset.iY+iViewSize.iHeight-1); // Bottom left point of frame in buffer
883 TText *pTB=&iTextBuffer[Offset(b,iCurrentSize)];
884 TText *pTF=&iTextBuffer[Offset(f,iCurrentSize)];
885 Mem::Copy(pTB,pTF,iViewSize.iWidth*sizeof(TText));
886 ColorInformation *pAB=&iAttributeBuffer[Offset(b,iCurrentSize)];
887 ColorInformation *pAF=&iAttributeBuffer[Offset(f,iCurrentSize)];
888 Mem::Copy(pAB,pAF,iViewSize.iWidth*sizeof(ColorInformation));
890 if (iCurrentOffset.iX!=0) // need to save left hand edge
892 TPoint l(0,iCurrentOffset.iY); // Top left point of buffer 'edge'
893 TPoint f(iCurrentOffset.iX,iCurrentOffset.iY); // Top left point of frame in buffer
894 for(TInt y=0;y<iViewSize.iHeight;y++)
896 TText *pTL=&iTextBuffer[Offset(l,iCurrentSize)];
897 TText *pTF=&iTextBuffer[Offset(f,iCurrentSize)];
899 ColorInformation *pAL=&iAttributeBuffer[Offset(l,iCurrentSize)];
900 ColorInformation *pAF=&iAttributeBuffer[Offset(f,iCurrentSize)];
907 if (iCurrentOffset.iX+iViewSize.iWidth!=iCurrentSize.iWidth) // need to save right hand edge
909 TPoint r(iCurrentSize.iWidth-1,iCurrentOffset.iY); // Top right point of buffer 'edge'
910 TPoint f(iCurrentOffset.iX+iViewSize.iWidth-1,iCurrentOffset.iY); // Top right point of frame in buffer
911 for(TInt y=0;y<iViewSize.iHeight;y++)
913 TText *pTL=&iTextBuffer[Offset(r,iCurrentSize)];
914 TText *pTF=&iTextBuffer[Offset(f,iCurrentSize)];
916 ColorInformation *pAL=&iAttributeBuffer[Offset(r,iCurrentSize)];
917 ColorInformation *pAF=&iAttributeBuffer[Offset(f,iCurrentSize)];
926 TBool CWsWindow::IsInClippedTextArea(const TPoint& aPoint) const
928 // Returns ETrue if aPoint (relative to window) is in the screen and the text part of the window
932 return (aPoint.iX>0 && aPoint.iX<iClippedSize.iWidth-(iClippedSize.iWidth==iViewSize.iWidth) && aPoint.iY>0 && aPoint.iY<iClippedSize.iHeight-(iClippedSize.iHeight==iViewSize.iHeight));
935 TBool CWsWindow::IsRectVisible(TRect& aRect) const
937 // Returns ETrue if window is visible in aRect, possibly clips edges to make a visible rectangle
944 //First clip off the left
946 TInt bottom=aRect.iBr.iY;
949 for (i=aRect.iTl.iX;i<aRect.iBr.iX && top==-1;i++)
951 for (j=aRect.iTl.iY;j<aRect.iBr.iY;j++)
953 if (VisibilityMap[Offset(TPoint(i,j),ScreenSize)]!=iNumber)
955 if (top!=-1 && bottom==aRect.iBr.iY)
960 if (bottom!=aRect.iBr.iY)
968 if (top==-1) //Area completely covered
971 return ETrue;//It is a rectangle - the zero rectangle
975 TBool passedEdge=EFalse;//Right edge
976 for (;i<aRect.iBr.iX && !passedEdge;i++)
978 for (j=aRect.iTl.iY;j<aRect.iBr.iY;j++)
980 if (VisibilityMap[Offset(TPoint(i,j),ScreenSize)]==iNumber)
982 if (passedEdge || j<top || j>=bottom)
989 if (!passedEdge && j>top && j<bottom)
999 for (;i<aRect.iBr.iX;i++)
1000 for (j=aRect.iTl.iY;j<aRect.iBr.iY;j++)
1001 if (VisibilityMap[Offset(TPoint(i,j),ScreenSize)]==iNumber)
1006 aRect.iBr.iY=bottom;
1010 void CWsWindow::ScrollUp()
1012 // Scroll the window up by one line.
1020 TText *pT=&iTextBuffer[iCurrentSize.iWidth];
1021 Mem::Copy(pT,&pT[iCurrentSize.iWidth],iCurrentSize.iWidth*(iCurrentSize.iHeight-3)*sizeof(TText));
1022 TextFill(&pT[iCurrentSize.iWidth*(iCurrentSize.iHeight-3)],iCurrentSize.iWidth*sizeof(TText),_S(" "));
1023 ColorInformation *pA=&iAttributeBuffer[iCurrentSize.iWidth];
1024 Mem::Copy(pA,&pA[iCurrentSize.iWidth],iCurrentSize.iWidth*(iCurrentSize.iHeight-3)*sizeof(ColorInformation));
1025 Mem::Fill(&pA[iCurrentSize.iWidth*(iCurrentSize.iHeight-3)],iCurrentSize.iWidth*sizeof(ColorInformation),WindowBgColor);
1029 TBool oldCursorRequired = iCursorRequired;
1030 iCursorRequired = EFalse;
1036 TRect updateRect(iViewOrigin.iX+1,iViewOrigin.iY+1,iViewOrigin.iX+iViewSize.iWidth-1,iViewOrigin.iY+iViewSize.iHeight-1);
1037 updateRect.Intersection(TRect(TPoint(0,0),ScreenSize));
1038 if (IsRectVisible(updateRect))
1041 if (ScreenDriver->ScrollUp(updateRect))
1043 //Update bottom line
1044 updateRect.iTl.iY=updateRect.iBr.iY-1;
1045 pT=&iTextBuffer[Offset(updateRect.iTl-iViewOrigin,iCurrentSize)];
1046 pA=&iAttributeBuffer[Offset(updateRect.iTl-iViewOrigin,iCurrentSize)];
1047 TColorIndex fg=pA->iFg;
1048 TColorIndex bg=pA->iBg;
1049 TInt k=updateRect.Width();
1051 for(TInt i=0;i<k;i++)
1053 if(fg==pA->iFg && bg==pA->iBg && i!=k-1)
1058 ScreenDriver->SetForegroundColor(fg);
1059 ScreenDriver->SetBackgroundColor(bg);
1060 ScreenDriver->Blit(pT,l,updateRect.iTl);
1075 iCursorRequired = oldCursorRequired;
1081 void CWsWindow::TurnMouseOff()
1083 // Take the mouse of the screen
1086 #ifdef __CHARACTERPOINTER
1087 CWsWindow *pW=MouseWindow();
1088 #if defined(_UNICODE) // K.K
1089 TPoint sp=MousePos; // K.K
1092 TPoint p=MousePos-pW->iViewOrigin+pW->iCurrentOffset;
1093 TInt offset=pW->OffsetHZwP(pW->iTextBuffer,p,pW->iCurrentSize,sp); // K.K
1094 sp=sp+pW->iViewOrigin-pW->iCurrentOffset; // K.K
1095 TText c=pW->iTextBuffer[offset]; // K.K
1096 if (pW->iCursorIsOn && p==pW->iCursorPos-pW->iCurrentOffset)
1098 ScreenDriver->SetForegroundColor(pW->iAttributeBuffer[offset].iFg);
1099 ScreenDriver->SetBackgroundColor(pW->iAttributeBuffer[offset].iBg);
1100 ScreenDriver->Blit(&c, 1, sp); // K.K
1104 ScreenDriver->SetBackgroundColor(ScreenColor);
1105 ScreenDriver->Blit(BlankLineText, 1, sp); // K.K
1110 TPoint p=MousePos-pW->iViewOrigin+pW->iCurrentOffset;
1111 TText c=pW->iTextBuffer[Offset(p,pW->iCurrentSize)];
1112 if (pW->iCursorIsOn && p==pW->iCursorPos-pW->iCurrentOffset)
1114 ScreenDriver->SetForegroundColor(pW->iAttributeBuffer[Offset(p,pW->iCurrentSize)].iFg);
1115 ScreenDriver->SetBackgroundColor(pW->iAttributeBuffer[Offset(p,pW->iCurrentSize)].iBg);
1116 ScreenDriver->Blit(&c, 1, MousePos);
1120 ScreenDriver->SetBackgroundColor(ScreenColor);
1121 ScreenDriver->Blit(BlankLineText, 1, MousePos);
1125 #endif // __CHARACTERPOINTER
1128 void CWsWindow::TurnMouseOn()
1130 // Place the mouse on the screen
1134 #ifdef __CHARACTERPOINTER
1135 const TText c=EMouseCharacter;
1136 ScreenDriver->SetForegroundColor(BorderColor);
1137 ScreenDriver->Blit(&c, 1, MousePos);
1141 void CWsWindow::MouseMove(TPoint aGraphicsPosition)
1143 // Move the mouse to a new position
1147 TPoint p=aGraphicsPosition;
1148 p.iX/=FontSize.iWidth;
1149 p.iY/=FontSize.iHeight;
1150 if (p.iX>=ScreenSize.iWidth)
1151 p.iX=ScreenSize.iWidth-1;
1152 if (p.iY>=ScreenSize.iHeight)
1153 p.iY=ScreenSize.iHeight-1;
1164 MouseMutex.Signal();
1165 CWsWindow* tw=TopWindow();
1166 if (ScrollWithMouse!=TPoint(-1,-1))
1171 else if (MoveWithMouse!=TPoint(-1,-1))
1175 if(MousePos.iX<tw->iViewOrigin.iX-1||MousePos.iX>tw->iViewOrigin.iX+tw->iCurrentSize.iWidth||MousePos.iY<tw->iViewOrigin.iY-1||MousePos.iY>tw->iViewOrigin.iY+tw->iCurrentSize.iHeight)
1177 MoveWithMouse=TPoint(-1,-1);
1180 CWsWindow::MoveTopWindowRelative(MousePos-MoveWithMouse);
1181 MoveWithMouse=MousePos;
1182 if(MousePos.iX==0 && tw->iViewOrigin.iX!=0)
1183 CWsWindow::MoveTopWindowRelative(TPoint(-tw->iViewOrigin.iX,0));
1184 if(MousePos.iY==0 && tw->iViewOrigin.iY!=0)
1185 CWsWindow::MoveTopWindowRelative(TPoint(0,-tw->iViewOrigin.iY));
1188 else if (ResizeWithMouse!=TPoint(-1,-1))
1190 TInt r=CWsWindow::ChangeTopWindowSize(TSize(MousePos.iX-ResizeWithMouse.iX,MousePos.iY-ResizeWithMouse.iY));
1192 ResizeWithMouse=MousePos;
1197 void CWsWindow::MouseSlide()
1199 // Scroll the window
1203 if(ScrollWithMouse.iX && MousePos.iX!=ScrollWithMouse.iX)
1205 TInt r=SlideTopWindowRelative(TPoint((MousePos.iX-ScrollWithMouse.iX)*ScrollSpeed,0));
1207 ScrollWithMouse.iX=MousePos.iX;
1208 else if(MousePos.iX<ScrollWithMouse.iX)
1210 SlideTopWindowRelative(TPoint(-iCurrentOffset.iX,0));
1211 if(MousePos.iX<=iViewOrigin.iX)
1212 ScrollWithMouse.iX=iViewOrigin.iX+1;
1214 ScrollWithMouse.iX=MousePos.iX;
1218 SlideTopWindowRelative(TPoint(iCurrentSize.iWidth-iViewSize.iWidth-iCurrentOffset.iX,0));
1219 if(MousePos.iX>iViewOrigin.iX+iViewSize.iWidth-2)
1220 ScrollWithMouse.iX=iViewOrigin.iX+iViewSize.iWidth-2;
1222 ScrollWithMouse.iX=MousePos.iX;
1225 else if(ScrollWithMouse.iY && MousePos.iY!=ScrollWithMouse.iY)
1227 TInt r=SlideTopWindowRelative(TPoint(0,(MousePos.iY-ScrollWithMouse.iY)*ScrollSpeed));
1229 ScrollWithMouse.iY=MousePos.iY;
1230 else if(MousePos.iY<ScrollWithMouse.iY)
1232 SlideTopWindowRelative(TPoint(0,-iCurrentOffset.iY));
1233 if(MousePos.iY<=iViewOrigin.iY)
1234 ScrollWithMouse.iY=iViewOrigin.iY+1;
1236 ScrollWithMouse.iY=MousePos.iY;
1240 SlideTopWindowRelative(TPoint(0,iCurrentSize.iHeight-iViewSize.iHeight-iCurrentOffset.iY));
1241 if(MousePos.iY>iViewOrigin.iY+iViewSize.iHeight-2)
1242 ScrollWithMouse.iY=iViewOrigin.iY+iViewSize.iHeight-2;
1244 ScrollWithMouse.iY=MousePos.iY;
1250 void CWsWindow::InformTopMouse(TPoint aPos)
1252 // Called if mouse has been captured
1256 CWsWindow *pM=TopWindow();
1258 pM->InformMouse(aPos);
1261 void CWsWindow::MouseLeftButton()
1263 // Called when the left button is pressed
1267 CWsWindow *pM=MouseWindow();
1268 CWsWindow *pT=TopWindow();
1269 if (pT && !MouseIsCaptured)
1274 pM->MakeTopWindow();
1276 pM->DoMouseLeftButton();
1279 RotateWindowsForwards();
1283 void CWsWindow::MouseLeftButtonUp()
1285 // Called when the left button is released
1288 ScrollWithMouse=TPoint(-1,-1);
1289 MoveWithMouse=TPoint(-1,-1);
1290 ResizeWithMouse=TPoint(-1,-1);
1293 CWsWindow *CWsWindow::MouseWindow()
1295 // Return the window containing the mouse.
1299 TInt8 n=VisibilityMap[Offset(MousePos,ScreenSize)];
1303 TDblQueIter<CWsWindow> q(WQueue);
1304 for(pW=q++;pW->iNumber!=n;pW=q++)
1312 TBool CWsWindow::IsTop() const
1314 // Return TRUE if this window is the top window
1318 return(WQueue.IsFirst(this));
1321 CWsWindow* CWsWindow::TopWindow()
1323 // Return the top window
1327 if (WQueue.IsEmpty())
1329 return(WQueue.First());
1332 CWsWindow *CWsWindow::BottomWindow()
1334 // Return the bottom window
1338 if (WQueue.IsEmpty())
1340 return(WQueue.Last());
1343 void CWsWindow::MakeTopWindow()
1345 // Make this window the top window if possible
1349 ResizeWithMouse=TPoint(-1,-1);
1350 ScrollWithMouse=TPoint(-1,-1);
1352 if(iOnTop||WQueue.IsEmpty()||!TopWindow()->iOnTop)
1354 CWsWindow *pT=TopWindow();
1355 WQueue.AddFirst(*this);
1361 TDblQueIter<CWsWindow> q(WQueue);
1365 while(q!=NULL&&((CWsWindow*)q)->iOnTop);
1367 WQueue.AddLast(*this);
1371 iLink.Enque(&(((CWsWindow*)q)->iLink));
1378 void CWsWindow::SetWindowPosAbs(const TPoint &aPoint)
1380 // Move the window to aPoint
1384 ResizeWithMouse=TPoint(-1,-1);
1385 ScrollWithMouse=TPoint(-1,-1);
1387 if (iViewOrigin.iX<0)
1389 else if (iViewOrigin.iX>=ScreenSize.iWidth)
1390 iViewOrigin.iX=ScreenSize.iWidth-1;
1391 if (iViewOrigin.iY<0)
1393 else if (iViewOrigin.iY>=ScreenSize.iHeight)
1394 iViewOrigin.iY=ScreenSize.iHeight-1;
1399 TInt CWsWindow::MoveTopWindowRelative(TPoint aDirection)
1401 // Move the top window relative to its current position
1405 CWsWindow *pT=TopWindow();
1408 TPoint p=pT->iViewOrigin+aDirection;
1409 if (p.iX>=ScreenSize.iWidth || p.iX<0 || p.iY>=ScreenSize.iHeight || p.iY<0)
1410 return KErrArgument;
1418 TInt CWsWindow::SlideTopWindowRelative(TPoint aDirection)
1420 // Slide the top window relative to its current position
1424 CWsWindow *pT=TopWindow();
1425 if (pT && pT->iAllowSlide && aDirection!=TPoint(0,0))
1427 TPoint p=pT->iCurrentOffset+aDirection;
1428 TSize s=pT->iCurrentSize-pT->iViewSize;
1429 if (p.iX>s.iWidth || p.iX<0 || p.iY>s.iHeight || p.iY<0)
1430 return KErrArgument;
1432 pT->iCurrentOffset=p;
1440 TInt CWsWindow::ChangeTopWindowSize(TSize aGrowth)
1442 // Increase the viewing size of the top window relative to its current size
1446 CWsWindow *pT=TopWindow();
1447 if (pT && pT->iAllowResize)
1449 TSize s=pT->iViewSize+aGrowth;
1450 if (s.iWidth>pT->iCurrentSize.iWidth || s.iWidth<3 || s.iHeight>pT->iCurrentSize.iHeight || s.iHeight<3)
1451 return KErrArgument;
1454 s=pT->iCurrentSize-pT->iViewSize;
1455 if (pT->iCurrentOffset.iX>s.iWidth ||pT-> iCurrentOffset.iY>s.iHeight)
1456 pT->iCurrentOffset-=aGrowth;
1465 void CWsWindow::RotateWindowsForwards()
1467 // Put the next window on top
1471 CWsWindow *pT=TopWindow();
1472 if(pT && pT->iOnTop==EFalse)
1474 CWsWindow *pB=BottomWindow();
1477 MoveWithMouse=TPoint(-1,-1);
1478 ResizeWithMouse=TPoint(-1,-1);
1479 ScrollWithMouse=TPoint(-1,-1);
1483 WQueue.AddFirst(*pB);
1489 while(!pT->iIsVisible);
1495 void CWsWindow::RotateWindowsBackwards()
1497 // Put the previous window on top
1501 CWsWindow *pT=TopWindow();
1502 if(pT && pT->iOnTop==EFalse)
1504 CWsWindow *pB=BottomWindow();
1507 MoveWithMouse=TPoint(-1,-1);
1508 ResizeWithMouse=TPoint(-1,-1);
1509 ScrollWithMouse=TPoint(-1,-1);
1513 WQueue.AddLast(*pT);
1517 while(!pT->iIsVisible);
1524 void CWsWindow::QueueTopWindowKey(TKeyData &aKeystroke)
1526 // Place keystroke in top window's keyboard queue
1529 CWsWindow *pT=TopWindow();
1531 pT->QueueWindowKey(aKeystroke);
1534 void CWsWindow::KeyPress(TKeyData &aKeystroke)
1536 // Called whenever a key is pressed
1539 switch(aKeystroke.iKeyCode)
1541 case EKeyIncContrast:
1544 if (HAL::Get(HAL::EDisplayContrastMax,max)==KErrNone)
1547 HAL::Get(HAL::EDisplayContrast,now);
1549 HAL::Set(HAL::EDisplayContrast,now);
1553 case EKeyDecContrast:
1556 TInt r=HAL::Get(HAL::EDisplayContrast,now);
1557 if (r==KErrNone && now-->0)
1558 HAL::Set(HAL::EDisplayContrast,now);
1561 case EKeyIncBrightness:
1564 if (HAL::Get(HAL::EDisplayBrightnessMax,max)==KErrNone)
1567 HAL::Get(HAL::EDisplayBrightness,now);
1569 HAL::Set(HAL::EDisplayBrightness,now);
1573 case EKeyDecBrightness:
1576 TInt r=HAL::Get(HAL::EDisplayBrightness,now);
1577 if (r==KErrNone && now-->0)
1578 HAL::Set(HAL::EDisplayBrightness,now);
1583 RDmDomainManager mgr;
1584 TInt r = mgr.Connect();
1586 User::Panic(_L("EWSRV KeyOff0"), r);
1587 TRequestStatus status;
1588 mgr.RequestSystemTransition(EPwStandby, status);
1589 User::WaitForRequest(status);
1590 if (status.Int() != KErrNone)
1591 User::Panic(_L("EWSRV KeyOff1"), status.Int());
1595 case EKeyBacklightOn:
1596 HAL::Set(HAL::EBacklightState,ETrue);
1598 case EKeyBacklightOff:
1599 HAL::Set(HAL::EBacklightState,EFalse);
1601 case EKeyBacklightToggle:
1604 if (HAL::Get(HAL::EBacklightState,state)==KErrNone)
1605 HAL::Set(HAL::EBacklightState,!state);
1609 if (aKeystroke.iModifiers&EModifierCtrl) // Trap all Crtl + keystrokes for window manipulation
1611 if (aKeystroke.iModifiers&EModifierShift)
1613 switch(aKeystroke.iKeyCode)
1616 SlideTopWindowRelative(TPoint(-1,0));
1618 case EKeyRightArrow:
1619 SlideTopWindowRelative(TPoint(1,0));
1622 SlideTopWindowRelative(TPoint(0,-1));
1625 SlideTopWindowRelative(TPoint(0,1));
1628 QueueTopWindowKey(aKeystroke); // Buffer keystroke for app
1634 switch(aKeystroke.iKeyCode)
1637 ChangeTopWindowSize(TSize(-1,0));
1639 case EKeyRightArrow:
1640 ChangeTopWindowSize(TSize(1,0));
1643 ChangeTopWindowSize(TSize(0,-1));
1646 ChangeTopWindowSize(TSize(0,1));
1649 ScreenDriver->SetMode(EMono);
1652 ScreenDriver->SetMode(EGray4);
1655 ScreenDriver->SetMode(EGray16);
1658 ControlTopWindowMaximised(ETrue);
1661 ControlTopWindowMaximised(EFalse);
1664 KeyRepeat->Cancel();
1665 RotateWindowsBackwards();
1668 KeyRepeat->Cancel();
1669 RotateWindowsForwards();
1672 QueueTopWindowKey(aKeystroke); // Buffer keystroke for app
1677 else if (aKeystroke.iModifiers&EModifierShift)
1680 switch(aKeystroke.iKeyCode)
1683 MoveTopWindowRelative(TPoint(-1,0));
1685 case EKeyRightArrow:
1686 MoveTopWindowRelative(TPoint(1,0));
1689 MoveTopWindowRelative(TPoint(0,-1));
1692 MoveTopWindowRelative(TPoint(0,1));
1695 QueueTopWindowKey(aKeystroke); // Buffer keystroke for app
1699 if (!(aKeystroke.iModifiers&EModifierShift||aKeystroke.iModifiers&EModifierCtrl))
1700 QueueTopWindowKey(aKeystroke);
1702 DrainAllReadRequests();
1705 void CWsWindow::ControlInformAllMouse(TBool anIndicator)
1707 // Turn reporting of pointer events on or off according to the value of anIndicator
1711 MouseIsCaptured=anIndicator;
1714 void CWsWindow::ControlTopWindowMaximised(TBool anIndicator)
1716 // Maximise or minimise the top window according to the value of anIndicator
1720 CWsWindow *pT=TopWindow();
1722 pT->ControlMaximised(anIndicator);
1725 void CWsWindow::DrainAllReadRequests()
1727 // Drain all the satisfied read requests on all waiting windows
1731 TDblQueIter<CWsWindow> q(WQueue);
1733 while((pW=q++)!=NULL)
1734 pW->DrainReadRequest();
1737 #pragma warning( disable : 4705 ) // statement has no effect
1738 CWsWindow::CWsWindow()
1745 #pragma warning( default : 4705 )
1747 void CWsWindow::SetTitle(const TDesC &aName)
1749 // Changes the window's title
1758 void CWsWindow::SetSize(const TSize &aSize)
1760 // Changes the window's size
1763 iCurrentSize=aSize; // This does not get called. Proper implementation is obviously more complicated than this.
1766 TSize CWsWindow::Size()
1768 // Return underlying window size
1771 return(iCurrentSize);
1774 CWsWindow::~CWsWindow()
1781 while(!iKQueue.IsEmpty())
1784 iKQueue.Remove(*pS);
1787 User::Free(iTextBuffer);
1788 User::Free(iAttributeBuffer);
1791 ReleaseNumber(iNumber);
1793 if (iLink.iNext!=NULL)
1795 if(!WQueue.IsEmpty())
1796 WQueue.First()->SetFrame();
1802 void CWsWindow::SetView()
1804 // Assign an initial wiewing region to a window (this maybe modified later by the user)
1808 Count&=3; // Increment count through the sequence 0, 1, 2, 3, 0, 1, 2, ....
1809 iViewSize.iWidth=ScreenSize.iWidth>>1; // View is half width and half depth of physical screen
1810 iViewSize.iHeight=ScreenSize.iHeight>>1; // View is half width and half depth of physical screen
1811 iViewOrigin=TPoint(0,0);
1812 if (iViewSize.iWidth<30 || iViewSize.iHeight<10)
1813 iViewSize=ScreenSize;
1817 iViewOrigin.iX+=iViewSize.iWidth;
1819 iViewOrigin.iY+=iViewSize.iHeight;
1821 if (iViewSize.iWidth>iCurrentSize.iWidth)
1822 iViewSize.iWidth=iCurrentSize.iWidth;
1823 if (iViewSize.iHeight>iCurrentSize.iHeight)
1824 iViewSize.iHeight=iCurrentSize.iHeight;
1828 void CWsWindow::SetFull()
1830 // Calculate the view size and origin for this window if it were maximised and placed centrally
1834 if (iCurrentSize.iWidth>ScreenSize.iWidth)
1836 iMaximumOrigin.iX=0;
1837 iMaximumSize.iWidth=ScreenSize.iWidth;
1841 iMaximumOrigin.iX=(ScreenSize.iWidth-iCurrentSize.iWidth)/2;
1842 iMaximumSize.iWidth=iCurrentSize.iWidth;
1844 if (iCurrentSize.iHeight>ScreenSize.iHeight)
1846 iMaximumOrigin.iY=0;
1847 iMaximumSize.iHeight=ScreenSize.iHeight;
1851 iMaximumOrigin.iY=(ScreenSize.iHeight-iCurrentSize.iHeight)/2;
1852 iMaximumSize.iHeight=iCurrentSize.iHeight;
1856 void CWsWindow::SetFrame()
1858 // Draw the frame into the buffer.
1862 // WINS text window server uses underlying Win32 graphics calls, so the Unicode
1863 // WINS build has access to Unicode fonts, and needs to use the Unicode box-drawing
1865 // EPOC devices have a codepage 1252 font compiled into the simple display driver,
1866 // so they need to use "Unicode" characters which are just the CP1252 characters
1867 // expanded to 16-bits.
1869 #if defined(_UNICODE) && defined(__WINS__)
1870 const TText bf[] = {0x2554,0x2557,0x255A,0x255D,0x2550,0x2551,0x2550,0x2550,0x2551,0x2551};
1871 const TText bf1[] = {0x2554,0x2557,0x255A,0x255D,0x2550,0x2551,0x2591,0x2592,0x2591,0x2592};
1872 const TText *frame[2] ={ bf, bf1 };
1874 const TText *frame[2] = {
1875 _S("\xDA\xBF\xC0\xD9\xC4\xB3\xC4\xC4\xB3\xB3"),
1876 _S("\xC9\xBB\xC8\xBC\xCD\xBA\xB1\xB2\xB1\xB1")
1879 const TText *pF=frame[IsTop() ? 1 : 0];
1880 #if defined(_UNICODE) // K.K
1881 TText *pLT=GetCpFromOffset(iTextBuffer, iCurrentOffset,iCurrentSize); // K.K
1883 TText *pLT=&iTextBuffer[Offset(iCurrentOffset,iCurrentSize)];
1885 TText *pRT=&pLT[iViewSize.iWidth-1];
1886 ColorInformation *pLA=&iAttributeBuffer[Offset(iCurrentOffset,iCurrentSize)];
1887 ColorInformation *pRA=&pLA[iViewSize.iWidth-1];
1888 TextFill(pLT,iViewSize.iWidth,&pF[4]);
1889 for(TInt x=0;x<iViewSize.iWidth;x++)
1891 (pLA+x)->iFg=BorderColor;
1892 (pLA+x)->iBg=WindowBgColor;
1895 TInt i=iViewSize.iWidth-2;
1896 TInt s=iTitle.Length();
1899 // #if defined(_UNICODE) // K.K
1904 Mem::Copy(pLT+i+1,iTitle.Ptr(),s*sizeof(TText));
1907 #if defined(_UNICODE) // K.K
1908 // if (s&1) pLT[i+1+s] = 0x0020; // K.K
1909 FitInWidth(pLT,iCurrentSize.iWidth,iViewSize.iWidth-1,pF[1]); // K.K
1914 i=iViewSize.iHeight-2;
1915 s=(i*iCurrentOffset.iY)/(iCurrentSize.iHeight-2);
1916 TInt l=((i*i)/(iCurrentSize.iHeight-2))+1;
1920 pLT=&pLT[iCurrentSize.iWidth];
1921 pRT=&pRT[iCurrentSize.iWidth];
1922 pLA=&pLA[iCurrentSize.iWidth];
1923 pRA=&pRA[iCurrentSize.iWidth];
1926 pLA->iFg=BorderColor;
1927 pLA->iBg=WindowBgColor;
1929 if (!iHasScrollBars)
1931 #if defined(_UNICODE) // K.K
1932 FitInWidth(pLT, iCurrentSize.iWidth, iViewSize.iWidth-1, pF[5]); // K.K
1936 pRA->iFg=BorderColor;
1937 pRA->iBg=WindowBgColor;
1941 #if defined(_UNICODE) // K.K
1942 FitInWidth(pLT, iCurrentSize.iWidth, iViewSize.iWidth-1, pF[8]); // K.K
1946 pRA->iFg=BorderColor;
1947 pRA->iBg=WindowBgColor;
1952 #if defined(_UNICODE) // K.K
1953 FitInWidth(pLT, iCurrentSize.iWidth, iViewSize.iWidth-1, pF[9]); // K.K
1957 pRA->iFg=BorderColor;
1958 pRA->iBg=WindowBgColor;
1964 pLT=&pLT[iCurrentSize.iWidth];
1965 pRT=&pRT[iCurrentSize.iWidth];
1966 pLA=&pLA[iCurrentSize.iWidth];
1967 pRA=&pRA[iCurrentSize.iWidth];
1969 for(i=0;i<iViewSize.iWidth;i++)
1971 pLA->iFg=BorderColor;
1972 pLA->iBg=WindowBgColor;
1976 if (!iHasScrollBars)
1978 TextFill(pLT,iViewSize.iWidth,&pF[4]);
1982 i=iViewSize.iWidth-2;
1983 s=(i*iCurrentOffset.iX)/(iCurrentSize.iWidth-2);
1984 l=((i*i)/(iCurrentSize.iWidth-2))+1;
1985 #if defined(_UNICODE) // K.K
1989 TextFill(&pLT[1],i,&pF[6]);
1990 TextFill(&pLT[s+1],l,&pF[7]);
1994 #if defined(_UNICODE) // K.K
1995 FitInWidth(pLT, iCurrentSize.iWidth, iViewSize.iWidth-1, pF[3]); // K.K
2001 void CWsWindow::SetCursorHeight(TInt aPercentage)
2003 // Set percentage height of cursor
2007 aPercentage=Min(aPercentage,100);
2009 iCursorRequired=EFalse;
2011 iCursorRequired=ETrue;
2013 #if defined(_UNICODE) // K.K
2014 iCursor=0x005F; // K.K
2016 iCursor=Cursors[aPercentage];
2022 void CWsWindow::ClearToEndOfLine()
2024 // Clear the window from the current cursor position to the end of the line.
2027 TInt w=iCurrentSize.iWidth-iCursorPos.iX-1;
2029 TextFill(&iTextBuffer[Offset(iCursorPos,iCurrentSize)],w,_S(" "));
2030 Mem::Fill(&iAttributeBuffer[Offset(iCursorPos,iCurrentSize)],w*sizeof(ColorInformation),WindowBgColor);
2033 __ASSERT_DEBUG(IsTop(),User::Panic(_L("Not front window"),0));
2034 if (IsInClippedTextArea(iCursorPos))
2038 void CWsWindow::WriteDone()
2040 // Called after a bunch of Write() calls
2047 void CWsWindow::NewLine()
2049 // Do CR/LF on this window
2060 void CWsWindow::InformMouse(TPoint aPos)
2062 // Called if mouse has been captured
2065 SWsKey *pS=new SWsKey;
2070 pS->iType=EMouseClick;
2071 iKQueue.AddLast(*pS);
2073 DrainAllReadRequests();
2076 void CWsWindow::DoMouseLeftButton()
2078 // Called when the left button is pressed
2082 if(iAllowResize && MousePos==iViewOrigin+iViewSize-TPoint(1,1))
2083 ResizeWithMouse=MousePos;
2086 TInt i=iViewSize.iWidth-2;
2087 TInt s=(i*iCurrentOffset.iX)/(iCurrentSize.iWidth-2);
2088 TInt l=((i*i)/(iCurrentSize.iWidth-2))+1;
2089 if(iHasScrollBars && MousePos.iY==iViewOrigin.iY+iViewSize.iHeight-1 && MousePos.iX>iViewOrigin.iX+s && MousePos.iX<iViewOrigin.iX+s+l+1)
2091 ScrollWithMouse=TPoint(MousePos.iX,0);
2092 ScrollSpeed=(iCurrentSize.iWidth+iViewSize.iWidth/2-3)/(iViewSize.iWidth-2);
2096 i=iViewSize.iHeight-2;
2097 s=(i*iCurrentOffset.iY)/(iCurrentSize.iHeight-2);
2098 l=((i*i)/(iCurrentSize.iHeight-2))+1;
2099 if(iHasScrollBars && MousePos.iX==iViewOrigin.iX+iViewSize.iWidth-1 && MousePos.iY>iViewOrigin.iY+s && MousePos.iY<iViewOrigin.iY+s+l+1)
2101 ScrollWithMouse=TPoint(0,MousePos.iY);
2102 ScrollSpeed=(iCurrentSize.iHeight+iViewSize.iHeight/2-3)/(iViewSize.iHeight-2);
2104 else MoveWithMouse=MousePos;
2109 SWsKey *pS=new SWsKey;
2112 pS->iMousePos=MousePos;
2113 pS->iType=EMouseClick;
2114 iKQueue.AddLast(*pS);
2116 DrainAllReadRequests();
2120 void CWsWindow::QueueWindowKey(TKeyData &aKeystroke)
2122 // Place keystroke in window's keyboard queue
2126 SWsKey *pS=new SWsKey;
2129 pS->iKeyData=aKeystroke;
2130 pS->iType=EKeyPress;
2131 iKQueue.AddLast(*pS);
2135 void CWsWindow::QueueRawEvent(TRawEvent& anEvent)
2137 // Deliver a raw event to the raw event window
2143 RawEventWindow->QueueWindowRawEvent(anEvent);
2144 DrainAllReadRequests();
2148 void CWsWindow::QueueWindowRawEvent(TRawEvent& anEvent)
2150 // Place raw event in window's event queue
2153 SWsKey *pS=new SWsKey;
2156 pS->iKeyData.iModifiers=0;
2157 pS->iKeyData.iApp=0;
2158 pS->iKeyData.iHandle=0;
2159 pS->iKeyData.iIsCaptureKey=EFalse;
2160 pS->iKeyData.iKeyCode=0;
2161 pS->iMousePos=TPoint(0,0);
2162 pS->iType=anEvent.Type();
2163 switch(anEvent.Type())
2165 case TRawEvent::EPointerMove:
2166 case TRawEvent::EButton1Down:
2167 case TRawEvent::EButton1Up:
2168 case TRawEvent::EButton2Down:
2169 case TRawEvent::EButton2Up:
2170 case TRawEvent::EButton3Down:
2171 case TRawEvent::EButton3Up:
2172 pS->iMousePos=anEvent.Pos();
2174 case TRawEvent::EKeyUp:
2175 case TRawEvent::EKeyDown:
2176 pS->iKeyData.iKeyCode=anEvent.ScanCode();
2181 iKQueue.AddLast(*pS);
2185 void CWsWindow::SetCursorPosAbs(const TPoint &aPosition)
2187 // Place cursor at position specified
2191 iCursorPos=aPosition;
2192 iCursorPos+=TPoint(1,1);
2193 if (iCursorPos.iX<1)
2195 if (iCursorPos.iX>=iCurrentSize.iWidth-1)
2196 iCursorPos.iX=iCurrentSize.iWidth-2;
2197 if (iCursorPos.iY<1)
2199 if (iCursorPos.iY>=iCurrentSize.iHeight-1)
2200 iCursorPos.iY=iCurrentSize.iHeight-2;
2204 void CWsWindow::SetCursorPosRel(const TPoint &aPosition)
2206 // Place cursor at position relative to current position
2210 TPoint p=iCursorPos+aPosition-TPoint(1,1);
2214 TPoint CWsWindow::CursorPosition()
2216 // Return current cursor position
2220 return(iCursorPos-TPoint(1,1));
2223 void CWsWindow::ControlScrollBars(TBool anIndicator)
2225 // Turn scroll bars on or off according to the value of anIndicator
2229 iHasScrollBars=anIndicator;
2235 ScrollWithMouse=TPoint(-1,-1);
2239 void CWsWindow::ControlWrapLock(TBool anIndicator)
2241 // Turn wrap lock on or off according to the value of anIndicator
2245 iWrapLock=anIndicator;
2248 void CWsWindow::ControlPointerEvents(TBool anIndicator)
2250 // Turn reporting of pointer events on or off according to the value of anIndicator
2254 ResizeWithMouse=TPoint(-1,-1);
2255 ScrollWithMouse=TPoint(-1,-1);
2256 iPointerEvents=anIndicator;
2259 void CWsWindow::ControlScrollLock(TBool anIndicator)
2261 // Turn scroll lock on or off according to the value of anIndicator
2265 iScrollLock=anIndicator;
2268 void CWsWindow::ControlAllowResize(TBool anIndicator)
2270 // Turn iAllowResize on or off
2274 iAllowResize=anIndicator;
2275 ResizeWithMouse=TPoint(-1,-1);
2278 void CWsWindow::ControlOnTop(TBool anIndicator)
2280 // Turn iOnTop on or off
2291 void CWsWindow::ControlVisibility(TBool anIndicator)
2293 // Turn visibility on or off according to the value of anIndicator
2298 iIsVisible=anIndicator;
2299 if (!iIsVisible && IsTop())
2300 RotateWindowsBackwards(); // make sure we have a visible window on top
2301 if (!iIsVisible&&iTextBuffer)
2303 if (iTextBuffer&&iIsVisible)
2308 void CWsWindow::ControlCursorRequired(TBool anIndicator)
2310 // Turn the text cursor on or off according to the value of anIndicator
2314 iCursorRequired=anIndicator;
2318 void CWsWindow::ControlMaximised(TBool anIndicator)
2320 // Maximise or minimise the window according to the value of anIndicator
2323 ResizeWithMouse=TPoint(-1,-1);
2324 ScrollWithMouse=TPoint(-1,-1);
2327 if (iViewSize==iMaximumSize && iViewOrigin==iMaximumOrigin)
2330 iMinimumSize=iViewSize;
2331 iMinimumOrigin=iViewOrigin;
2332 iViewSize=iMaximumSize;
2333 iViewOrigin=iMaximumOrigin;
2334 TSize s=iCurrentSize-iViewSize;
2335 if (iCurrentOffset.iX>s.iWidth)
2336 iCurrentOffset.iX=s.iWidth;
2337 if (iCurrentOffset.iY>s.iHeight)
2338 iCurrentOffset.iY=s.iHeight;
2346 if (iViewSize==iMaximumSize && iViewOrigin==iMaximumOrigin)
2349 iViewSize=iMinimumSize;
2350 iViewOrigin=iMinimumOrigin;
2359 void CWsWindow::ControlNewLineMode(TBool anIndicator)
2361 // Set the newline mode
2365 iNewLineMode=anIndicator;
2368 void CWsWindow::ControlRawEventMode(TBool anIndicator)
2370 // Set the raw event mode
2376 if (!RawEventWindow)
2377 RawEventWindow=this;
2381 if (RawEventWindow==this)
2382 RawEventWindow=NULL;
2386 TBool CWsWindow::RawEventMode()
2388 // Report whether in raw event mode
2392 return(RawEventWindow!=NULL);
2395 TBool CWsWindow::EnqueReadRequest(const RMessage2 &aMessage)
2397 // Accept read request on this window
2403 iReadRequest=aMessage;
2405 DrainAllReadRequests();
2412 void CWsWindow::DequeReadRequest()
2416 iReadIsValid=EFalse;
2417 iReadRequest.Complete(KErrCancel);
2421 void CWsWindow::DrainReadRequest()
2423 // Drain satisfied read requests
2427 if (iReadIsValid && !(iKQueue.IsEmpty()))
2429 RMessage2& m=iReadRequest;
2431 SWsKey *pS=iKQueue.First();
2432 k.iCode=(TKeyCode)pS->iKeyData.iKeyCode;
2434 k.iModifiers=KeyTranslator->GetModifierState();
2437 k.iMousePos=pS->iMousePos;
2439 TPckgC<SConsoleKey> keystroke(k);
2440 m.WriteL(0,keystroke);
2441 iKQueue.Remove(*pS);
2443 iReadIsValid=EFalse; // Do this before message completion to prevent message flow control problems
2444 m.Complete(KErrNone);
2448 void CWsWindow::CreateL(const TSize &aSize)
2450 // Default the new control block and add to queue.
2453 iNumber=NewNumberL();
2454 iCurrentOffset=TPoint(0,0);
2455 iCurrentSize=aSize+TSize(2,2); // Allow for window border
2456 if (iCurrentSize.iWidth==KConsFullScreen+2)
2457 iCurrentSize.iWidth=ScreenSize.iWidth;
2458 if (iCurrentSize.iHeight==KConsFullScreen+2)
2459 iCurrentSize.iHeight=ScreenSize.iHeight;
2460 if (iCurrentSize.iWidth>ScreenSize.iWidth)
2461 User::Leave(EWindowTooWide);
2462 if (iCurrentSize.iWidth<3)
2463 User::Leave(EWindowTooThin);
2464 if (iCurrentSize.iHeight>ScreenSize.iHeight)
2465 User::Leave(EWindowTooHigh);
2466 if (iCurrentSize.iHeight<3)
2467 User::Leave(EWindowTooShort);
2468 iTextBuffer=(TText *)User::Alloc(sizeof(TText)*iCurrentSize.iWidth*iCurrentSize.iHeight);
2470 User::Leave(EWindowOutOfMemory);
2471 iAttributeBuffer=(ColorInformation *)User::Alloc(iCurrentSize.iWidth*iCurrentSize.iHeight*sizeof(ColorInformation));
2472 if (!iAttributeBuffer)
2473 User::Leave(EWindowOutOfMemory);
2474 iFgColor=IndexOf[ETextAttributeNormal];
2475 iBgColor=IndexOf[ETextAttributeNormal+1];
2476 WQueue.AddLast(*this);