summaryrefslogtreecommitdiff
path: root/svtools/source/table/gridtablerenderer.cxx
blob: 5fb61a9f385e22f9d9225b35b056c3cd86ef1a8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
/*************************************************************************
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * Copyright 2000, 2010 Oracle and/or its affiliates.
 *
 * OpenOffice.org - a multi-platform office productivity suite
 *
 * This file is part of OpenOffice.org.
 *
 * OpenOffice.org is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License version 3
 * only, as published by the Free Software Foundation.
 *
 * OpenOffice.org is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License version 3 for more details
 * (a copy is included in the LICENSE file that accompanied this code).
 *
 * You should have received a copy of the GNU Lesser General Public License
 * version 3 along with OpenOffice.org.  If not, see
 * <http://www.openoffice.org/license.html>
 * for a copy of the LGPLv3 License.
 *
************************************************************************/

// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_svtools.hxx"

#include "svtools/table/gridtablerenderer.hxx"

#include <tools/debug.hxx>
#include <vcl/window.hxx>
#include <vcl/image.hxx>

//........................................................................
namespace svt { namespace table
{
//........................................................................

    struct GridTableRenderer_Impl
    {
        ITableModel&    rModel;
        RowPos          nCurrentRow;

        GridTableRenderer_Impl( ITableModel& _rModel )
            :rModel( _rModel )
            ,nCurrentRow( ROW_INVALID )
        {
        }
    };

    //====================================================================
    //= GridTableRenderer
    //====================================================================
    //--------------------------------------------------------------------
    GridTableRenderer::GridTableRenderer( ITableModel& _rModel )
        :m_pImpl( new GridTableRenderer_Impl( _rModel ) )
    {
    }

    //--------------------------------------------------------------------
    GridTableRenderer::~GridTableRenderer()
    {
        DELETEZ( m_pImpl );
    }

    //--------------------------------------------------------------------
    RowPos GridTableRenderer::getCurrentRow()
    {
        return m_pImpl->nCurrentRow;
    }

    //--------------------------------------------------------------------
    void GridTableRenderer::PaintHeaderArea(
        OutputDevice& _rDevice, const Rectangle& _rArea, bool _bIsColHeaderArea, bool _bIsRowHeaderArea,
        const StyleSettings& _rStyle )
    {
        OSL_PRECOND( _bIsColHeaderArea || _bIsRowHeaderArea,
            "GridTableRenderer::PaintHeaderArea: invalid area flags!" );

        _rDevice.Push( PUSH_FILLCOLOR | PUSH_LINECOLOR);
        Color background = m_pImpl->rModel.getHeaderBackgroundColor();
        if( background != 0xFFFFFF)
            _rDevice.SetFillColor(background);
        else
            _rDevice.SetFillColor(_rStyle.GetDialogColor());
        _rDevice.SetLineColor(_rStyle.GetSeparatorColor());
        _rDevice.DrawRect( _rArea );
        // delimiter lines at bottom/right
        _rDevice.DrawLine( _rArea.BottomLeft(), _rArea.BottomRight() );
        _rDevice.DrawLine( _rArea.BottomRight(), _rArea.TopRight() );

        _rDevice.Pop();
        (void)_bIsColHeaderArea;
        (void)_bIsRowHeaderArea;
    }

    //--------------------------------------------------------------------
    void GridTableRenderer::PaintColumnHeader( ColPos _nCol, bool _bActive, bool _bSelected,
        OutputDevice& _rDevice, const Rectangle& _rArea, const StyleSettings& _rStyle )
    {
        _rDevice.Push( PUSH_LINECOLOR);
        _rDevice.SetLineColor(_rStyle.GetSeparatorColor());
        _rDevice.DrawLine( _rArea.BottomRight(), _rArea.TopRight());

        String sHeaderText;
        PColumnModel pColumn = m_pImpl->rModel.getColumnModel( _nCol );
        DBG_ASSERT( !!pColumn, "GridTableRenderer::PaintColumnHeader: invalid column model object!" );
        if ( !!pColumn )
            sHeaderText = pColumn->getName();
        if(m_pImpl->rModel.getTextColor() != 0x000000)
            _rDevice.SetTextColor(m_pImpl->rModel.getTextColor());
        else
            _rDevice.SetTextColor(_rStyle.GetFieldTextColor());
        sal_uLong nHorFlag = TEXT_DRAW_LEFT;
        sal_uLong nVerFlag = TEXT_DRAW_TOP;
        if(m_pImpl->rModel.getVerticalAlign() == 1)
            nVerFlag = TEXT_DRAW_VCENTER;
        else if(m_pImpl->rModel.getVerticalAlign() == 2)
            nVerFlag = TEXT_DRAW_BOTTOM;
        if(m_pImpl->rModel.getColumnModel(_nCol)->getHorizontalAlign() == 1)
            nHorFlag = TEXT_DRAW_CENTER;
        else if(m_pImpl->rModel.getColumnModel(_nCol)->getHorizontalAlign() == 2)
            nHorFlag = TEXT_DRAW_RIGHT;
        Rectangle aRect(_rArea);
        aRect.Left()+=4; aRect.Right()-=4;
        aRect.Bottom()-=2;
            _rDevice.DrawText( aRect, sHeaderText, nHorFlag | nVerFlag | TEXT_DRAW_CLIP);
        _rDevice.DrawLine( _rArea.BottomLeft(), _rArea.BottomRight() );
        _rDevice.Pop();

        (void)_bActive;
        // no special painting for the active column at the moment

        (void)_bSelected;
        //selection for column header not yet implemented
    }

    //--------------------------------------------------------------------
    void GridTableRenderer::PrepareRow( RowPos _nRow, bool _bActive, bool _bSelected,
        OutputDevice& _rDevice, const Rectangle& _rRowArea, const StyleSettings& _rStyle )
    {
        // remember the row for subsequent calls to the other ->ITableRenderer methods
        m_pImpl->nCurrentRow = _nRow;

        _rDevice.Push( PUSH_FILLCOLOR | PUSH_LINECOLOR);

        Color aRowBackground = m_pImpl->rModel.getOddRowBackgroundColor();
        Color line =  m_pImpl->rModel.getLineColor();
        Color aRowBackground2 = m_pImpl->rModel.getEvenRowBackgroundColor();
        Color fieldColor = _rStyle.GetFieldColor();
        if(aRowBackground == 0xFFFFFF)
            aRowBackground = fieldColor;
        if(aRowBackground2 == 0xFFFFFF)
            aRowBackground2 = fieldColor;
        //if row is selected background color becomes blue, and lines should be also blue
        //if they aren't user defined
        if(_bSelected)
        {
            Color aSelected(_rStyle.GetHighlightColor());
            aRowBackground = aSelected;
            if(line == 0xFFFFFF)
                _rDevice.SetLineColor(aRowBackground);
            else
                _rDevice.SetLineColor(line);
        }
        //if row not selected, check the cases whether user defined backgrounds are set
        //and set line color to be the same
        else
        {
            if(aRowBackground2 != fieldColor && _nRow%2)
            {
                aRowBackground = aRowBackground2;
                if(line == 0xFFFFFF)
                    _rDevice.SetLineColor(aRowBackground);
                else
                    _rDevice.SetLineColor(line);
            }
            //fill the rows with alternating background colors if second background color is specified
            else if(aRowBackground != fieldColor && line == 0xFFFFFF)
                _rDevice.SetLineColor(aRowBackground);
            else
            {
                //if Line color is set, then it was user defined and should be visible
                //if it wasn't set, it'll be the same as the default background color, so lines still won't be visible
                _rDevice.SetLineColor(line);
            }
        }
        _rDevice.SetFillColor( aRowBackground );
        _rDevice.DrawRect( _rRowArea );

        // TODO: active?

        _rDevice.Pop();
        (void)_bActive;
    }

    //--------------------------------------------------------------------
    void GridTableRenderer::PaintRowHeader( bool _bActive, bool _bSelected, OutputDevice& _rDevice, const Rectangle& _rArea,
        const StyleSettings& _rStyle, rtl::OUString& _rText )
    {
        _rDevice.Push( PUSH_LINECOLOR);
        _rDevice.SetLineColor(_rStyle.GetSeparatorColor());
        _rDevice.DrawLine( _rArea.BottomLeft(), _rArea.BottomRight() );
        if(m_pImpl->rModel.getTextColor() != 0x000000)
            _rDevice.SetTextColor(m_pImpl->rModel.getTextColor());
        else
            _rDevice.SetTextColor(_rStyle.GetFieldTextColor());
        sal_uLong nHorFlag = TEXT_DRAW_LEFT;
        sal_uLong nVerFlag = TEXT_DRAW_TOP;
        if(m_pImpl->rModel.getVerticalAlign() == 1)
            nVerFlag = TEXT_DRAW_VCENTER;
        else if(m_pImpl->rModel.getVerticalAlign() == 2)
            nVerFlag = TEXT_DRAW_BOTTOM;
        if(m_pImpl->rModel.getColumnModel(0)->getHorizontalAlign() == 1)
            nHorFlag = TEXT_DRAW_CENTER;
        else if(m_pImpl->rModel.getColumnModel(0)->getHorizontalAlign() == 2)
            nHorFlag = TEXT_DRAW_RIGHT;
        Rectangle aRect(_rArea);
        aRect.Left()+=4; aRect.Right()-=4;
        aRect.Bottom()-=2;
        _rDevice.DrawText( aRect, _rText, nHorFlag | nVerFlag | TEXT_DRAW_CLIP);
        // TODO: active? selected?
        (void)_bActive;
        (void)_bSelected;
        //at the moment no special paint for selected row header
        _rDevice.Pop();
    }

    //--------------------------------------------------------------------
    void GridTableRenderer::PaintCellImage( ColPos _nColumn, bool _bSelected, bool _bActive,
        OutputDevice& _rDevice, const Rectangle& _rArea, const StyleSettings& _rStyle, Image* _pCellData )
   {
        _rDevice.Push( PUSH_LINECOLOR | PUSH_FILLCOLOR);
        Color background1 = m_pImpl->rModel.getOddRowBackgroundColor();
        Color background2 = m_pImpl->rModel.getEvenRowBackgroundColor();
        Color line = m_pImpl->rModel.getLineColor();
        //if row is selected and line color isn't user specified, set it blue
        if(_bSelected)
        {
            if(line == 0xFFFFFF)
                _rDevice.SetLineColor(_rStyle.GetHighlightColor());
            else
                _rDevice.SetLineColor(line);
        }
        //else set line color to the color of row background
        else
        {
            if(background2 != 0xFFFFFF && m_pImpl->nCurrentRow%2)
            {
                if(line == 0xFFFFFF)
                    _rDevice.SetLineColor(background2);
                else
                    _rDevice.SetLineColor(line);
            }
            else if(background1 != 0xFFFFFF && line == 0xFFFFFF)
                _rDevice.SetLineColor(background1);
            else
            {
                //if line color is set, then it was user defined and should be visible
                //if it wasn't set, it'll be the same as the default background color, so lines still won't be visible
                _rDevice.SetLineColor(line);
            }
        }
        _rDevice.DrawLine( _rArea.BottomRight(), _rArea.TopRight() );

        Rectangle aRect( _rArea );
        ++aRect.Left(); --aRect.Right();
        aRect.Top(); aRect.Bottom();
        Point imagePos(Point(aRect.Left(), aRect.Top()));
        Size imageSize = _pCellData->GetSizePixel();
        if(aRect.GetWidth() > imageSize.Width())
        {
            if(m_pImpl->rModel.getColumnModel(_nColumn)->getHorizontalAlign() == 1)
                imagePos.X() = aRect.Left()+((double)(aRect.GetWidth() - imageSize.Width()))/2;
            else if(m_pImpl->rModel.getColumnModel(_nColumn)->getHorizontalAlign() == 2)
                imagePos.X() = aRect.Right() - imageSize.Width();
        }
        else
            imageSize.Width() = aRect.GetWidth();
        if(aRect.GetHeight() > imageSize.Height())
        {
            if(m_pImpl->rModel.getVerticalAlign() == 1)
                imagePos.Y() = aRect.Top()+((double)(aRect.GetHeight() - imageSize.Height()))/2;
            else if(m_pImpl->rModel.getVerticalAlign() == 2)
                imagePos.Y() = aRect.Bottom() - imageSize.Height();
        }
        else
            imageSize.Height() = aRect.GetHeight()-1;
        Image& image (*_pCellData);
        _rDevice.DrawImage(imagePos, imageSize, image, 0);
        _rDevice.Pop();

        (void)_bActive;
        // no special painting for the active cell at the moment
    }

    //--------------------------------------------------------------------
   void GridTableRenderer::PaintCellString( ColPos _nColumn, bool _bSelected, bool _bActive,
        OutputDevice& _rDevice, const Rectangle& _rArea, const StyleSettings& _rStyle, rtl::OUString& _rText )
   {
        _rDevice.Push( PUSH_LINECOLOR | PUSH_FILLCOLOR );
        Color background1 = m_pImpl->rModel.getOddRowBackgroundColor();
        Color background2 = m_pImpl->rModel.getEvenRowBackgroundColor();
        Color line = m_pImpl->rModel.getLineColor();
        //if row is selected and line color isn't user specified, set it blue
        if(_bSelected)
        {
            if(line == 0xFFFFFF)
                _rDevice.SetLineColor(_rStyle.GetHighlightColor());
            else
                _rDevice.SetLineColor(line);
        }
        //else set line color to the color of row background
        else
        {
            if(background2 != 0xFFFFFF && m_pImpl->nCurrentRow%2)
            {
                if(line == 0xFFFFFF)
                    _rDevice.SetLineColor(background2);
                else
                    _rDevice.SetLineColor(line);
            }
            else if(background1 != 0xFFFFFF && line == 0xFFFFFF)
                _rDevice.SetLineColor(background1);
            else
            {
                //if Line color is set, then it was user defined and should be visible
                //if it wasn't set, it'll be the same as the default background color, so lines still won't be visible
                _rDevice.SetLineColor(line);
            }
        }
        _rDevice.DrawLine( _rArea.BottomRight(), _rArea.TopRight() );

        Rectangle aRect( _rArea );
        ++aRect.Left(); --aRect.Right();
        aRect.Top(); aRect.Bottom();
        if(_bSelected)
            _rDevice.SetTextColor(_rStyle.GetHighlightTextColor());
        else if(m_pImpl->rModel.getTextColor() != 0x000000)
            _rDevice.SetTextColor(m_pImpl->rModel.getTextColor());
        else
            _rDevice.SetTextColor(_rStyle.GetFieldTextColor());
        sal_uLong nHorFlag = TEXT_DRAW_LEFT;
        sal_uLong nVerFlag = TEXT_DRAW_TOP;
        if(m_pImpl->rModel.getVerticalAlign() == 1)
            nVerFlag = TEXT_DRAW_VCENTER;
        else if(m_pImpl->rModel.getVerticalAlign() == 2)
            nVerFlag = TEXT_DRAW_BOTTOM;
        if(m_pImpl->rModel.getColumnModel(_nColumn)->getHorizontalAlign() == 1)
            nHorFlag = TEXT_DRAW_CENTER;
        else if(m_pImpl->rModel.getColumnModel(_nColumn)->getHorizontalAlign() == 2)
            nHorFlag = TEXT_DRAW_RIGHT;
        Rectangle textRect(_rArea);
        textRect.Left()+=4; textRect.Right()-=4;
        textRect.Bottom()-=2;
        _rDevice.DrawText( textRect, _rText, nHorFlag | nVerFlag | TEXT_DRAW_CLIP);

        _rDevice.Pop();
        (void)_bActive;
        // no special painting for the active cell at the moment
    }

    //--------------------------------------------------------------------
    void GridTableRenderer::ShowCellCursor( Window& _rView, const Rectangle& _rCursorRect)
    {
        _rView.ShowFocus( _rCursorRect );
    }

    //--------------------------------------------------------------------
    void GridTableRenderer::HideCellCursor( Window& _rView, const Rectangle& _rCursorRect)
    {
    (void)_rCursorRect;
        _rView.HideFocus();

    }

//........................................................................
} } // namespace svt::table
//........................................................................