summaryrefslogtreecommitdiffstats
path: root/kgamma/kcmkgamma/displaynumber.cpp
blob: dd678716d60e151944d63433fb5fc01b8956b8f6 (plain)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/***************************************************************************
                          displaynumber.cpp  -  description
                             -------------------
    begin                : Sun Feb 23 2003
    copyright            : (C) 2003 by Michael v.Ostheim
    email                : ostheimm@users.berlios.de
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   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.                                   *
 *                                                                         *
 ***************************************************************************/

#include <tqstring.h>
#include <tqfontmetrics.h>

#include "displaynumber.h"

DisplayNumber::DisplayNumber(TQWidget *parent, int digits, \
    int prec, const char *name) : TQLabel(parent,name) {

  setPrecision(prec);
  setWidth(digits);  

  setFrameStyle(TQFrame::Panel | TQFrame::Sunken);
  setBackgroundMode(TQt::PaletteBase);
  setAlignment(TQt::AlignCenter);
  setFocusPolicy(TQ_NoFocus);
}

DisplayNumber::~DisplayNumber(){
}

void DisplayNumber::setFont( const TQFont & f ) {
  TQLabel::setFont(f);
  setWidth(dg);
}

void DisplayNumber::setWidth(int digits) {
  TQFontMetrics fm(font());
  TQString s("0123456789.+-");
  int width = 0, charWidth=0;

  for (int i = 0; i < 11; i++, width = fm.width(s[i]))
    charWidth = (width > charWidth) ? width : charWidth;

  dg = digits;
  setMinimumWidth( dg * charWidth + charWidth/2 );
}

void DisplayNumber::setNum(double num) {
  TQString text;
  setText(text.setNum(num, 'f', precision));
}
    

#include "displaynumber.moc"