~ubuntu-branches/debian/sid/kdevelop/sid

« back to all changes in this revision

Viewing changes to lib/widgets/propeditor/psizeedit.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2010-05-05 07:21:55 UTC
  • mfrom: (1.2.3 upstream) (5.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100505072155-h78lx19pu04sbhtn
Tags: 4:4.0.0-2
* Upload to unstable (Closes: #579947, #481832).
* Acknowledge obsolete NMU fixes (Closes: #562410, #546961).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***************************************************************************
2
 
 *   Copyright (C) 2004 by Alexander Dymo                                  *
3
 
 *   cloudtemple@mskat.net                                                 *
4
 
 *                                                                         *
5
 
 *   This program is free software; you can redistribute it and/or modify  *
6
 
 *   it under the terms of the GNU Library General Public License as       *
7
 
 *   published by the Free Software Foundation; either version 2 of the    *
8
 
 *   License, or (at your option) any later version.                       *
9
 
 *                                                                         *
10
 
 *   This program is distributed in the hope that it will be useful,       *
11
 
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12
 
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13
 
 *   GNU General Public License for more details.                          *
14
 
 *                                                                         *
15
 
 *   You should have received a copy of the GNU Library General Public     *
16
 
 *   License along with this program; if not, write to the                 *
17
 
 *   Free Software Foundation, Inc.,                                       *
18
 
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19
 
 ***************************************************************************/
20
 
#include "psizeedit.h"
21
 
 
22
 
#include <klineedit.h>
23
 
#include <qlayout.h>
24
 
#include <qpainter.h>
25
 
 
26
 
namespace PropertyLib{
27
 
 
28
 
PSizeEdit::PSizeEdit(MultiProperty *property, QWidget *parent, const char *name)
29
 
    :PropertyWidget(property, parent, name)
30
 
{
31
 
    QHBoxLayout *l = new QHBoxLayout(this, 0, 0);
32
 
    m_edit = new KLineEdit(this);
33
 
    m_edit->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding);
34
 
    l->addWidget(m_edit);
35
 
 
36
 
    m_edit->setReadOnly(true);
37
 
}
38
 
 
39
 
QVariant PSizeEdit::value() const
40
 
{
41
 
    return m_value;
42
 
}
43
 
 
44
 
void PSizeEdit::drawViewer(QPainter* p, const QColorGroup& cg, const QRect& r, const QVariant& value)
45
 
{
46
 
    p->setPen(Qt::NoPen);
47
 
    p->setBrush(cg.background());
48
 
    p->drawRect(r);
49
 
    p->drawText(r, Qt::AlignLeft | Qt::AlignVCenter | Qt::SingleLine, QString("[ %1, %2 ]").arg(value.toSize().width()).arg(value.toSize().height()));
50
 
}
51
 
 
52
 
void PSizeEdit::setValue(const QVariant& value, bool emitChange)
53
 
{
54
 
    m_value = value;
55
 
    m_edit->setText(QString("[ %1, %2 ]").arg(value.toSize().width()).arg(value.toSize().height()));
56
 
 
57
 
    if (emitChange)
58
 
        emit propertyChanged(m_property, value);
59
 
}
60
 
 
61
 
}
62
 
 
63
 
#ifndef PURE_QT
64
 
#include "psizeedit.moc"
65
 
#endif