File: numberwidget.h

package info (click to toggle)
portabase 2.1%2Bgit20120910-1.1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 8,648 kB
  • ctags: 3,498
  • sloc: cpp: 32,214; sh: 2,868; ansic: 2,320; makefile: 481; python: 121; xml: 23; asm: 10
file content (45 lines) | stat: -rw-r--r-- 1,056 bytes parent folder | download | duplicates (2)
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
/*
 * numberwidget.h
 *
 * (c) 2003,2008-2009 by Jeremy Bowman <jmbowman@alum.mit.edu>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 */

/** @file numberwidget.h
 * Header file for NumberWidget
 */

#ifndef NUMBERWIDGET_H
#define NUMBERWIDGET_H

#include <QWidget>

class QLineEdit;

/**
 * An entry widget for numeric values.  On the right side is a button which
 * launches a calculator widget, the final value of which is used as the
 * text field's value.
 */
class NumberWidget: public QWidget
{
    Q_OBJECT
public:
    NumberWidget(int type, QWidget *parent = 0);

    QString getValue();
    void setValue(const QString &value);

private slots:
    void launchCalculator();

private:
    int dataType; /**< The type of number to edit, FLOAT or INT */
    QLineEdit *entryField; /**< The text field holding the current value */
};

#endif