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

« back to all changes in this revision

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

  • 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
 
 * qfloatinput.h
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
 
#ifndef QFLOATINPUT_H
22
 
#define QFLOATINPUT_H
23
 
 
24
 
#include <qapplication.h>
25
 
#include <qspinbox.h>
26
 
#include <qvalidator.h>
27
 
 
28
 
class QFloatInput : public QSpinBox
29
 
{
30
 
public:
31
 
    QFloatInput( int min, int max, float step, int digits,
32
 
                  QWidget *parent, const char *name = 0 );
33
 
 
34
 
    virtual QString  mapValueToText( int value );
35
 
 
36
 
    virtual int mapTextToValue( bool* ok );
37
 
 
38
 
    int digits() const
39
 
    {
40
 
        return m_digits;
41
 
    }
42
 
 
43
 
private:
44
 
    int m_digits;
45
 
};
46
 
 
47
 
 
48
 
#endif