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

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2006-05-23 18:39:42 UTC
  • Revision ID: james.westby@ubuntu.com-20060523183942-hucifbvh68k2bwz7
Tags: upstream-3.3.2
Import upstream version 3.3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * qfloatinput.cpp
 
3
 *
 
4
 * Copyright (C)  2004  David Faure <faure@kde.org>
 
5
 *
 
6
 * This library is free software; you can redistribute it and/or
 
7
 * modify it under the terms of the GNU Lesser General Public
 
8
 * License as published by the Free Software Foundation; either
 
9
 * version 2.1 of the License, or (at your option) any later version.
 
10
 *
 
11
 * This library is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
14
 * Lesser General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU Lesser General Public
 
17
 * License along with this library; if not, write to the Free Software
 
18
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
 
19
 * 02111-1307  USA
 
20
 */
 
21
#include "qfloatinput.h"
 
22
 
 
23
#include <math.h>
 
24
 
 
25
QFloatInput::QFloatInput( int min, int max, float step, int digits,
 
26
                            QWidget *parent, const char *name )
 
27
    : QSpinBox( (int) (min*pow(digits,10)),
 
28
                (int) (max*pow(digits,10)),
 
29
                (int) (step*pow(digits,10)), parent, name ),
 
30
      m_digits( digits )
 
31
{
 
32
    setValue( (int) (min*pow(digits,10)) );
 
33
    delete validator();
 
34
    QDoubleValidator* validator =
 
35
        new QDoubleValidator( min,  max, m_digits, this );
 
36
    setValidator( validator );
 
37
}
 
38
 
 
39
QString QFloatInput::mapValueToText( int value )
 
40
{
 
41
    QString format = QString("%.%1f").arg( m_digits );
 
42
    return QString().sprintf(format.latin1(),
 
43
                             (value/(float)pow(m_digits,10)) );
 
44
}
 
45
 
 
46
int QFloatInput::mapTextToValue( bool* ok )
 
47
{
 
48
    return int(cleanText().toFloat(ok)*pow(m_digits,10));
 
49
}
 
50
 
 
51