Slide 1

Slide 1 text

How the Text in Writer Gets on the Screen? Jan Holesovsky

Slide 2

Slide 2 text

2 / 14 Event Name | Your Name It all starts with a draw request ● Window::ImplCallPaint( ● const Region* pRegion, – [can be more rectangles etc.] ● sal_uInt16 nPaintFlags ) – [whether to paint children etc.]

Slide 3

Slide 3 text

3 / 14 Event Name | Your Name It gets to the Writer's edit window ● SwEditWin = Window class for the Writer edit area ● handling mouse and keyboard events and doing the final painting of the document from the buffered layout. ● SwEditWin::Paint( ● const Rectangle& rRect) – [rectangle to repaint]

Slide 4

Slide 4 text

4 / 14 Event Name | Your Name SwCrsrShell – ancestor of SwWrtShell ● SwWrtShell is used by the UI to modify the document model ● SwCrsrShell::Paint( ● const Rectangle &rRect)

Slide 5

Slide 5 text

5 / 14 Event Name | Your Name SwViewShell – ancestor of SwCrsrShell ● SwViewShell::Paint( ● const Rectangle &rRect) ● The “real” drawing starts here ● Toplevel – draws the shadows around the document etc. ● Very ugly, actually – part of the code in the class, part is global in the .cxx ● Many OutputDevices out there, etc.

Slide 6

Slide 6 text

6 / 14 Event Name | Your Name Now we are getting to the document model ● SwRootFrm – the root element of a Writer document layout ● SwRootFrm::Paint( ● SwRect const& rRect, – Rectangle to paint ● SwPrintData const*const pPrintData) const – Gets NULL here

Slide 7

Slide 7 text

7 / 14 Event Name | Your Name Getting deeper into the model ● Calling hierarchically (more times in the backtrace) ● SwLayoutFrm::Paint( ● SwRect const& rRect, ● SwPrintData const*const) const

Slide 8

Slide 8 text

8 / 14 Event Name | Your Name Finally we got to the text frame ● SwTxtFrm::Paint( ● SwRect const& rRect, ● SwPrintData const*const) const ● We split the frame to lines

Slide 9

Slide 9 text

9 / 14 Event Name | Your Name And then split the line to portions ● SwTxtPainter::DrawTextLine( ● const SwRect &rPaint – [rectangle to paint] ● SwSaveClip &rClip, – [clipping] ● const sal_Bool bUnderSz ) – [paint the entire line, or by portions?]

Slide 10

Slide 10 text

10 / 14 Event Name | Your Name And now “only” draw the portions ● SwTxtPortion::Paint( ● const SwTxtPaintInfo &rInf ) const ● SwTxtPaintInfo::DrawText( ● const SwLinePortion &rPor, ● const sal_Int32 nLength, ● const sal_Bool bKern ) const ● [just a wrapper for the next one]

Slide 11

Slide 11 text

11 / 14 Event Name | Your Name “Just do it” kind of method ● SwTxtPaintInfo::_DrawText( ● const OUString &rText, ● const SwLinePortion &rPor, ● const sal_Int32 nStart, ● const sal_Int32 nLength, ● const sal_Bool bKern, ● const sal_Bool bWrong, ● const sal_Bool bSmartTag, ● const sal_Bool bGrammarCheck )

Slide 12

Slide 12 text

12 / 14 Event Name | Your Name Getting closer to actual drawing ● SwFont::_DrawText( ● SwDrawTextInfo &rInf) ● [just a wrapper] ● SwSubFont::_DrawText( ● SwDrawTextInfo &rInf, ● const sal_Bool bGrey ) ● [takes care of the underlining, etc.]

Slide 13

Slide 13 text

13 / 14 Event Name | Your Name Compute the positions of the glyphs ● SwFntObj::DrawText( ● SwDrawTextInfo &rInf )

Slide 14

Slide 14 text

14 / 14 Event Name | Your Name And finally – draw the text! ● OutputDevice::DrawTextArray( ● const Point& rStartPt, ● const OUString& rStr, ● const sal_Int32* pDXAry, – [offsets of the letters] ● sal_Int32 nIndex, ● sal_Int32 nLen )