qucs_s/qucs/paintings/id_text.h
Andrey Kalmykov 1a05e1310e Remove ViewPainter and related stuff
After switching everything to drawing using bare QPainter, a lot
of ViewPainter-based stuff became unused and basically obsolete,
including the ViewPainter itself.
2024-05-19 00:42:48 +03:00

64 lines
2.0 KiB
C++

/***************************************************************************
id_text.h
-----------
begin : Thu Oct 14 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 ID_TEXT_H
#define ID_TEXT_H
#include "painting.h"
#include <QString>
#include <QList>
struct SubParameter {
SubParameter(bool display_, const QString& Name_, const QString& Descr_)
: display(display_), Name(Name_), Description(Descr_) { Type = ""; };
SubParameter(bool display_, const QString& Name_, const QString& Descr_,
const QString& Type_)
: display(display_), Name(Name_), Description(Descr_), Type(Type_) {};
bool display;
QString Name, Description, Type;
};
class ID_Text : public Painting {
public:
ID_Text(int cx_=0, int cy_=0);
~ID_Text();
void paintScheme(Schematic*);
void getCenter(int&, int&);
void setCenter(int, int, bool relative=false);
bool load(const QString&);
QString save();
QString saveCpp();
QString saveJSON();
void paint(QPainter* painter) override;
bool getSelected(float, float, float);
void rotate(int, int);
void mirrorX();
void mirrorY();
bool Dialog(QWidget *parent = 0);
QString Prefix;
QList<SubParameter *> Parameter;
};
#endif