You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdegraphics/kgamma/kcmkgamma/displaynumber.cpp

62 lines
2.0 KiB

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