qucs_s/qucs/viewpainter.h
luz paz 10c1ee639c Fix various typos (including documenation)
Found via `codespell -q 3 -S *.ts,./qucs/ChangeLog -L ba,coul,inout,leaded,nd,numer,ro`
2022-07-05 07:08:28 -04:00

62 lines
2.4 KiB
C++

/***************************************************************************
viewpainter.h
---------------
begin : Tue Oct 05 2004
copyright : (C) 2004 by Michael Margraf
email : michael.margraf@alumni.tu-berlin.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. *
* *
***************************************************************************/
#ifndef VIEWPAINTER_H
#define VIEWPAINTER_H
class QPainter;
class QString;
class QColor;
#define TO_INT(f) (f > 0.0 ? int(f + 0.5) : int(f - 0.5))
/* This class is necessary because scaled fonts looks very ugly.
Avoiding this is unfortunately not easy.
This class scales the font point size instead of the font glyphs.
But this has the disadvantage, that the text size does not increase
equally with the rest of the drawing. We therefore must compute
some thing anew each time the paint function is called. The class
"ViewPainter" supports this. */
class ViewPainter {
public:
ViewPainter(QPainter *p=0);
~ViewPainter();
void init(QPainter*, float, int, int, int, int,
float FontScale_=0.0, float PrintScale_=1.0);
void map(int, int, int&, int&);
void drawPoint(int, int);
void drawLine (int, int, int, int);
void drawRect (int, int, int, int);
void drawRectD(int, int, int, int);
void drawRoundRect(int, int, int, int);
void drawEllipse(int, int, int, int);
void drawArc(int, int, int, int, int, int);
int drawText(const QString&, int, int, int *Height=0);
int drawTextMapped(const QString&, int, int, int *Height=0);
void fillRect(int, int, int, int, const QColor&);
void eraseRect(int, int, int, int);
void drawResizeRect(int, int);
QPainter *Painter;
float Scale, FontScale, PrintScale, DX , DY;
int LineSpacing; // updated by init(), just for info
};
#endif