~ubuntu-branches/ubuntu/precise/koffice/precise

« back to all changes in this revision

Viewing changes to kformula/flake/elements/SpaceElement.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghersi
  • Date: 2010-10-27 17:52:57 UTC
  • mfrom: (0.12.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20101027175257-s04zqqk5bs8ckm9o
Tags: 1:2.2.83-0ubuntu1
* Merge with Debian git remaining changes:
 - Add build-deps on librcps-dev, opengtl-dev, libqtgtl-dev, freetds-dev,
   create-resources, libspnav-dev
 - Remove needless build-dep on libwv2-dev
 - koffice-libs recommends create-resources
 - krita recommends pstoedit
 - Keep our patches
* New upstream release 2.3 beta 3
  - Remove debian/patches fixed by upstream
  - Update install files

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* This file is part of the KDE project
 
2
   Copyright (C) 2001 Andrea Rizzi <rizzi@kde.org>
 
3
                      Ulrich Kuettler <ulrich.kuettler@mailbox.tu-dresden.de>
 
4
   Copyright (C) 2006 Martin Pfeiffer <hubipete@gmx.net>
 
5
   Copyright (C) 2006-2007 Alfredo Beaumont Sainz <alfredo.beaumont@gmail.com>
 
6
 
 
7
   This library is free software; you can redistribute it and/or
 
8
   modify it under the terms of the GNU Library General Public
 
9
   License as published by the Free Software Foundation; either
 
10
   version 2 of the License, or (at your option) any later version.
 
11
 
 
12
   This library is distributed in the hope that it will be useful,
 
13
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
15
   Library General Public License for more details.
 
16
 
 
17
   You should have received a copy of the GNU Library General Public License
 
18
   along with this library; see the file COPYING.LIB.  If not, write to
 
19
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
20
   Boston, MA 02110-1301, USA.
 
21
*/
 
22
 
 
23
#include "SpaceElement.h"
 
24
#include "AttributeManager.h"
 
25
#include <KoXmlWriter.h>
 
26
#include <QPainter>
 
27
#include <QBrush>
 
28
 
 
29
SpaceElement::SpaceElement( BasicElement* parent ) : BasicElement( parent )
 
30
{}
 
31
 
 
32
void SpaceElement::paint( QPainter& painter, AttributeManager* )
 
33
{
 
34
    painter.setBrush( QBrush( Qt::lightGray, Qt::DiagCrossPattern ) );
 
35
    painter.drawRect( QRectF( 0.0, 0.0, width(), height() ) );
 
36
}
 
37
 
 
38
void SpaceElement::layout( const AttributeManager* am )
 
39
{
 
40
    qreal height =  am->doubleOf( "height", this ); 
 
41
    setHeight( height + am->doubleOf( "depth", this ) );
 
42
    setWidth( am->doubleOf( "width", this ) );
 
43
    setBaseLine( height );
 
44
}
 
45
 
 
46
QString SpaceElement::attributesDefaultValue( const QString& attribute ) const
 
47
{
 
48
    if( attribute == "width" || attribute == "height" || attribute == "depth" )
 
49
        return "0.0";
 
50
    else
 
51
        return "auto";
 
52
}
 
53
 
 
54
ElementType SpaceElement::elementType() const
 
55
{
 
56
    return Space;
 
57
}