qucs_s/qucs/paintings/id_text.h

64 lines
2.0 KiB
C
Raw Permalink Normal View History

2004-10-15 07:07:57 +00:00
/***************************************************************************
2005-06-23 06:06:40 +00:00
id_text.h
-----------
2004-10-15 07:07:57 +00:00
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>
2006-10-16 06:17:29 +00:00
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_) {};
2006-10-16 06:17:29 +00:00
bool display;
QString Name, Description, Type;
2006-10-16 06:17:29 +00:00
};
2004-10-15 07:07:57 +00:00
class ID_Text : public Painting {
public:
ID_Text(int cx_=0, int cy_=0);
2006-10-16 06:17:29 +00:00
~ID_Text();
2004-10-15 07:07:57 +00:00
2013-05-27 22:53:11 +02:00
void paintScheme(Schematic*);
2004-10-15 07:07:57 +00:00
void getCenter(int&, int&);
void setCenter(int, int, bool relative=false);
bool load(const QString&);
QString save();
QString saveCpp();
2014-02-19 10:01:32 +01:00
QString saveJSON();
void paint(QPainter* painter) override;
2007-02-08 07:04:54 +00:00
bool getSelected(float, float, float);
2004-10-15 07:07:57 +00:00
void rotate(int, int);
2004-10-15 07:07:57 +00:00
void mirrorX();
void mirrorY();
bool Dialog(QWidget *parent = 0);
2004-10-15 07:07:57 +00:00
QString Prefix;
QList<SubParameter *> Parameter;
2004-10-15 07:07:57 +00:00
};
#endif